From 936583bb437cf63edcc246eee67d7b951d6f59b8 Mon Sep 17 00:00:00 2001 From: Nikita Manovich Date: Thu, 27 Jan 2022 17:38:09 +0300 Subject: [PATCH 1/6] Refactoring --- cvat/apps/iam/permissions.py | 669 +- cvat/apps/iam/rules/projects.csv | 4 + cvat/apps/iam/rules/projects.rego | 6 +- cvat/apps/iam/rules/projects_test.gen.rego | 11884 +++++----- cvat/apps/iam/rules/tasks.csv | 6 +- cvat/apps/iam/rules/tasks.rego | 10 +- cvat/apps/iam/rules/tasks_test.gen.rego | 19586 ++++++++-------- cvat/apps/iam/rules/utils.rego | 1 + .../docs/contributing/iam-new-permissions.md | 71 + 9 files changed, 17069 insertions(+), 15168 deletions(-) create mode 100644 site/content/en/docs/contributing/iam-new-permissions.md diff --git a/cvat/apps/iam/permissions.py b/cvat/apps/iam/permissions.py index b9881ccc76f9..fcd7d24e184f 100644 --- a/cvat/apps/iam/permissions.py +++ b/cvat/apps/iam/permissions.py @@ -2,6 +2,7 @@ # # SPDX-License-Identifier: MIT +from abc import ABCMeta, abstractmethod from collections import namedtuple import operator from rest_framework.exceptions import ValidationError @@ -14,37 +15,64 @@ from cvat.apps.organizations.models import Membership, Organization from cvat.apps.engine.models import Project, Task, Job, Issue -class OpenPolicyAgentPermission: - def __init__(self, request, view, obj): - self.request = request - self.view = view - self.obj = obj +class OpenPolicyAgentPermission(metaclass=ABCMeta): + @classmethod + def create_base_perm(cls, request, view, scope, obj=None, **kwargs): + return cls( + scope=scope, + obj=obj, + **cls.unpack_context(request), **kwargs) - privilege = self.request.iam_context['privilege'] - organization = self.request.iam_context['organization'] - membership = self.request.iam_context['membership'] - user = self.request.user + @staticmethod + def unpack_context(request): + privilege = request.iam_context['privilege'] + organization = request.iam_context['organization'] + membership = request.iam_context['membership'] + + return { + 'user_id': request.user.id, + 'group_name': getattr(privilege, 'name', None), + 'org_id': getattr(organization, 'id', None), + 'org_owner_id': getattr(organization.owner, 'id', None) + if organization else None, + 'org_role': getattr(membership, 'role', None), + } + + def __init__(self, **kwargs): + self.scope = kwargs['scope'] + self.user_id = kwargs['user_id'] + self.group_name = kwargs['group_name'] + self.org_id = kwargs['org_id'] + self.org_owner_id = kwargs['org_owner_id'] + self.org_role = kwargs['org_role'] + self.obj = kwargs.get('obj') self.payload = { 'input': { + 'scope': self.scope, + 'resource': self.get_resource(), 'auth': { 'user': { - 'id': user.id, - 'privilege': getattr(privilege, 'name', None), + 'id': self.user_id, + 'privilege': self.group_name }, 'organization': { - 'id': organization.id, + 'id': self.org_id, 'owner': { - 'id': getattr(organization.owner, 'id', None), + 'id': self.org_owner_id, }, 'user': { - 'role': getattr(membership, 'role', None) + 'role': self.org_role, }, - } if organization else None + } if self.org_id != None else None } } } + @abstractmethod + def get_resource(self): + return None + def __bool__(self): r = requests.post(self.url, json=self.payload) return r.json()['result'] @@ -85,32 +113,30 @@ class OrganizationPermission(OpenPolicyAgentPermission): def create(cls, request, view, obj): permissions = [] if view.basename == 'organization': - self = cls(request, view, obj) - permissions.append(self) + for scope in cls.get_scopes(request, view, obj): + self = cls.create_base_perm(request, view, scope, obj) + permissions.append(self) return permissions - def __init__(self, request, view, obj=None): - super().__init__(request, view, obj) + def __init__(self, **kwargs): + super().__init__(**kwargs) self.url = settings.IAM_OPA_DATA_URL + '/organizations/allow' - self.payload['input']['scope'] = self.scope - self.payload['input']['resource'] = self.resource - @property - def scope(self): - return { + @staticmethod + def get_scopes(request, view, obj): + return [{ 'list': 'list', 'create': 'create', 'destroy': 'delete', 'partial_update': 'update', 'retrieve': 'view' - }.get(self.view.action, None) + }.get(view.action, None)] - @property - def resource(self): - user = self.request.user + def get_resource(self): if self.obj: - membership = Membership.objects.filter(organization=self.obj, user=user).first() + membership = Membership.objects.filter( + organization=self.obj, user=self.user_id).first() return { 'id': self.obj.id, 'owner': { @@ -120,15 +146,15 @@ def resource(self): 'role': membership.role if membership else None } } - elif self.view.action == 'create': + elif self.scope.startswith('create'): return { 'id': None, 'owner': { - 'id': user.id + 'id': self.user_id }, 'user': { 'num_resources': Organization.objects.filter( - owner_id=user.id).count(), + owner_id=self.user_id).count(), 'role': 'owner' } } @@ -140,30 +166,30 @@ class InvitationPermission(OpenPolicyAgentPermission): def create(cls, request, view, obj): permissions = [] if view.basename == 'invitation': - self = cls(request, view, obj) - permissions.append(self) + for scope in cls.get_scopes(request, view, obj): + self = cls.create_base_perm(request, view, scope, obj, + role=request.data.get('role')) + permissions.append(self) return permissions - def __init__(self, request, view, obj=None): - super().__init__(request, view, obj) + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.role = kwargs.get('role') self.url = settings.IAM_OPA_DATA_URL + '/invitations/allow' - self.payload['input']['scope'] = self.scope - self.payload['input']['resource'] = self.resource - @property - def scope(self): - return { + @staticmethod + def get_scopes(request, view, obj): + return [{ 'list': 'list', 'create': 'create', 'destroy': 'delete', 'partial_update': 'accept' if 'accepted' in - self.request.query_params else 'resend', + request.query_params else 'resend', 'retrieve': 'view' - }.get(self.view.action) + }.get(view.action)] - @property - def resource(self): + def get_resource(self): data = None if self.obj: data = { @@ -174,17 +200,16 @@ def resource(self): 'id': self.obj.membership.organization.id } } - elif self.view.action == 'create': - organization = self.request.iam_context['organization'] + elif self.scope.startswith('create'): data = { - 'owner': { 'id': self.request.user.id }, + 'owner': { 'id': self.user_id }, 'invitee': { 'id': None # unknown yet }, - 'role': self.request.data.get('role'), + 'role': self.role, 'organization': { - 'id': organization.id - } if organization else None + 'id': self.org_id + } if self.org_id != None else None } return data @@ -194,28 +219,26 @@ class MembershipPermission(OpenPolicyAgentPermission): def create(cls, request, view, obj): permissions = [] if view.basename == 'membership': - self = cls(request, view, obj) - permissions.append(self) + for scope in cls.get_scopes(request, view, obj): + self = cls.create_base_perm(request, view, scope, obj) + permissions.append(self) return permissions - def __init__(self, request, view, obj=None): - super().__init__(request, view, obj) + def __init__(self, **kwargs): + super().__init__(**kwargs) self.url = settings.IAM_OPA_DATA_URL + '/memberships/allow' - self.payload['input']['scope'] = self.scope - self.payload['input']['resource'] = self.resource - @property - def scope(self): - return { + @staticmethod + def get_scopes(request, view, obj): + return [{ 'list': 'list', 'partial_update': 'change:role', 'retrieve': 'view', 'destroy': 'delete' - }.get(self.view.action) + }.get(view.action)] - @property - def resource(self): + def get_resource(self): if self.obj: return { 'role': self.obj.role, @@ -231,70 +254,70 @@ class ServerPermission(OpenPolicyAgentPermission): def create(cls, request, view, obj): permissions = [] if view.basename == 'server': - self = cls(request, view, obj) - permissions.append(self) + for scope in cls.get_scopes(request, view, obj): + self = cls.create_base_perm(request, view, scope, obj) + permissions.append(self) return permissions - def __init__(self, request, view, obj): - super().__init__(request, view, obj) + def __init__(self, **kwargs): + super().__init__(**kwargs) self.url = settings.IAM_OPA_DATA_URL + '/server/allow' - self.payload['input']['scope'] = self.scope - @property - def scope(self): - return { + @staticmethod + def get_scopes(request, view, obj): + return [{ 'annotation_formats': 'view', 'about': 'view', 'plugins': 'view', 'exception': 'send:exception', 'logs': 'send:logs', 'share': 'list:content' - }.get(self.view.action, None) + }.get(view.action, None)] + + def get_resource(self): + return None class UserPermission(OpenPolicyAgentPermission): @classmethod def create(cls, request, view, obj): permissions = [] if view.basename == 'user': - self = cls(request, view, obj) - permissions.append(self) + for scope in cls.get_scopes(request, view, obj): + self = cls.create_base_perm(request, view, scope, obj) + permissions.append(self) return permissions - @classmethod - def create_view(cls, user_id, request): - obj = namedtuple('User', ['id'])(id=int(user_id)) - view = namedtuple('View', ['action'])(action='retrieve') - return cls(request, view, obj) - - def __init__(self, request, view, obj=None): - super().__init__(request, view, obj) + def __init__(self, **kwargs): + super().__init__(**kwargs) self.url = settings.IAM_OPA_DATA_URL + '/users/allow' - self.payload['input']['scope'] = self.scope - self.payload['input']['resource'] = self.resource - @property - def scope(self): - return { + @staticmethod + def get_scopes(request, view, obj): + return [{ 'list': 'list', 'self': 'view', 'retrieve': 'view', 'partial_update': 'update', 'destroy': 'delete' - }.get(self.view.action) + }.get(view.action)] - @property - def resource(self): + @classmethod + def create_scope_view(cls, request, user_id): + obj = namedtuple('User', ['id'])(id=int(user_id)) + return cls(**cls.unpack_context(request), scope='view', obj=obj) + + def get_resource(self): data = None organization = self.payload['input']['auth']['organization'] if self.obj: data = { 'id': self.obj.id } - elif self.view.action == 'self': + elif self.scope == 'view': # self data = { - 'id': self.request.user.id + 'id': self.user_id } if data: @@ -312,24 +335,24 @@ class LambdaPermission(OpenPolicyAgentPermission): def create(cls, request, view, obj): permissions = [] if view.basename == 'function' or view.basename == 'request': - self = cls(request, view, obj) - permissions.append(self) + for scope in cls.get_scopes(request, view, obj): + self = cls.create_base_perm(request, view, scope, obj) + permissions.append(self) task_id = request.data.get('task') if task_id: - perm = TaskPermission.create_view_data(request, task_id) + perm = TaskPermission.create_scope_view_data(request, task_id) permissions.append(perm) return permissions - def __init__(self, request, view, obj): - super().__init__(request, view, obj) + def __init__(self, **kwargs): + super().__init__(**kwargs) self.url = settings.IAM_OPA_DATA_URL + '/lambda/allow' - self.payload['input']['scope'] = self.scope - @property - def scope(self): - return { + @staticmethod + def get_scopes(request, view, obj): + return [{ ('function', 'list'): 'list', ('function', 'retrieve'): 'view', ('function', 'call'): 'call:online', @@ -337,27 +360,29 @@ def scope(self): ('request', 'list'): 'call:offline', ('request', 'retrieve'): 'call:offline', ('request', 'destroy'): 'call:offline', - }.get((self.view.basename, self.view.action), None) + }.get((view.name, view.action), None)] + + def get_resource(self): + return None class CloudStoragePermission(OpenPolicyAgentPermission): @classmethod def create(cls, request, view, obj): permissions = [] if view.basename == 'cloudstorage': - self = cls(request, view, obj) - permissions.append(self) + for scope in cls.get_scopes(request, view, obj): + self = cls.create_base_perm(request, view, scope, obj) + permissions.append(self) return permissions - def __init__(self, request, view, obj=None): - super().__init__(request, view, obj) + def __init__(self, **kwargs): + super().__init__(**kwargs) self.url = settings.IAM_OPA_DATA_URL + '/cloudstorages/allow' - self.payload['input']['scope'] = self.scope - self.payload['input']['resource'] = self.resource - @property - def scope(self): - return { + @staticmethod + def get_scopes(request, view, obj): + return [{ 'list': 'list', 'create': 'create', 'retrieve': 'view', @@ -366,22 +391,19 @@ def scope(self): 'content': 'list:content', 'preview': 'view', 'status': 'view' - }.get(self.view.action) + }.get(view.action)] - @property - def resource(self): + def get_resource(self): data = None - if self.view.action == 'create': - user_id = self.request.user.id - organization = self.request.iam_context['organization'] + if self.scope.startswith('create'): data = { - 'owner': { 'id': user_id }, + 'owner': { 'id': self.user_id }, 'organization': { - 'id': organization.id - } if organization else None, + 'id': self.org_id + } if self.org_id != None else None, 'user': { 'num_resources': Organization.objects.filter( - owner=user_id).count() + owner=self.user_id).count() } } elif self.obj: @@ -400,41 +422,39 @@ class ProjectPermission(OpenPolicyAgentPermission): def create(cls, request, view, obj): permissions = [] if view.basename == 'project': + assignee_id = request.data.get('assignee_id') or request.data.get('assignee') for scope in cls.get_scopes(request, view, obj): - self = cls(scope, request, view, obj) + self = cls.create_base_perm(request, view, scope, obj, + assignee_id=assignee_id) permissions.append(self) if view.action == 'tasks': - perm = TaskPermission.create_list(request) + perm = TaskPermission.create_scope_list(request) permissions.append(perm) owner = request.data.get('owner_id') or request.data.get('owner') if owner: - perm = UserPermission.create_view(owner, request) + perm = UserPermission.create_scope_view(request, owner) permissions.append(perm) - assignee = request.data.get('assignee_id') or request.data.get('assignee') - if assignee: - perm = UserPermission.create_view(assignee, request) + if assignee_id: + perm = UserPermission.create_scope_view(request, assignee_id) permissions.append(perm) - return permissions - - @classmethod - def create_view(cls, request, project_id): - try: - obj = Project.objects.get(id=project_id) - except Project.DoesNotExist as ex: - raise ValidationError(str(ex)) - view = namedtuple('View', ['action'])(action='retrieve') - return cls('view', request, view, obj) + if 'organization' in request.data: + org_id = request.data.get('organization') + perm = ProjectPermission.create_scope_create(request, org_id) + # We don't create a project, just move it. Thus need to decrease + # the number of resources. + perm.payload['input']['resource']['user']['num_resources'] -= 1 + permissions.append(perm) + return permissions - def __init__(self, scope, request, view, obj=None): - super().__init__(request, view, obj) + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.assignee_id = kwargs.get('assignee_id') self.url = settings.IAM_OPA_DATA_URL + '/projects/allow' - self.payload['input']['scope'] = scope - self.payload['input']['resource'] = self.resource @staticmethod def get_scopes(request, view, obj): @@ -466,13 +486,48 @@ def get_scopes(request, view, obj): if field in request.data: scopes.append(scope + ':desc') break + if 'organization' in request.data: + scopes.append(scope + ':organization') else: scopes.append(scope) return scopes - @property - def resource(self): + @classmethod + def create_scope_view(cls, request, project_id): + try: + obj = Project.objects.get(id=project_id) + except Project.DoesNotExist as ex: + raise ValidationError(str(ex)) + return cls(**cls.unpack_context(request), obj=obj, scope='view') + + @classmethod + def create_scope_create(cls, request, org_id): + organization = None + membership = None + privilege = request.iam_context['privilege'] + if org_id: + try: + organization = Organization.objects.get(id=org_id) + except Organization.DoesNotExist as ex: + raise ValidationError(str(ex)) + + try: + membership = Membership.objects.filter( + organization=organization, user=request.user).first() + except Membership.DoesNotExist: + membership = None + + return cls( + user_id=request.user.id, + group_name=getattr(privilege, 'name', None), + org_id=getattr(organization, 'id', None), + org_owner_id=getattr(organization.owner, 'id', None) + if organization else None, + org_role=getattr(membership, 'role', None), + scope='create') + + def get_resource(self): data = None if self.obj: data = { @@ -483,20 +538,19 @@ def resource(self): "id": getattr(self.obj.organization, 'id', None) } } - elif self.view.action in ['create', 'import_backup']: - organization = self.request.iam_context['organization'] + elif self.scope in ['create', 'import:backup']: data = { "id": None, - "owner": { "id": self.request.user.id }, + "owner": { "id": self.user_id }, "assignee": { - "id": self.request.data.get('assignee_id') + "id": self.assignee_id }, 'organization': { - "id": organization.id if organization else None + "id": self.org_id }, "user": { "num_resources": Project.objects.filter( - owner_id=self.request.user.id).count() + owner_id=self.user_id).count() } } @@ -508,38 +562,115 @@ def create(cls, request, view, obj): permissions = [] if view.basename == 'task': for scope in cls.get_scopes(request, view, obj): - self = cls(scope, request, view, obj) + self = cls.create_base_perm(request, view, scope, obj) permissions.append(self) if view.action == 'jobs': - perm = JobPermission.create_list(request) + perm = JobPermission.create_scope_list(request) permissions.append(perm) owner = request.data.get('owner_id') or request.data.get('owner') if owner: - perm = UserPermission.create_view(owner, request) + perm = UserPermission.create_scope_view(request, owner) permissions.append(perm) assignee = request.data.get('assignee_id') or request.data.get('assignee') if assignee: - perm = UserPermission.create_view(assignee, request) + perm = UserPermission.create_scope_view(request, assignee) permissions.append(perm) project_id = request.data.get('project_id') or request.data.get('project') if project_id: - perm = ProjectPermission.create_view(request, project_id) + perm = ProjectPermission.create_scope_view(request, project_id) + permissions.append(perm) + + if 'organization' in request.data: + org_id = request.data.get('organization') + perm = TaskPermission.create_scope_create(request, org_id) + # We don't create a project, just move it. Thus need to decrease + # the number of resources. + perm.payload['input']['resource']['user']['num_resources'] -= 1 permissions.append(perm) return permissions + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.url = settings.IAM_OPA_DATA_URL + '/tasks/allow' + + @classmethod + def get_scopes(cls, request, view, obj): + scope = { + ('list', 'GET'): 'list', + ('create', 'POST'): 'create', + ('retrieve', 'GET'): 'view', + ('status', 'GET'): 'view', + ('partial_update', 'PATCH'): 'update', + ('update', 'PUT'): 'update', + ('destroy', 'DELETE'): 'delete', + ('annotations', 'GET'): 'view:annotations', + ('annotations', 'PATCH'): 'update:annotations', + ('annotations', 'DELETE'): 'delete:annotations', + ('annotations', 'PUT'): 'update:annotations', + ('dataset_export', 'GET'): 'export:dataset', + ('data', 'GET'): 'view:data', + ('data_info', 'GET'): 'view:data', + ('data', 'POST'): 'upload:data', + ('append_tus_chunk', 'PATCH'): 'upload:data', + ('append_tus_chunk', 'HEAD'): 'upload:data', + ('jobs', 'GET'): 'view', + ('import_backup', 'POST'): 'import:backup', + ('export_backup', 'GET'): 'export:backup', + }.get((view.action, request.method)) + + scopes = [] + if scope == 'create': + project_id = request.data.get('project_id') or request.data.get('project') + if project_id: + scope = scope + '@project' + + scopes.append(scope) + elif scope == 'update': + if any(k in request.data for k in ('owner_id', 'owner')): + owner_id = request.data.get('owner_id') or request.data.get('owner') + if owner_id != getattr(obj.owner, 'id', None): + scopes.append(scope + ':owner') + if any(k in request.data for k in ('assignee_id', 'assignee')): + assignee_id = request.data.get('assignee_id') or request.data.get('assignee') + if assignee_id != getattr(obj.assignee, 'id', None): + scopes.append(scope + ':assignee') + if any(k in request.data for k in ('project_id', 'project')): + project_id = request.data.get('project_id') or request.data.get('project') + if project_id != getattr(obj.project, 'id', None): + scopes.append(scope + ':project') + if any(k in request.data for k in ('name', 'labels', 'bug_tracker', 'subset')): + scopes.append(scope + ':desc') + if request.data.get('organization'): + scopes.append(scope + ':organization') + + elif scope == 'view:annotations': + if 'format' in request.query_params: + scope = 'export:annotations' + + scopes.append(scope) + elif scope == 'update:annotations': + if 'format' in request.query_params and request.method == 'PUT': + scope = 'import:annotations' + + scopes.append(scope) + else: + scopes.append(scope) + + return scopes + @classmethod - def create_list(cls, request): + def create_scope_list(cls, request): view = namedtuple('View', ['action'])(action='list') return cls('list', request, view) @classmethod - def create_view_data(cls, request, task_id): + def create_scope_view_data(cls, request, task_id): try: obj = Task.objects.get(id=task_id) except Task.DoesNotExist as ex: @@ -547,14 +678,7 @@ def create_view_data(cls, request, task_id): view = namedtuple('View', ['action'])(action='data') return cls('view:data', request, view, obj) - def __init__(self, scope, request, view, obj=None): - super().__init__(request, view, obj) - self.url = settings.IAM_OPA_DATA_URL + '/tasks/allow' - self.payload['input']['scope'] = scope - self.payload['input']['resource'] = self.resource - - @property - def resource(self): + def get_resource(self): # FIXME: self.requesT data = None if self.obj: data = { @@ -607,39 +731,48 @@ def resource(self): return data +class JobPermission(OpenPolicyAgentPermission): + @classmethod + def create(cls, request, view, obj): + permissions = [] + if view.basename == 'job': + for scope in cls.get_scopes(request, view, obj): + self = cls.create_base_perm(request, view, scope, obj) + permissions.append(self) + + if view.action == 'issues': + perm = IssuePermission.create_scope_list(request) + permissions.append(perm) + + assignee = request.data.get('assignee') + if assignee: + perm = UserPermission.create_scope_view(request, assignee) + permissions.append(perm) + + return permissions + + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.url = settings.IAM_OPA_DATA_URL + '/jobs/allow' + @classmethod def get_scopes(cls, request, view, obj): scope = { - ('list', 'GET'): 'list', - ('create', 'POST'): 'create', + ('list', 'GET'): 'list', # TODO: need to add the method ('retrieve', 'GET'): 'view', - ('status', 'GET'): 'view', ('partial_update', 'PATCH'): 'update', - ('update', 'PUT'): 'update', + ('update', 'PUT'): 'update', # TODO: do we need the method? ('destroy', 'DELETE'): 'delete', ('annotations', 'GET'): 'view:annotations', ('annotations', 'PATCH'): 'update:annotations', ('annotations', 'DELETE'): 'delete:annotations', ('annotations', 'PUT'): 'update:annotations', - ('dataset_export', 'GET'): 'export:dataset', ('data', 'GET'): 'view:data', - ('data_info', 'GET'): 'view:data', - ('data', 'POST'): 'upload:data', - ('append_tus_chunk', 'PATCH'): 'upload:data', - ('append_tus_chunk', 'HEAD'): 'upload:data', - ('jobs', 'GET'): 'view', - ('import_backup', 'POST'): 'import:backup', - ('export_backup', 'GET'): 'export:backup', + ('issues', 'GET'): 'view', }.get((view.action, request.method)) scopes = [] - if scope == 'create': - project_id = request.data.get('project_id') or request.data.get('project') - if project_id: - scope = scope + '@project' - - scopes.append(scope) - elif scope == 'update': + if scope == 'update': if any(k in request.data for k in ('owner_id', 'owner')): owner_id = request.data.get('owner_id') or request.data.get('owner') if owner_id != getattr(obj.owner, 'id', None): @@ -670,41 +803,12 @@ def get_scopes(cls, request, view, obj): return scopes -class JobPermission(OpenPolicyAgentPermission): @classmethod - def create(cls, request, view, obj): - permissions = [] - if view.basename == 'job': - for scope in cls.get_scopes(request, view, obj): - self = cls(scope, request, view, obj) - permissions.append(self) - - if view.action == 'issues': - perm = IssuePermission.create_list(request) - permissions.append(perm) - - assignee = request.data.get('assignee') - if assignee: - perm = UserPermission.create_view(assignee, request) - permissions.append(perm) - - return permissions - - @classmethod - def create_list(cls, request): + def create_scope_list(cls, request): view = namedtuple('View', ['action'])(action='list') return cls('list', request, view) - - def __init__(self, scope, request, view, obj=None): - super().__init__(request, view, obj) - self.url = settings.IAM_OPA_DATA_URL + '/jobs/allow' - self.payload['input']['scope'] = scope - self.payload['input']['resource'] = self.resource - - - @property - def resource(self): + def get_resource(self): data = None if self.obj: if self.obj.segment.task.project: @@ -730,88 +834,38 @@ def resource(self): return data - @classmethod - def get_scopes(cls, request, view, obj): - scope = { - ('list', 'GET'): 'list', # TODO: need to add the method - ('retrieve', 'GET'): 'view', - ('partial_update', 'PATCH'): 'update', - ('update', 'PUT'): 'update', # TODO: do we need the method? - ('destroy', 'DELETE'): 'delete', - ('annotations', 'GET'): 'view:annotations', - ('annotations', 'PATCH'): 'update:annotations', - ('annotations', 'DELETE'): 'delete:annotations', - ('annotations', 'PUT'): 'update:annotations', - ('data', 'GET'): 'view:data', - ('issues', 'GET'): 'view', - }.get((view.action, request.method)) - - scopes = [] - if scope == 'update': - if any(k in request.data for k in ('owner_id', 'owner')): - owner_id = request.data.get('owner_id') or request.data.get('owner') - if owner_id != getattr(obj.owner, 'id', None): - scopes.append(scope + ':owner') - if any(k in request.data for k in ('assignee_id', 'assignee')): - assignee_id = request.data.get('assignee_id') or request.data.get('assignee') - if assignee_id != getattr(obj.assignee, 'id', None): - scopes.append(scope + ':assignee') - if any(k in request.data for k in ('project_id', 'project')): - project_id = request.data.get('project_id') or request.data.get('project') - if project_id != getattr(obj.project, 'id', None): - scopes.append(scope + ':project') - - if any(k in request.data for k in ('name', 'labels', 'bug_tracker', 'subset')): - scopes.append(scope + ':desc') - elif scope == 'view:annotations': - if 'format' in request.query_params: - scope = 'export:annotations' - - scopes.append(scope) - elif scope == 'update:annotations': - if 'format' in request.query_params and request.method == 'PUT': - scope = 'import:annotations' - - scopes.append(scope) - else: - scopes.append(scope) - - return scopes - - class CommentPermission(OpenPolicyAgentPermission): @classmethod def create(cls, request, view, obj): permissions = [] if view.basename == 'comment': - self = cls(request, view, obj) - permissions.append(self) + for scope in cls.get_scopes(request, view, obj): + self = cls.create_base_perm(request, view, scope, obj, + issue_id=request.data.get('issue')) + permissions.append(self) return permissions - @classmethod - def create_list(cls, request): - view = namedtuple('View', ['action'])(action='list') - return cls(request, view) - - def __init__(self, request, view, obj=None): - super().__init__(request, view, obj) + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.issue_id = kwargs.get('issue_id') self.url = settings.IAM_OPA_DATA_URL + '/comments/allow' - self.payload['input']['scope'] = self.scope - self.payload['input']['resource'] = self.resource - @property - def scope(self): - return { + @classmethod + def create_scope_list(cls, request): + return cls(**cls.unpack_context(request), scope='list') + + @staticmethod + def get_scopes(request, view, obj): + return [{ 'list': 'list', 'create': 'create@issue', 'destroy': 'delete', 'partial_update': 'update', 'retrieve': 'view' - }.get(self.view.action, None) + }.get(view.action, None)] - @property - def resource(self): + def get_resource(self): data = None def get_common_data(db_issue): if db_issue.job.segment.task.project: @@ -849,15 +903,14 @@ def get_common_data(db_issue): "id": self.obj.id, "owner": { "id": getattr(self.obj.owner, 'id', None) } }) - elif self.view.action == 'create': - issue_id = self.request.data.get('issue') + elif self.scope.startswith('create'): try: - db_issue = Issue.objects.get(id=issue_id) + db_issue = Issue.objects.get(id=self.issue_id) except Issue.DoesNotExist as ex: raise ValidationError(str(ex)) data = get_common_data(db_issue) data.update({ - "owner": { "id": self.request.user.id } + "owner": { "id": self.user_id } }) return data @@ -867,39 +920,40 @@ class IssuePermission(OpenPolicyAgentPermission): def create(cls, request, view, obj): permissions = [] if view.basename == 'issue': - self = cls(request, view, obj) - permissions.append(self) + assignee_id = request.data.get('assignee') + for scope in cls.get_scopes(request, view, obj): + self = cls.create_base_perm(request, view, scope, obj, + job_id=request.data.get('job'), + assignee_id=assignee_id) + permissions.append(self) - assignee = request.data.get('assignee') - if assignee: - perm = UserPermission.create_view(assignee, request) + if assignee_id: + perm = UserPermission.create_scope_view(request, assignee_id) permissions.append(perm) return permissions @classmethod - def create_list(cls, request): - view = namedtuple('View', ['action'])(action='list') - return cls(request, view) + def create_scope_list(cls, request): + return cls(**cls.unpack_context(request), scope='list') - def __init__(self, request, view, obj=None): - super().__init__(request, view, obj) + def __init__(self, **kwargs): + super().__init__(**kwargs) + self.job_id = kwargs.get('job_id') + self.assignee_id = kwargs.get('assignee_id') self.url = settings.IAM_OPA_DATA_URL + '/issues/allow' - self.payload['input']['scope'] = self.scope - self.payload['input']['resource'] = self.resource - @property - def scope(self): - return { + @staticmethod + def get_scopes(request, view, obj): + return [{ 'list': 'list', 'create': 'create@job', 'destroy': 'delete', 'partial_update': 'update', 'retrieve': 'view' - }.get(self.view.action, None) + }.get(view.action, None)] - @property - def resource(self): + def get_resource(self): data = None def get_common_data(db_job): if db_job.segment.task.project: @@ -926,7 +980,6 @@ def get_common_data(db_job): return data - if self.obj: db_job = self.obj.job data = get_common_data(db_job) @@ -935,16 +988,16 @@ def get_common_data(db_job): "owner": { "id": getattr(self.obj.owner, 'id', None) }, "assignee": { "id": getattr(self.obj.assignee, 'id', None) } }) - elif self.view.action == 'create': - job_id = self.request.data.get('job') + elif self.scope.startswith('create'): + job_id = self.job_id try: db_job = Job.objects.get(id=job_id) except Job.DoesNotExist as ex: raise ValidationError(str(ex)) data = get_common_data(db_job) data.update({ - "owner": { "id": self.request.user.id }, - "assignee": { "id": self.request.data.get('assignee') }, + "owner": { "id": self.user_id }, + "assignee": { "id": self.assignee_id }, }) return data @@ -962,7 +1015,7 @@ def has_permission(self, request, view): if not view.detail: return self.check_permission(request, view, None) else: - return True # has_object_permision will be called later + return True # has_object_permission will be called later def has_object_permission(self, request, view, obj): return self.check_permission(request, view, obj) diff --git a/cvat/apps/iam/rules/projects.csv b/cvat/apps/iam/rules/projects.csv index bc03efacd6fc..c68f8439b0bc 100644 --- a/cvat/apps/iam/rules/projects.csv +++ b/cvat/apps/iam/rules/projects.csv @@ -44,3 +44,7 @@ export:backup,Project,Sandbox,None,,GET,/projects/{id}/backup,Admin,N/A export:backup,Project,Sandbox,"Owner, Assignee",,GET,/projects/{id}/backup,None,N/A export:backup,Project,Organization,"Owner, Assignee",,GET,/projects/{id}/backup,None,Worker export:backup,Project,Organization,None,,GET,/projects/{id}/backup,User,Maintainer +update:organization,"Project, Organization",Sandbox,"None, Assignee",,PATCH,/projects/{id},Admin,N/A +update:organization,"Project, Organization",Sandbox,Owner,,PATCH,/projects/{id},Worker,N/A +update:organization,"Project, Organization",Organization,"None, Assignee",,PATCH,/projects/{id},User,Maintainer +update:organization,"Project, Organization",Organization,Owner,,PATCH,/projects/{id},Worker,Worker \ No newline at end of file diff --git a/cvat/apps/iam/rules/projects.rego b/cvat/apps/iam/rules/projects.rego index 4f4458d5b2df..d0af44df34df 100644 --- a/cvat/apps/iam/rules/projects.rego +++ b/cvat/apps/iam/rules/projects.rego @@ -129,14 +129,14 @@ allow { allow { - input.scope == utils.DELETE + { utils.DELETE, utils.UPDATE_ORG }[input.scope] utils.is_sandbox utils.has_perm(utils.WORKER) utils.is_resource_owner } allow { - input.scope == utils.DELETE + { utils.DELETE, utils.UPDATE_ORG }[input.scope] input.auth.organization.id == input.resource.organization.id utils.has_perm(utils.WORKER) organizations.is_member @@ -144,7 +144,7 @@ allow { } allow { - input.scope == utils.DELETE + { utils.DELETE, utils.UPDATE_ORG }[input.scope] input.auth.organization.id == input.resource.organization.id utils.has_perm(utils.USER) organizations.is_staff diff --git a/cvat/apps/iam/rules/projects_test.gen.rego b/cvat/apps/iam/rules/projects_test.gen.rego index 1ed6da0de50a..6ba704569589 100644 --- a/cvat/apps/iam/rules/projects_test.gen.rego +++ b/cvat/apps/iam/rules/projects_test.gen.rego @@ -1,11223 +1,11883 @@ package projects -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 15, "privilege": "admin"}, "organization": null}, "resource": {"id": 355, "owner": {"id": 15}, "assignee": {"id": 593}, "organization": {"id": 639}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": null}, "resource": {"id": 366, "owner": {"id": 27}, "assignee": {"id": 522}, "organization": {"id": 642}}} +} + +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": null}, "resource": {"id": 370, "owner": {"id": 61}, "assignee": {"id": 589}, "organization": {"id": 647}}} +} + +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": null}, "resource": {"id": 332, "owner": {"id": 84}, "assignee": {"id": 505}, "organization": {"id": 641}}} +} + +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": null}, "resource": {"id": 337, "owner": {"id": 24}, "assignee": {"id": 505}, "organization": {"id": 682}}} +} + +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": null}, "resource": {"id": 300, "owner": {"id": 84}, "assignee": {"id": 512}, "organization": {"id": 664}}} +} + +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": null}, "resource": {"id": 365, "owner": {"id": 478}, "assignee": {"id": 33}, "organization": {"id": 639}}} +} + +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": null}, "resource": {"id": 343, "owner": {"id": 493}, "assignee": {"id": 72}, "organization": {"id": 648}}} +} + +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": null}, "resource": {"id": 370, "owner": {"id": 442}, "assignee": {"id": 33}, "organization": {"id": 624}}} +} + +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": null}, "resource": {"id": 319, "owner": {"id": 440}, "assignee": {"id": 31}, "organization": {"id": 622}}} +} + +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": null}, "resource": {"id": 327, "owner": {"id": 442}, "assignee": {"id": 88}, "organization": {"id": 666}}} +} + +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": null}, "resource": {"id": 365, "owner": {"id": 465}, "assignee": {"id": 532}, "organization": {"id": 613}}} +} + +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": null}, "resource": {"id": 305, "owner": {"id": 476}, "assignee": {"id": 574}, "organization": {"id": 638}}} +} + +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 428}, "assignee": {"id": 531}, "organization": {"id": 603}}} +} + +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": null}, "resource": {"id": 385, "owner": {"id": 425}, "assignee": {"id": 569}, "organization": {"id": 613}}} +} + +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": null}, "resource": {"id": 305, "owner": {"id": 445}, "assignee": {"id": 554}, "organization": {"id": 624}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 160, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 66}, "assignee": {"id": 565}, "organization": {"id": 641}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"id": 393, "owner": {"id": 57}, "assignee": {"id": 516}, "organization": {"id": 155}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 311, "owner": {"id": 2}, "assignee": {"id": 581}, "organization": {"id": 625}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"id": 387, "owner": {"id": 56}, "assignee": {"id": 583}, "organization": {"id": 147}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 86}, "assignee": {"id": 587}, "organization": {"id": 640}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 337, "owner": {"id": 0}, "assignee": {"id": 536}, "organization": {"id": 173}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"id": 325, "owner": {"id": 47}, "assignee": {"id": 550}, "organization": {"id": 677}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 58}, "assignee": {"id": 532}, "organization": {"id": 135}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 224}, "user": {"role": null}}}, "resource": {"id": 356, "owner": {"id": 63}, "assignee": {"id": 592}, "organization": {"id": 600}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 14}, "assignee": {"id": 512}, "organization": {"id": 131}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 74}, "assignee": {"id": 552}, "organization": {"id": 683}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 2}, "assignee": {"id": 517}, "organization": {"id": 128}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 368, "owner": {"id": 55}, "assignee": {"id": 514}, "organization": {"id": 676}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 334, "owner": {"id": 24}, "assignee": {"id": 559}, "organization": {"id": 112}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 38}, "assignee": {"id": 532}, "organization": {"id": 622}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 390, "owner": {"id": 31}, "assignee": {"id": 501}, "organization": {"id": 134}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 5}, "assignee": {"id": 599}, "organization": {"id": 635}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 288}, "user": {"role": "worker"}}}, "resource": {"id": 333, "owner": {"id": 20}, "assignee": {"id": 594}, "organization": {"id": 131}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 72}, "assignee": {"id": 534}, "organization": {"id": 697}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 277}, "user": {"role": null}}}, "resource": {"id": 333, "owner": {"id": 13}, "assignee": {"id": 598}, "organization": {"id": 190}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 138, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 71}, "assignee": {"id": 562}, "organization": {"id": 689}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 84}, "assignee": {"id": 514}, "organization": {"id": 136}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 349, "owner": {"id": 55}, "assignee": {"id": 523}, "organization": {"id": 630}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 87}, "assignee": {"id": 503}, "organization": {"id": 118}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 154, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 301, "owner": {"id": 37}, "assignee": {"id": 504}, "organization": {"id": 626}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 128, "owner": {"id": 216}, "user": {"role": "supervisor"}}}, "resource": {"id": 353, "owner": {"id": 79}, "assignee": {"id": 506}, "organization": {"id": 128}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"id": 358, "owner": {"id": 99}, "assignee": {"id": 588}, "organization": {"id": 607}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 13}, "assignee": {"id": 558}, "organization": {"id": 175}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"id": 367, "owner": {"id": 46}, "assignee": {"id": 526}, "organization": {"id": 692}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 263}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 16}, "assignee": {"id": 561}, "organization": {"id": 169}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 73}, "assignee": {"id": 514}, "organization": {"id": 641}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 85}, "assignee": {"id": 595}, "organization": {"id": 167}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 4}, "assignee": {"id": 511}, "organization": {"id": 688}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 14}, "assignee": {"id": 576}, "organization": {"id": 130}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 67}, "assignee": {"id": 555}, "organization": {"id": 663}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 3, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 399, "owner": {"id": 3}, "assignee": {"id": 588}, "organization": {"id": 111}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"id": 324, "owner": {"id": 79}, "assignee": {"id": 563}, "organization": {"id": 680}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 319, "owner": {"id": 6}, "assignee": {"id": 596}, "organization": {"id": 177}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 42}, "assignee": {"id": 524}, "organization": {"id": 683}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 383, "owner": {"id": 26}, "assignee": {"id": 592}, "organization": {"id": 165}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"id": 319, "owner": {"id": 46}, "assignee": {"id": 502}, "organization": {"id": 657}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"id": 345, "owner": {"id": 31}, "assignee": {"id": 561}, "organization": {"id": 103}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 52}, "assignee": {"id": 586}, "organization": {"id": 685}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 176, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 97}, "assignee": {"id": 577}, "organization": {"id": 176}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 156, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 12}, "assignee": {"id": 588}, "organization": {"id": 637}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 49}, "assignee": {"id": 590}, "organization": {"id": 115}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"id": 326, "owner": {"id": 33}, "assignee": {"id": 570}, "organization": {"id": 616}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 250}, "user": {"role": "worker"}}}, "resource": {"id": 310, "owner": {"id": 30}, "assignee": {"id": 565}, "organization": {"id": 124}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 13}, "assignee": {"id": 560}, "organization": {"id": 643}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"id": 361, "owner": {"id": 43}, "assignee": {"id": 563}, "organization": {"id": 122}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 493}, "assignee": {"id": 84}, "organization": {"id": 645}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 371, "owner": {"id": 417}, "assignee": {"id": 30}, "organization": {"id": 188}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 436}, "assignee": {"id": 32}, "organization": {"id": 614}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 336, "owner": {"id": 496}, "assignee": {"id": 79}, "organization": {"id": 124}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"id": 385, "owner": {"id": 432}, "assignee": {"id": 74}, "organization": {"id": 662}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 319, "owner": {"id": 425}, "assignee": {"id": 17}, "organization": {"id": 126}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 217}, "user": {"role": "worker"}}}, "resource": {"id": 358, "owner": {"id": 493}, "assignee": {"id": 29}, "organization": {"id": 612}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 341, "owner": {"id": 423}, "assignee": {"id": 72}, "organization": {"id": 187}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 341, "owner": {"id": 489}, "assignee": {"id": 91}, "organization": {"id": 665}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 480}, "assignee": {"id": 61}, "organization": {"id": 162}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 496}, "assignee": {"id": 99}, "organization": {"id": 642}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 493}, "assignee": {"id": 22}, "organization": {"id": 125}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 405}, "assignee": {"id": 21}, "organization": {"id": 681}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 388, "owner": {"id": 465}, "assignee": {"id": 59}, "organization": {"id": 119}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 336, "owner": {"id": 466}, "assignee": {"id": 53}, "organization": {"id": 659}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"id": 333, "owner": {"id": 406}, "assignee": {"id": 36}, "organization": {"id": 167}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"id": 383, "owner": {"id": 447}, "assignee": {"id": 46}, "organization": {"id": 601}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 476}, "assignee": {"id": 11}, "organization": {"id": 179}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 382, "owner": {"id": 487}, "assignee": {"id": 19}, "organization": {"id": 614}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 244}, "user": {"role": null}}}, "resource": {"id": 399, "owner": {"id": 472}, "assignee": {"id": 74}, "organization": {"id": 187}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 471}, "assignee": {"id": 47}, "organization": {"id": 600}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 131, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 465}, "assignee": {"id": 94}, "organization": {"id": 131}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 414}, "assignee": {"id": 92}, "organization": {"id": 698}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 105, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 465}, "assignee": {"id": 18}, "organization": {"id": 105}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 336, "owner": {"id": 484}, "assignee": {"id": 59}, "organization": {"id": 661}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"id": 308, "owner": {"id": 406}, "assignee": {"id": 77}, "organization": {"id": 187}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 462}, "assignee": {"id": 7}, "organization": {"id": 672}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"id": 378, "owner": {"id": 472}, "assignee": {"id": 64}, "organization": {"id": 179}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 244}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 451}, "assignee": {"id": 83}, "organization": {"id": 673}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 210}, "user": {"role": null}}}, "resource": {"id": 388, "owner": {"id": 456}, "assignee": {"id": 67}, "organization": {"id": 140}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 492}, "assignee": {"id": 69}, "organization": {"id": 664}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 357, "owner": {"id": 431}, "assignee": {"id": 84}, "organization": {"id": 115}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 220}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 499}, "assignee": {"id": 37}, "organization": {"id": 612}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 362, "owner": {"id": 432}, "assignee": {"id": 80}, "organization": {"id": 138}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 451}, "assignee": {"id": 59}, "organization": {"id": 613}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 363, "owner": {"id": 452}, "assignee": {"id": 69}, "organization": {"id": 182}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 453}, "assignee": {"id": 63}, "organization": {"id": 611}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 449}, "assignee": {"id": 43}, "organization": {"id": 165}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": null}, "resource": {"id": 386, "owner": {"id": 41}, "assignee": {"id": 597}, "organization": {"id": 635}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 328, "owner": {"id": 439}, "assignee": {"id": 65}, "organization": {"id": 601}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": null}, "resource": {"id": 360, "owner": {"id": 16}, "assignee": {"id": 526}, "organization": {"id": 628}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 340, "owner": {"id": 477}, "assignee": {"id": 16}, "organization": {"id": 153}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": null}, "resource": {"id": 355, "owner": {"id": 80}, "assignee": {"id": 547}, "organization": {"id": 647}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 472}, "assignee": {"id": 86}, "organization": {"id": 684}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 44}, "assignee": {"id": 574}, "organization": {"id": 619}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 471}, "assignee": {"id": 87}, "organization": {"id": 129}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": null}, "resource": {"id": 383, "owner": {"id": 495}, "assignee": {"id": 11}, "organization": {"id": 690}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 118, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 468}, "assignee": {"id": 85}, "organization": {"id": 687}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": null}, "resource": {"id": 325, "owner": {"id": 438}, "assignee": {"id": 1}, "organization": {"id": 665}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"id": 365, "owner": {"id": 461}, "assignee": {"id": 14}, "organization": {"id": 110}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": null}, "resource": {"id": 315, "owner": {"id": 484}, "assignee": {"id": 4}, "organization": {"id": 693}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 210}, "user": {"role": "supervisor"}}}, "resource": {"id": 323, "owner": {"id": 441}, "assignee": {"id": 25}, "organization": {"id": 608}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": null}, "resource": {"id": 325, "owner": {"id": 462}, "assignee": {"id": 76}, "organization": {"id": 651}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 446}, "assignee": {"id": 57}, "organization": {"id": 157}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": null}, "resource": {"id": 305, "owner": {"id": 487}, "assignee": {"id": 72}, "organization": {"id": 652}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 490}, "assignee": {"id": 44}, "organization": {"id": 693}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": null}, "resource": {"id": 338, "owner": {"id": 411}, "assignee": {"id": 560}, "organization": {"id": 660}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 292}, "user": {"role": "worker"}}}, "resource": {"id": 300, "owner": {"id": 476}, "assignee": {"id": 32}, "organization": {"id": 158}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": null}, "resource": {"id": 348, "owner": {"id": 475}, "assignee": {"id": 592}, "organization": {"id": 690}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"id": 312, "owner": {"id": 438}, "assignee": {"id": 85}, "organization": {"id": 690}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": null}, "resource": {"id": 311, "owner": {"id": 410}, "assignee": {"id": 534}, "organization": {"id": 673}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 317, "owner": {"id": 449}, "assignee": {"id": 65}, "organization": {"id": 162}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": null}, "resource": {"id": 367, "owner": {"id": 451}, "assignee": {"id": 582}, "organization": {"id": 669}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 461}, "assignee": {"id": 574}, "organization": {"id": 679}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": null}, "resource": {"id": 324, "owner": {"id": 484}, "assignee": {"id": 565}, "organization": {"id": 698}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 471}, "assignee": {"id": 556}, "organization": {"id": 138}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 350, "owner": {"id": 3}, "assignee": {"id": 572}, "organization": {"id": 698}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 482}, "assignee": {"id": 546}, "organization": {"id": 610}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 387, "owner": {"id": 40}, "assignee": {"id": 590}, "organization": {"id": 174}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"id": 398, "owner": {"id": 400}, "assignee": {"id": 522}, "organization": {"id": 145}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 373, "owner": {"id": 24}, "assignee": {"id": 541}, "organization": {"id": 693}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 471}, "assignee": {"id": 563}, "organization": {"id": 643}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 300, "owner": {"id": 88}, "assignee": {"id": 563}, "organization": {"id": 143}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 397, "owner": {"id": 459}, "assignee": {"id": 552}, "organization": {"id": 152}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 32}, "assignee": {"id": 554}, "organization": {"id": 665}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 483}, "assignee": {"id": 527}, "organization": {"id": 676}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"id": 314, "owner": {"id": 9}, "assignee": {"id": 589}, "organization": {"id": 128}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 485}, "assignee": {"id": 586}, "organization": {"id": 126}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 303, "owner": {"id": 53}, "assignee": {"id": 519}, "organization": {"id": 657}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 433}, "assignee": {"id": 506}, "organization": {"id": 696}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 81, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 245}, "user": {"role": "worker"}}}, "resource": {"id": 305, "owner": {"id": 81}, "assignee": {"id": 504}, "organization": {"id": 157}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 439}, "assignee": {"id": 526}, "organization": {"id": 140}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"id": 315, "owner": {"id": 19}, "assignee": {"id": 568}, "organization": {"id": 688}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 345, "owner": {"id": 468}, "assignee": {"id": 545}, "organization": {"id": 645}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 156, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"id": 386, "owner": {"id": 52}, "assignee": {"id": 585}, "organization": {"id": 156}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"id": 380, "owner": {"id": 473}, "assignee": {"id": 558}, "organization": {"id": 187}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 7}, "assignee": {"id": 559}, "organization": {"id": 651}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 149, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"id": 353, "owner": {"id": 499}, "assignee": {"id": 594}, "organization": {"id": 632}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 91, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 91}, "assignee": {"id": 534}, "organization": {"id": 100}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"id": 330, "owner": {"id": 404}, "assignee": {"id": 583}, "organization": {"id": 141}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 379, "owner": {"id": 33}, "assignee": {"id": 566}, "organization": {"id": 609}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"id": 370, "owner": {"id": 460}, "assignee": {"id": 575}, "organization": {"id": 600}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 78}, "assignee": {"id": 519}, "organization": {"id": 153}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 127, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"id": 325, "owner": {"id": 493}, "assignee": {"id": 588}, "organization": {"id": 127}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 366, "owner": {"id": 74}, "assignee": {"id": 550}, "organization": {"id": 666}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"id": 382, "owner": {"id": 431}, "assignee": {"id": 524}, "organization": {"id": 604}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"id": 323, "owner": {"id": 58}, "assignee": {"id": 585}, "organization": {"id": 169}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 435}, "assignee": {"id": 569}, "organization": {"id": 118}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 335, "owner": {"id": 13}, "assignee": {"id": 512}, "organization": {"id": 610}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 355, "owner": {"id": 422}, "assignee": {"id": 573}, "organization": {"id": 672}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 258}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 42}, "assignee": {"id": 582}, "organization": {"id": 144}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": {"id": 139, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 494}, "assignee": {"id": 597}, "organization": {"id": 139}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 233}, "user": {"role": null}}}, "resource": {"id": 371, "owner": {"id": 44}, "assignee": {"id": 531}, "organization": {"id": 645}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 428}, "assignee": {"id": 508}, "organization": {"id": 682}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 75}, "assignee": {"id": 512}, "organization": {"id": 103}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 309, "owner": {"id": 435}, "assignee": {"id": 582}, "organization": {"id": 158}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 205}, "user": {"role": "maintainer"}}}, "resource": {"id": 318, "owner": {"id": 442}, "assignee": {"id": 533}, "organization": {"id": 671}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 404}, "assignee": {"id": 507}, "organization": {"id": 130}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 477}, "assignee": {"id": 563}, "organization": {"id": 663}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 456}, "assignee": {"id": 509}, "organization": {"id": 113}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 404}, "assignee": {"id": 522}, "organization": {"id": 623}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 351, "owner": {"id": 441}, "assignee": {"id": 569}, "organization": {"id": 118}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 398, "owner": {"id": 437}, "assignee": {"id": 563}, "organization": {"id": 673}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 210}, "user": {"role": null}}}, "resource": {"id": 333, "owner": {"id": 471}, "assignee": {"id": 549}, "organization": {"id": 113}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 393, "owner": {"id": 407}, "assignee": {"id": 516}, "organization": {"id": 658}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 379, "owner": {"id": 493}, "assignee": {"id": 511}, "organization": {"id": 105}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 471}, "assignee": {"id": 582}, "organization": {"id": 686}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"id": 393, "owner": {"id": 432}, "assignee": {"id": 549}, "organization": {"id": 194}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 405}, "assignee": {"id": 528}, "organization": {"id": 600}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": {"id": 199, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 463}, "assignee": {"id": 578}, "organization": {"id": 199}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 196, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 417}, "assignee": {"id": 592}, "organization": {"id": 691}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 281}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 401}, "assignee": {"id": 500}, "organization": {"id": 154}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"id": 318, "owner": {"id": 493}, "assignee": {"id": 558}, "organization": {"id": 673}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 315, "owner": {"id": 422}, "assignee": {"id": 591}, "organization": {"id": 143}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 156, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 475}, "assignee": {"id": 525}, "organization": {"id": 681}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"id": 348, "owner": {"id": 484}, "assignee": {"id": 524}, "organization": {"id": 192}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 397, "owner": {"id": 453}, "assignee": {"id": 520}, "organization": {"id": 605}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 281}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 452}, "assignee": {"id": 577}, "organization": {"id": 167}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 378, "owner": {"id": 451}, "assignee": {"id": 525}, "organization": {"id": 638}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 314, "owner": {"id": 473}, "assignee": {"id": 552}, "organization": {"id": 140}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 365, "owner": {"id": 446}, "assignee": {"id": 503}, "organization": {"id": 662}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"id": 336, "owner": {"id": 404}, "assignee": {"id": 570}, "organization": {"id": 145}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 433}, "assignee": {"id": 576}, "organization": {"id": 605}}} +} + +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 372, "owner": {"id": 492}, "assignee": {"id": 518}, "organization": {"id": 162}}} +} + +test_scope_DELETE_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 37, "privilege": "admin"}, "organization": null}, "resource": {"id": 346, "owner": {"id": 37}, "assignee": {"id": 528}, "organization": {"id": 683}}} +} + +test_scope_DELETE_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": null}, "resource": {"id": 387, "owner": {"id": 24}, "assignee": {"id": 582}, "organization": {"id": 686}}} +} + +test_scope_DELETE_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": null}, "resource": {"id": 313, "owner": {"id": 58}, "assignee": {"id": 592}, "organization": {"id": 683}}} +} + +test_scope_DELETE_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": null}, "resource": {"id": 343, "owner": {"id": 97}, "assignee": {"id": 559}, "organization": {"id": 654}}} +} + +test_scope_DELETE_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": null}, "resource": {"id": 316, "owner": {"id": 44}, "assignee": {"id": 566}, "organization": {"id": 696}}} +} + +test_scope_DELETE_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": null}, "resource": {"id": 311, "owner": {"id": 488}, "assignee": {"id": 87}, "organization": {"id": 690}}} +} + +test_scope_DELETE_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": null}, "resource": {"id": 386, "owner": {"id": 444}, "assignee": {"id": 66}, "organization": {"id": 697}}} +} + +test_scope_DELETE_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": null}, "resource": {"id": 383, "owner": {"id": 412}, "assignee": {"id": 71}, "organization": {"id": 601}}} +} + +test_scope_DELETE_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": null}, "resource": {"id": 337, "owner": {"id": 463}, "assignee": {"id": 52}, "organization": {"id": 655}}} +} + +test_scope_DELETE_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": null}, "resource": {"id": 361, "owner": {"id": 483}, "assignee": {"id": 54}, "organization": {"id": 656}}} +} + +test_scope_DELETE_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": null}, "resource": {"id": 353, "owner": {"id": 457}, "assignee": {"id": 595}, "organization": {"id": 603}}} +} + +test_scope_DELETE_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": null}, "resource": {"id": 363, "owner": {"id": 475}, "assignee": {"id": 502}, "organization": {"id": 694}}} +} + +test_scope_DELETE_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": null}, "resource": {"id": 389, "owner": {"id": 468}, "assignee": {"id": 510}, "organization": {"id": 663}}} +} + +test_scope_DELETE_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": null}, "resource": {"id": 327, "owner": {"id": 486}, "assignee": {"id": 559}, "organization": {"id": 617}}} +} + +test_scope_DELETE_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": null}, "resource": {"id": 318, "owner": {"id": 496}, "assignee": {"id": 538}, "organization": {"id": 614}}} +} + +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 94}, "assignee": {"id": 500}, "organization": {"id": 674}}} +} + +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 32}, "assignee": {"id": 575}, "organization": {"id": 187}}} +} + +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 22}, "assignee": {"id": 522}, "organization": {"id": 677}}} +} + +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"id": 312, "owner": {"id": 55}, "assignee": {"id": 591}, "organization": {"id": 184}}} +} + +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 238}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 97}, "assignee": {"id": 574}, "organization": {"id": 688}}} +} + +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 73}, "assignee": {"id": 567}, "organization": {"id": 142}}} +} + +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 86}, "assignee": {"id": 548}, "organization": {"id": 632}}} +} + +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 29}, "assignee": {"id": 569}, "organization": {"id": 135}}} +} + +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 163, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 318, "owner": {"id": 77}, "assignee": {"id": 569}, "organization": {"id": 644}}} +} + +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 3}, "assignee": {"id": 550}, "organization": {"id": 185}}} +} + +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 33}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 33}, "assignee": {"id": 596}, "organization": {"id": 680}}} +} + +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 15}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 15}, "assignee": {"id": 513}, "organization": {"id": 184}}} +} + +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 205}, "user": {"role": "maintainer"}}}, "resource": {"id": 381, "owner": {"id": 87}, "assignee": {"id": 571}, "organization": {"id": 679}}} +} + +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 223}, "user": {"role": "maintainer"}}}, "resource": {"id": 334, "owner": {"id": 53}, "assignee": {"id": 517}, "organization": {"id": 171}}} +} + +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 301, "owner": {"id": 39}, "assignee": {"id": 528}, "organization": {"id": 688}}} +} + +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 88}, "assignee": {"id": 594}, "organization": {"id": 182}}} +} + +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"id": 390, "owner": {"id": 67}, "assignee": {"id": 566}, "organization": {"id": 659}}} +} + +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 314, "owner": {"id": 49}, "assignee": {"id": 591}, "organization": {"id": 112}}} +} + +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 71}, "assignee": {"id": 528}, "organization": {"id": 689}}} +} + +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 357, "owner": {"id": 47}, "assignee": {"id": 590}, "organization": {"id": 101}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 367, "owner": {"id": 54}, "assignee": {"id": 569}, "organization": {"id": 690}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 318, "owner": {"id": 74}, "assignee": {"id": 598}, "organization": {"id": 616}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 85}, "assignee": {"id": 556}, "organization": {"id": 108}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 3}, "assignee": {"id": 578}, "organization": {"id": 187}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 15}, "assignee": {"id": 588}, "organization": {"id": 608}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 67}, "assignee": {"id": 557}, "organization": {"id": 664}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 331, "owner": {"id": 53}, "assignee": {"id": 529}, "organization": {"id": 135}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 47}, "assignee": {"id": 553}, "organization": {"id": 111}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 19}, "assignee": {"id": 524}, "organization": {"id": 662}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"id": 357, "owner": {"id": 38}, "assignee": {"id": 593}, "organization": {"id": 630}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 51}, "assignee": {"id": 504}, "organization": {"id": 133}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 192, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 300, "owner": {"id": 70}, "assignee": {"id": 533}, "organization": {"id": 192}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 9, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 9}, "assignee": {"id": 595}, "organization": {"id": 686}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"id": 300, "owner": {"id": 80}, "assignee": {"id": 522}, "organization": {"id": 637}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 79}, "assignee": {"id": 528}, "organization": {"id": 117}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"id": 343, "owner": {"id": 4}, "assignee": {"id": 572}, "organization": {"id": 190}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 43}, "assignee": {"id": 563}, "organization": {"id": 626}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 86}, "assignee": {"id": 510}, "organization": {"id": 608}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 374, "owner": {"id": 63}, "assignee": {"id": 585}, "organization": {"id": 126}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 249}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 65}, "assignee": {"id": 550}, "organization": {"id": 118}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 337, "owner": {"id": 70}, "assignee": {"id": 510}, "organization": {"id": 688}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 81}, "assignee": {"id": 500}, "organization": {"id": 613}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 89}, "assignee": {"id": 516}, "organization": {"id": 120}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"id": 382, "owner": {"id": 69}, "assignee": {"id": 592}, "organization": {"id": 159}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 46}, "assignee": {"id": 507}, "organization": {"id": 676}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"id": 376, "owner": {"id": 71}, "assignee": {"id": 507}, "organization": {"id": 663}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 55}, "assignee": {"id": 522}, "organization": {"id": 153}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 379, "owner": {"id": 95}, "assignee": {"id": 527}, "organization": {"id": 192}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 80}, "assignee": {"id": 588}, "organization": {"id": 679}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 374, "owner": {"id": 18}, "assignee": {"id": 519}, "organization": {"id": 649}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 343, "owner": {"id": 69}, "assignee": {"id": 523}, "organization": {"id": 173}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 7}, "assignee": {"id": 502}, "organization": {"id": 164}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 96, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 96}, "assignee": {"id": 510}, "organization": {"id": 673}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 29}, "assignee": {"id": 536}, "organization": {"id": 699}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"id": 367, "owner": {"id": 72}, "assignee": {"id": 521}, "organization": {"id": 143}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 262}, "user": {"role": "worker"}}}, "resource": {"id": 316, "owner": {"id": 78}, "assignee": {"id": 534}, "organization": {"id": 127}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 10}, "assignee": {"id": 581}, "organization": {"id": 627}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 363, "owner": {"id": 52}, "assignee": {"id": 562}, "organization": {"id": 644}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 81}, "assignee": {"id": 548}, "organization": {"id": 180}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 21}, "assignee": {"id": 555}, "organization": {"id": 104}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 149, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"id": 393, "owner": {"id": 85}, "assignee": {"id": 507}, "organization": {"id": 623}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 77}, "user": {"role": "owner"}}}, "resource": {"id": 301, "owner": {"id": 77}, "assignee": {"id": 579}, "organization": {"id": 616}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"id": 387, "owner": {"id": 56}, "assignee": {"id": 586}, "organization": {"id": 172}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 97}, "assignee": {"id": 522}, "organization": {"id": 104}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 6}, "assignee": {"id": 573}, "organization": {"id": 623}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"id": 389, "owner": {"id": 10}, "assignee": {"id": 508}, "organization": {"id": 630}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 99}, "assignee": {"id": 590}, "organization": {"id": 103}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 160, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 361, "owner": {"id": 1}, "assignee": {"id": 586}, "organization": {"id": 160}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 308, "owner": {"id": 11}, "assignee": {"id": 576}, "organization": {"id": 682}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 84}, "assignee": {"id": 512}, "organization": {"id": 625}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 385, "owner": {"id": 98}, "assignee": {"id": 522}, "organization": {"id": 152}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 59, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 59}, "assignee": {"id": 506}, "organization": {"id": 137}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"id": 361, "owner": {"id": 52}, "assignee": {"id": 579}, "organization": {"id": 606}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 96}, "assignee": {"id": 528}, "organization": {"id": 606}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 178, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 76}, "assignee": {"id": 539}, "organization": {"id": 178}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"id": 381, "owner": {"id": 15}, "assignee": {"id": 560}, "organization": {"id": 103}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"id": 318, "owner": {"id": 28}, "assignee": {"id": 561}, "organization": {"id": 606}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 33}, "assignee": {"id": 540}, "organization": {"id": 643}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 62}, "assignee": {"id": 564}, "organization": {"id": 179}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 318, "owner": {"id": 29}, "assignee": {"id": 577}, "organization": {"id": 104}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"id": 397, "owner": {"id": 414}, "assignee": {"id": 5}, "organization": {"id": 630}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 81, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 433}, "assignee": {"id": 81}, "organization": {"id": 661}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 448}, "assignee": {"id": 53}, "organization": {"id": 182}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 465}, "assignee": {"id": 57}, "organization": {"id": 133}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 99, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 278}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 467}, "assignee": {"id": 99}, "organization": {"id": 603}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"id": 376, "owner": {"id": 485}, "assignee": {"id": 93}, "organization": {"id": 627}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 289}, "user": {"role": "maintainer"}}}, "resource": {"id": 382, "owner": {"id": 470}, "assignee": {"id": 47}, "organization": {"id": 179}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 387, "owner": {"id": 492}, "assignee": {"id": 65}, "organization": {"id": 193}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 295}, "user": {"role": "supervisor"}}}, "resource": {"id": 353, "owner": {"id": 404}, "assignee": {"id": 18}, "organization": {"id": 610}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 356, "owner": {"id": 447}, "assignee": {"id": 6}, "organization": {"id": 691}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 305, "owner": {"id": 467}, "assignee": {"id": 23}, "organization": {"id": 196}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 421}, "assignee": {"id": 45}, "organization": {"id": 173}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 71, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 422}, "assignee": {"id": 71}, "organization": {"id": 671}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 457}, "assignee": {"id": 48}, "organization": {"id": 636}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 496}, "assignee": {"id": 92}, "organization": {"id": 155}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 160, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"id": 319, "owner": {"id": 410}, "assignee": {"id": 74}, "organization": {"id": 160}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 15, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 430}, "assignee": {"id": 15}, "organization": {"id": 630}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 409}, "assignee": {"id": 42}, "organization": {"id": 650}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"id": 332, "owner": {"id": 455}, "assignee": {"id": 12}, "organization": {"id": 185}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 149, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 342, "owner": {"id": 469}, "assignee": {"id": 1}, "organization": {"id": 149}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 16, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 480}, "assignee": {"id": 16}, "organization": {"id": 643}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 382, "owner": {"id": 423}, "assignee": {"id": 19}, "organization": {"id": 668}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 468}, "assignee": {"id": 27}, "organization": {"id": 187}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 95}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 434}, "assignee": {"id": 95}, "organization": {"id": 126}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 470}, "assignee": {"id": 61}, "organization": {"id": 697}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 436}, "assignee": {"id": 21}, "organization": {"id": 689}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": {"id": 199, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 431}, "assignee": {"id": 68}, "organization": {"id": 199}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 450}, "assignee": {"id": 25}, "organization": {"id": 109}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"id": 308, "owner": {"id": 454}, "assignee": {"id": 76}, "organization": {"id": 653}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": {"id": 175, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"id": 314, "owner": {"id": 403}, "assignee": {"id": 93}, "organization": {"id": 683}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 362, "owner": {"id": 411}, "assignee": {"id": 56}, "organization": {"id": 153}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 431}, "assignee": {"id": 10}, "organization": {"id": 126}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 489}, "assignee": {"id": 90}, "organization": {"id": 695}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 458}, "assignee": {"id": 49}, "organization": {"id": 691}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 130, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 310, "owner": {"id": 470}, "assignee": {"id": 35}, "organization": {"id": 130}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 64, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 400}, "assignee": {"id": 64}, "organization": {"id": 173}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 139, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"id": 336, "owner": {"id": 488}, "assignee": {"id": 2}, "organization": {"id": 696}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 113, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 449}, "assignee": {"id": 88}, "organization": {"id": 612}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 355, "owner": {"id": 452}, "assignee": {"id": 68}, "organization": {"id": 119}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 113, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 473}, "assignee": {"id": 28}, "organization": {"id": 113}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"id": 324, "owner": {"id": 493}, "assignee": {"id": 87}, "organization": {"id": 600}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 436}, "assignee": {"id": 18}, "organization": {"id": 696}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 384, "owner": {"id": 466}, "assignee": {"id": 74}, "organization": {"id": 134}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 150, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 400}, "assignee": {"id": 49}, "organization": {"id": 150}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"id": 331, "owner": {"id": 453}, "assignee": {"id": 73}, "organization": {"id": 688}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 336, "owner": {"id": 492}, "assignee": {"id": 13}, "organization": {"id": 632}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 182, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 374, "owner": {"id": 431}, "assignee": {"id": 44}, "organization": {"id": 182}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 330, "owner": {"id": 433}, "assignee": {"id": 4}, "organization": {"id": 152}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 149, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 467}, "assignee": {"id": 64}, "organization": {"id": 618}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 193, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 440}, "assignee": {"id": 97}, "organization": {"id": 644}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 465}, "assignee": {"id": 44}, "organization": {"id": 168}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 351, "owner": {"id": 455}, "assignee": {"id": 12}, "organization": {"id": 153}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"id": 342, "owner": {"id": 423}, "assignee": {"id": 79}, "organization": {"id": 660}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 93, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"id": 396, "owner": {"id": 476}, "assignee": {"id": 93}, "organization": {"id": 626}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 193, "owner": {"id": 288}, "user": {"role": "worker"}}}, "resource": {"id": 366, "owner": {"id": 485}, "assignee": {"id": 54}, "organization": {"id": 193}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 453}, "assignee": {"id": 4}, "organization": {"id": 164}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 361, "owner": {"id": 484}, "assignee": {"id": 10}, "organization": {"id": 667}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 473}, "assignee": {"id": 76}, "organization": {"id": 672}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"id": 301, "owner": {"id": 416}, "assignee": {"id": 82}, "organization": {"id": 189}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 302, "owner": {"id": 420}, "assignee": {"id": 36}, "organization": {"id": 147}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 308, "owner": {"id": 481}, "assignee": {"id": 27}, "organization": {"id": 640}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"id": 364, "owner": {"id": 413}, "assignee": {"id": 17}, "organization": {"id": 632}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 333, "owner": {"id": 426}, "assignee": {"id": 32}, "organization": {"id": 128}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"id": 333, "owner": {"id": 463}, "assignee": {"id": 22}, "organization": {"id": 147}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 497}, "assignee": {"id": 44}, "organization": {"id": 615}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 384, "owner": {"id": 415}, "assignee": {"id": 77}, "organization": {"id": 694}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 409}, "assignee": {"id": 8}, "organization": {"id": 164}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 103, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"id": 325, "owner": {"id": 450}, "assignee": {"id": 90}, "organization": {"id": 103}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 210}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 477}, "assignee": {"id": 13}, "organization": {"id": 646}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 200}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 422}, "assignee": {"id": 19}, "organization": {"id": 637}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"id": 361, "owner": {"id": 483}, "assignee": {"id": 67}, "organization": {"id": 115}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 346, "owner": {"id": 445}, "assignee": {"id": 2}, "organization": {"id": 174}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 370, "owner": {"id": 486}, "assignee": {"id": 28}, "organization": {"id": 690}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"id": 365, "owner": {"id": 423}, "assignee": {"id": 63}, "organization": {"id": 662}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 494}, "assignee": {"id": 85}, "organization": {"id": 140}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"id": 321, "owner": {"id": 432}, "assignee": {"id": 43}, "organization": {"id": 153}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 316, "owner": {"id": 458}, "assignee": {"id": 57}, "organization": {"id": 680}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 449}, "assignee": {"id": 72}, "organization": {"id": 677}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 399, "owner": {"id": 427}, "assignee": {"id": 90}, "organization": {"id": 110}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 447}, "assignee": {"id": 81}, "organization": {"id": 108}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 92}, "user": {"role": "owner"}}}, "resource": {"id": 350, "owner": {"id": 405}, "assignee": {"id": 92}, "organization": {"id": 648}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 481}, "assignee": {"id": 57}, "organization": {"id": 645}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 420}, "assignee": {"id": 46}, "organization": {"id": 194}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 415}, "assignee": {"id": 62}, "organization": {"id": 191}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 282}, "user": {"role": "maintainer"}}}, "resource": {"id": 376, "owner": {"id": 461}, "assignee": {"id": 87}, "organization": {"id": 676}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"id": 327, "owner": {"id": 433}, "assignee": {"id": 11}, "organization": {"id": 697}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 493}, "assignee": {"id": 60}, "organization": {"id": 114}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 281}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 439}, "assignee": {"id": 58}, "organization": {"id": 135}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 336, "owner": {"id": 459}, "assignee": {"id": 51}, "organization": {"id": 699}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": {"id": 116, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 496}, "assignee": {"id": 53}, "organization": {"id": 692}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 277}, "user": {"role": "supervisor"}}}, "resource": {"id": 346, "owner": {"id": 454}, "assignee": {"id": 28}, "organization": {"id": 111}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 150, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 466}, "assignee": {"id": 82}, "organization": {"id": 150}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 154, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 493}, "assignee": {"id": 18}, "organization": {"id": 617}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"id": 374, "owner": {"id": 448}, "assignee": {"id": 47}, "organization": {"id": 615}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 335, "owner": {"id": 497}, "assignee": {"id": 52}, "organization": {"id": 122}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"id": 380, "owner": {"id": 496}, "assignee": {"id": 61}, "organization": {"id": 169}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 424}, "assignee": {"id": 42}, "organization": {"id": 647}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 461}, "assignee": {"id": 38}, "organization": {"id": 651}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 222}, "user": {"role": null}}}, "resource": {"id": 315, "owner": {"id": 449}, "assignee": {"id": 80}, "organization": {"id": 109}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"id": 374, "owner": {"id": 462}, "assignee": {"id": 28}, "organization": {"id": 122}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 119, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 444}, "assignee": {"id": 539}, "organization": {"id": 604}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 321, "owner": {"id": 462}, "assignee": {"id": 522}, "organization": {"id": 661}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 426}, "assignee": {"id": 525}, "organization": {"id": 154}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"id": 393, "owner": {"id": 484}, "assignee": {"id": 566}, "organization": {"id": 133}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 379, "owner": {"id": 400}, "assignee": {"id": 588}, "organization": {"id": 612}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 132, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 407}, "assignee": {"id": 524}, "organization": {"id": 675}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 422}, "assignee": {"id": 523}, "organization": {"id": 166}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 189, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"id": 364, "owner": {"id": 446}, "assignee": {"id": 538}, "organization": {"id": 189}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 300, "owner": {"id": 410}, "assignee": {"id": 550}, "organization": {"id": 639}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 394, "owner": {"id": 432}, "assignee": {"id": 515}, "organization": {"id": 650}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 352, "owner": {"id": 459}, "assignee": {"id": 514}, "organization": {"id": 184}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 283}, "user": {"role": "supervisor"}}}, "resource": {"id": 300, "owner": {"id": 435}, "assignee": {"id": 574}, "organization": {"id": 129}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 243}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 411}, "assignee": {"id": 523}, "organization": {"id": 619}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 50, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"id": 383, "owner": {"id": 429}, "assignee": {"id": 521}, "organization": {"id": 670}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"id": 309, "owner": {"id": 454}, "assignee": {"id": 539}, "organization": {"id": 191}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 464}, "assignee": {"id": 579}, "organization": {"id": 165}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 461}, "assignee": {"id": 575}, "organization": {"id": 672}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 459}, "assignee": {"id": 538}, "organization": {"id": 682}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 330, "owner": {"id": 470}, "assignee": {"id": 583}, "organization": {"id": 198}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 331, "owner": {"id": 477}, "assignee": {"id": 530}, "organization": {"id": 126}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"id": 316, "owner": {"id": 496}, "assignee": {"id": 587}, "organization": {"id": 697}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 174, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 458}, "assignee": {"id": 545}, "organization": {"id": 624}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 432}, "assignee": {"id": 598}, "organization": {"id": 193}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 381, "owner": {"id": 465}, "assignee": {"id": 566}, "organization": {"id": 102}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 336, "owner": {"id": 412}, "assignee": {"id": 571}, "organization": {"id": 661}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"id": 397, "owner": {"id": 447}, "assignee": {"id": 585}, "organization": {"id": 640}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 358, "owner": {"id": 438}, "assignee": {"id": 508}, "organization": {"id": 177}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 255}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 429}, "assignee": {"id": 581}, "organization": {"id": 111}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"id": 366, "owner": {"id": 473}, "assignee": {"id": 557}, "organization": {"id": 685}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 492}, "assignee": {"id": 537}, "organization": {"id": 620}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 451}, "assignee": {"id": 545}, "organization": {"id": 137}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 294}, "user": {"role": "supervisor"}}}, "resource": {"id": 319, "owner": {"id": 452}, "assignee": {"id": 555}, "organization": {"id": 198}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 456}, "assignee": {"id": 537}, "organization": {"id": 656}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 244}, "user": {"role": "worker"}}}, "resource": {"id": 300, "owner": {"id": 422}, "assignee": {"id": 565}, "organization": {"id": 688}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 166, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 342, "owner": {"id": 404}, "assignee": {"id": 550}, "organization": {"id": 166}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 300, "owner": {"id": 489}, "assignee": {"id": 587}, "organization": {"id": 182}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 139, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 415}, "assignee": {"id": 551}, "organization": {"id": 661}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 263}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 445}, "assignee": {"id": 529}, "organization": {"id": 605}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 204}, "user": {"role": null}}}, "resource": {"id": 383, "owner": {"id": 496}, "assignee": {"id": 539}, "organization": {"id": 163}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 487}, "assignee": {"id": 523}, "organization": {"id": 101}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 417}, "assignee": {"id": 539}, "organization": {"id": 664}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 300, "owner": {"id": 463}, "assignee": {"id": 541}, "organization": {"id": 673}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 418}, "assignee": {"id": 584}, "organization": {"id": 191}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 400}, "assignee": {"id": 510}, "organization": {"id": 199}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"id": 330, "owner": {"id": 444}, "assignee": {"id": 515}, "organization": {"id": 659}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 474}, "assignee": {"id": 540}, "organization": {"id": 618}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 368, "owner": {"id": 496}, "assignee": {"id": 552}, "organization": {"id": 160}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 442}, "assignee": {"id": 586}, "organization": {"id": 161}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 400}, "assignee": {"id": 574}, "organization": {"id": 660}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"id": 331, "owner": {"id": 461}, "assignee": {"id": 575}, "organization": {"id": 674}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 374, "owner": {"id": 422}, "assignee": {"id": 592}, "organization": {"id": 191}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"id": 339, "owner": {"id": 444}, "assignee": {"id": 574}, "organization": {"id": 186}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 193, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"id": 336, "owner": {"id": 433}, "assignee": {"id": 588}, "organization": {"id": 643}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 443}, "assignee": {"id": 549}, "organization": {"id": 655}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 492}, "assignee": {"id": 557}, "organization": {"id": 148}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 258}, "user": {"role": "worker"}}}, "resource": {"id": 388, "owner": {"id": 436}, "assignee": {"id": 560}, "organization": {"id": 119}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 165, "owner": {"id": 226}, "user": {"role": null}}}, "resource": {"id": 399, "owner": {"id": 470}, "assignee": {"id": 597}, "organization": {"id": 693}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 150, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 436}, "assignee": {"id": 545}, "organization": {"id": 684}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 365, "owner": {"id": 422}, "assignee": {"id": 510}, "organization": {"id": 156}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 454}, "assignee": {"id": 550}, "organization": {"id": 188}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 434}, "assignee": {"id": 556}, "organization": {"id": 669}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 64}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 459}, "assignee": {"id": 575}, "organization": {"id": 623}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 471}, "assignee": {"id": 527}, "organization": {"id": 171}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 315, "owner": {"id": 454}, "assignee": {"id": 544}, "organization": {"id": 164}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"id": 361, "owner": {"id": 479}, "assignee": {"id": 524}, "organization": {"id": 656}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 464}, "assignee": {"id": 500}, "organization": {"id": 649}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"id": 314, "owner": {"id": 429}, "assignee": {"id": 591}, "organization": {"id": 147}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 384, "owner": {"id": 497}, "assignee": {"id": 532}, "organization": {"id": 174}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"id": 330, "owner": {"id": 463}, "assignee": {"id": 590}, "organization": {"id": 632}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 242}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 400}, "assignee": {"id": 596}, "organization": {"id": 667}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 442}, "assignee": {"id": 533}, "organization": {"id": 159}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 188, "owner": {"id": 293}, "user": {"role": "supervisor"}}}, "resource": {"id": 394, "owner": {"id": 476}, "assignee": {"id": 515}, "organization": {"id": 188}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 326, "owner": {"id": 402}, "assignee": {"id": 504}, "organization": {"id": 686}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"id": 389, "owner": {"id": 450}, "assignee": {"id": 527}, "organization": {"id": 664}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 435}, "assignee": {"id": 542}, "organization": {"id": 102}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 347, "owner": {"id": 404}, "assignee": {"id": 516}, "organization": {"id": 157}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 307, "owner": {"id": 495}, "assignee": {"id": 579}, "organization": {"id": 625}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 193, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 444}, "assignee": {"id": 538}, "organization": {"id": 666}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 243}, "user": {"role": null}}}, "resource": {"id": 399, "owner": {"id": 459}, "assignee": {"id": 543}, "organization": {"id": 180}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 96, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 450}, "assignee": {"id": 598}, "organization": {"id": 159}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 484}, "assignee": {"id": 568}, "organization": {"id": 615}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 411}, "assignee": {"id": 558}, "organization": {"id": 672}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 307, "owner": {"id": 474}, "assignee": {"id": 552}, "organization": {"id": 134}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"id": 380, "owner": {"id": 482}, "assignee": {"id": 577}, "organization": {"id": 134}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"id": 320, "owner": {"id": 491}, "assignee": {"id": 540}, "organization": {"id": 607}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 367, "owner": {"id": 458}, "assignee": {"id": 569}, "organization": {"id": 609}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 348, "owner": {"id": 471}, "assignee": {"id": 543}, "organization": {"id": 103}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"id": 367, "owner": {"id": 406}, "assignee": {"id": 511}, "organization": {"id": 117}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 373, "owner": {"id": 429}, "assignee": {"id": 526}, "organization": {"id": 602}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"id": 367, "owner": {"id": 476}, "assignee": {"id": 579}, "organization": {"id": 614}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 400}, "assignee": {"id": 542}, "organization": {"id": 191}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 210}, "user": {"role": "supervisor"}}}, "resource": {"id": 348, "owner": {"id": 436}, "assignee": {"id": 511}, "organization": {"id": 193}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 483}, "assignee": {"id": 548}, "organization": {"id": 689}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 480}, "assignee": {"id": 554}, "organization": {"id": 620}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 281}, "user": {"role": "worker"}}}, "resource": {"id": 361, "owner": {"id": 402}, "assignee": {"id": 587}, "organization": {"id": 157}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 457}, "assignee": {"id": 567}, "organization": {"id": 131}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 440}, "assignee": {"id": 553}, "organization": {"id": 630}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 150, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 410}, "assignee": {"id": 513}, "organization": {"id": 625}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 107, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"id": 399, "owner": {"id": 493}, "assignee": {"id": 515}, "organization": {"id": 107}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 438}, "assignee": {"id": 591}, "organization": {"id": 115}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": null}, "resource": {"id": 334, "owner": {"id": 88}, "assignee": {"id": 586}, "organization": {"id": 626}}} +test_scope_IMPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 71, "privilege": "admin"}, "organization": null}, "resource": {"id": 363, "owner": {"id": 71}, "assignee": {"id": 508}, "organization": {"id": 614}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": null}, "resource": {"id": 329, "owner": {"id": 20}, "assignee": {"id": 522}, "organization": {"id": 696}}} +test_scope_IMPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": null}, "resource": {"id": 336, "owner": {"id": 68}, "assignee": {"id": 529}, "organization": {"id": 608}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": null}, "resource": {"id": 327, "owner": {"id": 8}, "assignee": {"id": 541}, "organization": {"id": 647}}} +test_scope_IMPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": null}, "resource": {"id": 337, "owner": {"id": 60}, "assignee": {"id": 546}, "organization": {"id": 600}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": null}, "resource": {"id": 391, "owner": {"id": 77}, "assignee": {"id": 548}, "organization": {"id": 627}}} +test_scope_IMPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 12, "privilege": "worker"}, "organization": null}, "resource": {"id": 313, "owner": {"id": 12}, "assignee": {"id": 585}, "organization": {"id": 697}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": null}, "resource": {"id": 374, "owner": {"id": 15}, "assignee": {"id": 519}, "organization": {"id": 693}}} +test_scope_IMPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": null}, "resource": {"id": 340, "owner": {"id": 47}, "assignee": {"id": 524}, "organization": {"id": 645}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": null}, "resource": {"id": 372, "owner": {"id": 429}, "assignee": {"id": 47}, "organization": {"id": 601}}} +test_scope_IMPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": null}, "resource": {"id": 354, "owner": {"id": 413}, "assignee": {"id": 39}, "organization": {"id": 614}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": null}, "resource": {"id": 328, "owner": {"id": 426}, "assignee": {"id": 57}, "organization": {"id": 630}}} +test_scope_IMPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": null}, "resource": {"id": 309, "owner": {"id": 476}, "assignee": {"id": 65}, "organization": {"id": 617}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": null}, "resource": {"id": 369, "owner": {"id": 400}, "assignee": {"id": 84}, "organization": {"id": 628}}} +test_scope_IMPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": null}, "resource": {"id": 303, "owner": {"id": 499}, "assignee": {"id": 50}, "organization": {"id": 625}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": null}, "resource": {"id": 382, "owner": {"id": 455}, "assignee": {"id": 53}, "organization": {"id": 694}}} +test_scope_IMPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": null}, "resource": {"id": 343, "owner": {"id": 483}, "assignee": {"id": 1}, "organization": {"id": 613}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": null}, "resource": {"id": 333, "owner": {"id": 409}, "assignee": {"id": 52}, "organization": {"id": 620}}} +test_scope_IMPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": null}, "resource": {"id": 358, "owner": {"id": 458}, "assignee": {"id": 37}, "organization": {"id": 618}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": null}, "resource": {"id": 352, "owner": {"id": 455}, "assignee": {"id": 577}, "organization": {"id": 667}}} +test_scope_IMPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": null}, "resource": {"id": 321, "owner": {"id": 495}, "assignee": {"id": 561}, "organization": {"id": 617}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": null}, "resource": {"id": 319, "owner": {"id": 451}, "assignee": {"id": 589}, "organization": {"id": 620}}} +test_scope_IMPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": null}, "resource": {"id": 314, "owner": {"id": 418}, "assignee": {"id": 527}, "organization": {"id": 617}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 90, "privilege": "user"}, "organization": null}, "resource": {"id": 337, "owner": {"id": 476}, "assignee": {"id": 537}, "organization": {"id": 604}}} +test_scope_IMPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": null}, "resource": {"id": 317, "owner": {"id": 461}, "assignee": {"id": 513}, "organization": {"id": 679}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": null}, "resource": {"id": 391, "owner": {"id": 451}, "assignee": {"id": 543}, "organization": {"id": 688}}} +test_scope_IMPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": null}, "resource": {"id": 360, "owner": {"id": 433}, "assignee": {"id": 520}, "organization": {"id": 648}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": null}, "resource": {"id": 347, "owner": {"id": 429}, "assignee": {"id": 506}, "organization": {"id": 684}}} +test_scope_IMPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": null}, "resource": {"id": 312, "owner": {"id": 462}, "assignee": {"id": 520}, "organization": {"id": 635}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 58}, "assignee": {"id": 554}, "organization": {"id": 615}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 397, "owner": {"id": 54}, "assignee": {"id": 524}, "organization": {"id": 617}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"id": 301, "owner": {"id": 18}, "assignee": {"id": 595}, "organization": {"id": 100}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 21}, "assignee": {"id": 568}, "organization": {"id": 125}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"id": 353, "owner": {"id": 29}, "assignee": {"id": 542}, "organization": {"id": 618}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 345, "owner": {"id": 21}, "assignee": {"id": 598}, "organization": {"id": 685}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 47}, "assignee": {"id": 526}, "organization": {"id": 110}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 223}, "user": {"role": "maintainer"}}}, "resource": {"id": 366, "owner": {"id": 65}, "assignee": {"id": 562}, "organization": {"id": 193}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 189, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 46}, "assignee": {"id": 522}, "organization": {"id": 657}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 354, "owner": {"id": 79}, "assignee": {"id": 520}, "organization": {"id": 642}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"id": 321, "owner": {"id": 91}, "assignee": {"id": 584}, "organization": {"id": 185}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 333, "owner": {"id": 41}, "assignee": {"id": 535}, "organization": {"id": 176}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 2}, "assignee": {"id": 546}, "organization": {"id": 659}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 378, "owner": {"id": 84}, "assignee": {"id": 557}, "organization": {"id": 692}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 58}, "assignee": {"id": 577}, "organization": {"id": 177}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 29}, "assignee": {"id": 525}, "organization": {"id": 180}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 266}, "user": {"role": null}}}, "resource": {"id": 357, "owner": {"id": 33}, "assignee": {"id": 561}, "organization": {"id": 669}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 45}, "assignee": {"id": 569}, "organization": {"id": 610}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 160, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"id": 319, "owner": {"id": 46}, "assignee": {"id": 538}, "organization": {"id": 160}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 43}, "assignee": {"id": 560}, "organization": {"id": 145}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 323, "owner": {"id": 25}, "assignee": {"id": 593}, "organization": {"id": 624}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 3}, "assignee": {"id": 596}, "organization": {"id": 609}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 5}, "assignee": {"id": 578}, "organization": {"id": 180}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 393, "owner": {"id": 44}, "assignee": {"id": 523}, "organization": {"id": 100}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 37}, "assignee": {"id": 530}, "organization": {"id": 612}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"id": 365, "owner": {"id": 70}, "assignee": {"id": 561}, "organization": {"id": 620}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 389, "owner": {"id": 59}, "assignee": {"id": 553}, "organization": {"id": 101}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 39}, "assignee": {"id": 573}, "organization": {"id": 168}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"id": 357, "owner": {"id": 32}, "assignee": {"id": 598}, "organization": {"id": 696}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 99}, "assignee": {"id": 531}, "organization": {"id": 610}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 20}, "assignee": {"id": 572}, "organization": {"id": 191}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 205}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 15}, "assignee": {"id": 545}, "organization": {"id": 145}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 288}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 45}, "assignee": {"id": 517}, "organization": {"id": 697}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 43}, "assignee": {"id": 522}, "organization": {"id": 672}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 149, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"id": 366, "owner": {"id": 52}, "assignee": {"id": 591}, "organization": {"id": 149}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 331, "owner": {"id": 99}, "assignee": {"id": 534}, "organization": {"id": 180}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"id": 343, "owner": {"id": 34}, "assignee": {"id": 571}, "organization": {"id": 648}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 223}, "user": {"role": null}}}, "resource": {"id": 394, "owner": {"id": 27}, "assignee": {"id": 582}, "organization": {"id": 623}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 380, "owner": {"id": 68}, "assignee": {"id": 594}, "organization": {"id": 148}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 286}, "user": {"role": null}}}, "resource": {"id": 336, "owner": {"id": 78}, "assignee": {"id": 572}, "organization": {"id": 115}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 22, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 22}, "assignee": {"id": 558}, "organization": {"id": 621}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 33}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 33}, "assignee": {"id": 553}, "organization": {"id": 605}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 340, "owner": {"id": 53}, "assignee": {"id": 562}, "organization": {"id": 109}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 93, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"id": 316, "owner": {"id": 93}, "assignee": {"id": 535}, "organization": {"id": 137}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 40}, "assignee": {"id": 511}, "organization": {"id": 656}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 2}, "assignee": {"id": 581}, "organization": {"id": 660}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 317, "owner": {"id": 62}, "assignee": {"id": 594}, "organization": {"id": 175}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 358, "owner": {"id": 28}, "assignee": {"id": 564}, "organization": {"id": 127}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 391, "owner": {"id": 67}, "assignee": {"id": 533}, "organization": {"id": 609}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 248}, "user": {"role": "supervisor"}}}, "resource": {"id": 369, "owner": {"id": 3}, "assignee": {"id": 597}, "organization": {"id": 613}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 210}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 66}, "assignee": {"id": 544}, "organization": {"id": 160}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"id": 338, "owner": {"id": 78}, "assignee": {"id": 531}, "organization": {"id": 161}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 94}, "assignee": {"id": 521}, "organization": {"id": 613}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 74}, "assignee": {"id": 579}, "organization": {"id": 609}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 8}, "assignee": {"id": 516}, "organization": {"id": 125}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 365, "owner": {"id": 15}, "assignee": {"id": 549}, "organization": {"id": 189}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 233}, "user": {"role": null}}}, "resource": {"id": 309, "owner": {"id": 99}, "assignee": {"id": 503}, "organization": {"id": 692}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 367, "owner": {"id": 95}, "assignee": {"id": 551}, "organization": {"id": 645}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 76}, "assignee": {"id": 507}, "organization": {"id": 135}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"id": 311, "owner": {"id": 65}, "assignee": {"id": 514}, "organization": {"id": 142}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 367, "owner": {"id": 11}, "assignee": {"id": 569}, "organization": {"id": 683}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 48, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"id": 328, "owner": {"id": 48}, "assignee": {"id": 555}, "organization": {"id": 676}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 313, "owner": {"id": 13}, "assignee": {"id": 593}, "organization": {"id": 124}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 22}, "assignee": {"id": 531}, "organization": {"id": 183}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 103, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"id": 308, "owner": {"id": 1}, "assignee": {"id": 511}, "organization": {"id": 631}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 290}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 37}, "assignee": {"id": 526}, "organization": {"id": 659}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"id": 308, "owner": {"id": 37}, "assignee": {"id": 515}, "organization": {"id": 121}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"id": 311, "owner": {"id": 71}, "assignee": {"id": 515}, "organization": {"id": 121}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 45}, "assignee": {"id": 502}, "organization": {"id": 646}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 43}, "assignee": {"id": 582}, "organization": {"id": 606}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 112, "owner": {"id": 265}, "user": {"role": "supervisor"}}}, "resource": {"id": 335, "owner": {"id": 50}, "assignee": {"id": 554}, "organization": {"id": 112}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 208}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 42}, "assignee": {"id": 505}, "organization": {"id": 162}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 17}, "assignee": {"id": 511}, "organization": {"id": 615}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 361, "owner": {"id": 37}, "assignee": {"id": 565}, "organization": {"id": 637}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 103, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 73}, "assignee": {"id": 550}, "organization": {"id": 103}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 12, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 12}, "assignee": {"id": 558}, "organization": {"id": 170}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 226}, "user": {"role": null}}}, "resource": {"id": 369, "owner": {"id": 57}, "assignee": {"id": 539}, "organization": {"id": 661}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 263}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 20}, "assignee": {"id": 541}, "organization": {"id": 676}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 243}, "user": {"role": null}}}, "resource": {"id": 341, "owner": {"id": 13}, "assignee": {"id": 544}, "organization": {"id": 164}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 224}, "user": {"role": null}}}, "resource": {"id": 318, "owner": {"id": 88}, "assignee": {"id": 555}, "organization": {"id": 154}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 333, "owner": {"id": 55}, "assignee": {"id": 523}, "organization": {"id": 611}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 30}, "assignee": {"id": 532}, "organization": {"id": 600}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 72}, "user": {"role": "owner"}}}, "resource": {"id": 325, "owner": {"id": 72}, "assignee": {"id": 526}, "organization": {"id": 163}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 18}, "assignee": {"id": 540}, "organization": {"id": 114}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 361, "owner": {"id": 85}, "assignee": {"id": 523}, "organization": {"id": 681}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 99}, "assignee": {"id": 550}, "organization": {"id": 675}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 336, "owner": {"id": 75}, "assignee": {"id": 594}, "organization": {"id": 189}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 276}, "user": {"role": "maintainer"}}}, "resource": {"id": 362, "owner": {"id": 80}, "assignee": {"id": 515}, "organization": {"id": 159}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 372, "owner": {"id": 54}, "assignee": {"id": 564}, "organization": {"id": 659}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 325, "owner": {"id": 32}, "assignee": {"id": 593}, "organization": {"id": 618}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 364, "owner": {"id": 57}, "assignee": {"id": 565}, "organization": {"id": 111}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"id": 327, "owner": {"id": 66}, "assignee": {"id": 516}, "organization": {"id": 168}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 93}, "assignee": {"id": 503}, "organization": {"id": 616}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 43}, "assignee": {"id": 509}, "organization": {"id": 650}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"id": 314, "owner": {"id": 84}, "assignee": {"id": 560}, "organization": {"id": 100}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 24}, "assignee": {"id": 589}, "organization": {"id": 166}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 355, "owner": {"id": 26}, "assignee": {"id": 542}, "organization": {"id": 676}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 341, "owner": {"id": 6}, "assignee": {"id": 502}, "organization": {"id": 643}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 382, "owner": {"id": 7}, "assignee": {"id": 589}, "organization": {"id": 189}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 83}, "assignee": {"id": 509}, "organization": {"id": 179}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 197, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"id": 325, "owner": {"id": 432}, "assignee": {"id": 22}, "organization": {"id": 630}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 397, "owner": {"id": 420}, "assignee": {"id": 90}, "organization": {"id": 694}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 471}, "assignee": {"id": 2}, "organization": {"id": 192}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 427}, "assignee": {"id": 6}, "organization": {"id": 146}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 404}, "assignee": {"id": 87}, "organization": {"id": 692}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 390, "owner": {"id": 451}, "assignee": {"id": 91}, "organization": {"id": 646}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 340, "owner": {"id": 434}, "assignee": {"id": 20}, "organization": {"id": 136}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 407}, "assignee": {"id": 97}, "organization": {"id": 199}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 345, "owner": {"id": 412}, "assignee": {"id": 26}, "organization": {"id": 677}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 345, "owner": {"id": 429}, "assignee": {"id": 35}, "organization": {"id": 628}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 208}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 449}, "assignee": {"id": 75}, "organization": {"id": 151}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 127, "owner": {"id": 293}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 426}, "assignee": {"id": 84}, "organization": {"id": 127}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 301, "owner": {"id": 407}, "assignee": {"id": 56}, "organization": {"id": 656}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 470}, "assignee": {"id": 8}, "organization": {"id": 611}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 485}, "assignee": {"id": 38}, "organization": {"id": 124}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 102, "owner": {"id": 217}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 472}, "assignee": {"id": 52}, "organization": {"id": 102}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"id": 322, "owner": {"id": 464}, "assignee": {"id": 20}, "organization": {"id": 610}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 328, "owner": {"id": 407}, "assignee": {"id": 72}, "organization": {"id": 646}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 226}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 489}, "assignee": {"id": 39}, "organization": {"id": 157}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 249}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 488}, "assignee": {"id": 84}, "organization": {"id": 142}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 470}, "assignee": {"id": 17}, "organization": {"id": 627}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 350, "owner": {"id": 498}, "assignee": {"id": 3}, "organization": {"id": 683}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 300, "owner": {"id": 441}, "assignee": {"id": 96}, "organization": {"id": 153}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 20}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 462}, "assignee": {"id": 20}, "organization": {"id": 164}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 464}, "assignee": {"id": 55}, "organization": {"id": 697}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 378, "owner": {"id": 448}, "assignee": {"id": 76}, "organization": {"id": 643}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 412}, "assignee": {"id": 3}, "organization": {"id": 105}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 149, "owner": {"id": 227}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 405}, "assignee": {"id": 42}, "organization": {"id": 149}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 159, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 427}, "assignee": {"id": 96}, "organization": {"id": 628}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"id": 325, "owner": {"id": 414}, "assignee": {"id": 37}, "organization": {"id": 646}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 462}, "assignee": {"id": 90}, "organization": {"id": 101}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 448}, "assignee": {"id": 2}, "organization": {"id": 184}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"id": 327, "owner": {"id": 483}, "assignee": {"id": 35}, "organization": {"id": 681}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 388, "owner": {"id": 474}, "assignee": {"id": 58}, "organization": {"id": 678}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 331, "owner": {"id": 494}, "assignee": {"id": 52}, "organization": {"id": 126}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 381, "owner": {"id": 444}, "assignee": {"id": 96}, "organization": {"id": 102}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"id": 332, "owner": {"id": 461}, "assignee": {"id": 61}, "organization": {"id": 609}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 349, "owner": {"id": 447}, "assignee": {"id": 90}, "organization": {"id": 677}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"id": 311, "owner": {"id": 472}, "assignee": {"id": 50}, "organization": {"id": 198}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 416}, "assignee": {"id": 65}, "organization": {"id": 132}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 487}, "assignee": {"id": 99}, "organization": {"id": 613}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 308, "owner": {"id": 492}, "assignee": {"id": 7}, "organization": {"id": 625}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 483}, "assignee": {"id": 35}, "organization": {"id": 143}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 414}, "assignee": {"id": 69}, "organization": {"id": 108}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 499}, "assignee": {"id": 82}, "organization": {"id": 660}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 22, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 318, "owner": {"id": 439}, "assignee": {"id": 22}, "organization": {"id": 631}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": {"id": 145, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"id": 310, "owner": {"id": 469}, "assignee": {"id": 8}, "organization": {"id": 145}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 419}, "assignee": {"id": 86}, "organization": {"id": 119}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 410}, "assignee": {"id": 16}, "organization": {"id": 652}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 339, "owner": {"id": 485}, "assignee": {"id": 46}, "organization": {"id": 620}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 484}, "assignee": {"id": 91}, "organization": {"id": 185}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 389, "owner": {"id": 439}, "assignee": {"id": 24}, "organization": {"id": 135}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 290}, "user": {"role": "worker"}}}, "resource": {"id": 395, "owner": {"id": 494}, "assignee": {"id": 32}, "organization": {"id": 639}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"id": 358, "owner": {"id": 473}, "assignee": {"id": 63}, "organization": {"id": 609}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"id": 322, "owner": {"id": 454}, "assignee": {"id": 74}, "organization": {"id": 162}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 436}, "assignee": {"id": 69}, "organization": {"id": 171}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"id": 367, "owner": {"id": 482}, "assignee": {"id": 75}, "organization": {"id": 615}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"id": 301, "owner": {"id": 473}, "assignee": {"id": 49}, "organization": {"id": 662}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 192, "owner": {"id": 222}, "user": {"role": null}}}, "resource": {"id": 383, "owner": {"id": 410}, "assignee": {"id": 67}, "organization": {"id": 192}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 317, "owner": {"id": 483}, "assignee": {"id": 32}, "organization": {"id": 132}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 474}, "assignee": {"id": 97}, "organization": {"id": 634}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 453}, "assignee": {"id": 91}, "organization": {"id": 629}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"id": 372, "owner": {"id": 402}, "assignee": {"id": 56}, "organization": {"id": 134}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 152, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"id": 398, "owner": {"id": 434}, "assignee": {"id": 94}, "organization": {"id": 152}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 489}, "assignee": {"id": 84}, "organization": {"id": 661}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 270}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 460}, "assignee": {"id": 28}, "organization": {"id": 622}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 489}, "assignee": {"id": 4}, "organization": {"id": 178}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 467}, "assignee": {"id": 93}, "organization": {"id": 119}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 264}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 436}, "assignee": {"id": 78}, "organization": {"id": 670}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 338, "owner": {"id": 407}, "assignee": {"id": 57}, "organization": {"id": 637}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 283}, "user": {"role": "supervisor"}}}, "resource": {"id": 391, "owner": {"id": 496}, "assignee": {"id": 78}, "organization": {"id": 145}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 336, "owner": {"id": 410}, "assignee": {"id": 72}, "organization": {"id": 116}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 321, "owner": {"id": 442}, "assignee": {"id": 98}, "organization": {"id": 605}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 224}, "user": {"role": "worker"}}}, "resource": {"id": 342, "owner": {"id": 498}, "assignee": {"id": 6}, "organization": {"id": 674}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"id": 322, "owner": {"id": 440}, "assignee": {"id": 80}, "organization": {"id": 159}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 425}, "assignee": {"id": 82}, "organization": {"id": 160}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 394, "owner": {"id": 448}, "assignee": {"id": 82}, "organization": {"id": 604}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 414}, "assignee": {"id": 55}, "organization": {"id": 676}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 492}, "assignee": {"id": 64}, "organization": {"id": 179}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 388, "owner": {"id": 453}, "assignee": {"id": 49}, "organization": {"id": 116}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 38}, "user": {"role": "owner"}}}, "resource": {"id": 372, "owner": {"id": 423}, "assignee": {"id": 38}, "organization": {"id": 669}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 150, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"id": 353, "owner": {"id": 405}, "assignee": {"id": 98}, "organization": {"id": 647}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 415}, "assignee": {"id": 82}, "organization": {"id": 135}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 315, "owner": {"id": 424}, "assignee": {"id": 9}, "organization": {"id": 173}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 350, "owner": {"id": 452}, "assignee": {"id": 75}, "organization": {"id": 687}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 310, "owner": {"id": 456}, "assignee": {"id": 66}, "organization": {"id": 663}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"id": 311, "owner": {"id": 420}, "assignee": {"id": 80}, "organization": {"id": 166}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 368, "owner": {"id": 430}, "assignee": {"id": 38}, "organization": {"id": 113}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 422}, "assignee": {"id": 28}, "organization": {"id": 670}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"id": 393, "owner": {"id": 417}, "assignee": {"id": 29}, "organization": {"id": 632}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 463}, "assignee": {"id": 15}, "organization": {"id": 102}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 370, "owner": {"id": 418}, "assignee": {"id": 1}, "organization": {"id": 167}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 156, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 423}, "assignee": {"id": 5}, "organization": {"id": 673}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 402}, "assignee": {"id": 73}, "organization": {"id": 641}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 339, "owner": {"id": 418}, "assignee": {"id": 92}, "organization": {"id": 164}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 320, "owner": {"id": 462}, "assignee": {"id": 5}, "organization": {"id": 182}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": {"id": 107, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 386, "owner": {"id": 443}, "assignee": {"id": 51}, "organization": {"id": 698}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"id": 380, "owner": {"id": 454}, "assignee": {"id": 2}, "organization": {"id": 621}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"id": 332, "owner": {"id": 408}, "assignee": {"id": 20}, "organization": {"id": 187}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 302, "owner": {"id": 434}, "assignee": {"id": 68}, "organization": {"id": 145}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 92}, "user": {"role": "owner"}}}, "resource": {"id": 333, "owner": {"id": 444}, "assignee": {"id": 599}, "organization": {"id": 643}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 33}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 441}, "assignee": {"id": 533}, "organization": {"id": 650}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 324, "owner": {"id": 439}, "assignee": {"id": 598}, "organization": {"id": 158}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 170, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 309, "owner": {"id": 429}, "assignee": {"id": 516}, "organization": {"id": 170}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 425}, "assignee": {"id": 509}, "organization": {"id": 641}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 278}, "user": {"role": "maintainer"}}}, "resource": {"id": 327, "owner": {"id": 440}, "assignee": {"id": 540}, "organization": {"id": 664}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 411}, "assignee": {"id": 533}, "organization": {"id": 153}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 440}, "assignee": {"id": 506}, "organization": {"id": 126}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 446}, "assignee": {"id": 575}, "organization": {"id": 600}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 156, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 414}, "assignee": {"id": 539}, "organization": {"id": 607}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 319, "owner": {"id": 413}, "assignee": {"id": 520}, "organization": {"id": 183}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 50, "privilege": "admin"}, "organization": {"id": 189, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 410}, "assignee": {"id": 502}, "organization": {"id": 189}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"id": 316, "owner": {"id": 485}, "assignee": {"id": 545}, "organization": {"id": 637}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 243}, "user": {"role": "worker"}}}, "resource": {"id": 395, "owner": {"id": 455}, "assignee": {"id": 574}, "organization": {"id": 645}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"id": 382, "owner": {"id": 452}, "assignee": {"id": 562}, "organization": {"id": 193}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 439}, "assignee": {"id": 580}, "organization": {"id": 100}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 226}, "user": {"role": null}}}, "resource": {"id": 345, "owner": {"id": 410}, "assignee": {"id": 527}, "organization": {"id": 650}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 313, "owner": {"id": 423}, "assignee": {"id": 577}, "organization": {"id": 614}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 347, "owner": {"id": 493}, "assignee": {"id": 581}, "organization": {"id": 131}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 403}, "assignee": {"id": 552}, "organization": {"id": 165}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"id": 345, "owner": {"id": 400}, "assignee": {"id": 576}, "organization": {"id": 642}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 395, "owner": {"id": 419}, "assignee": {"id": 511}, "organization": {"id": 675}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 442}, "assignee": {"id": 523}, "organization": {"id": 146}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"id": 343, "owner": {"id": 431}, "assignee": {"id": 535}, "organization": {"id": 187}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 424}, "assignee": {"id": 584}, "organization": {"id": 614}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"id": 345, "owner": {"id": 440}, "assignee": {"id": 582}, "organization": {"id": 620}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 434}, "assignee": {"id": 565}, "organization": {"id": 147}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 493}, "assignee": {"id": 561}, "organization": {"id": 115}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 364, "owner": {"id": 486}, "assignee": {"id": 586}, "organization": {"id": 644}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"id": 348, "owner": {"id": 409}, "assignee": {"id": 536}, "organization": {"id": 639}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"id": 328, "owner": {"id": 417}, "assignee": {"id": 581}, "organization": {"id": 116}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 216}, "user": {"role": "supervisor"}}}, "resource": {"id": 343, "owner": {"id": 493}, "assignee": {"id": 552}, "organization": {"id": 129}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"id": 330, "owner": {"id": 406}, "assignee": {"id": 524}, "organization": {"id": 693}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 422}, "assignee": {"id": 599}, "organization": {"id": 669}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"id": 373, "owner": {"id": 497}, "assignee": {"id": 597}, "organization": {"id": 160}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 262}, "user": {"role": "worker"}}}, "resource": {"id": 343, "owner": {"id": 475}, "assignee": {"id": 576}, "organization": {"id": 172}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 199, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 446}, "assignee": {"id": 579}, "organization": {"id": 683}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 429}, "assignee": {"id": 571}, "organization": {"id": 610}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 410}, "assignee": {"id": 562}, "organization": {"id": 118}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 485}, "assignee": {"id": 520}, "organization": {"id": 116}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 38}, "user": {"role": "owner"}}}, "resource": {"id": 327, "owner": {"id": 415}, "assignee": {"id": 592}, "organization": {"id": 696}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 336, "owner": {"id": 486}, "assignee": {"id": 508}, "organization": {"id": 635}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 398, "owner": {"id": 486}, "assignee": {"id": 540}, "organization": {"id": 113}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 330, "owner": {"id": 440}, "assignee": {"id": 547}, "organization": {"id": 121}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 9, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 426}, "assignee": {"id": 513}, "organization": {"id": 603}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 314, "owner": {"id": 480}, "assignee": {"id": 525}, "organization": {"id": 601}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 418}, "assignee": {"id": 504}, "organization": {"id": 116}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 421}, "assignee": {"id": 534}, "organization": {"id": 108}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"id": 338, "owner": {"id": 400}, "assignee": {"id": 581}, "organization": {"id": 638}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"id": 345, "owner": {"id": 492}, "assignee": {"id": 588}, "organization": {"id": 619}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"id": 372, "owner": {"id": 483}, "assignee": {"id": 567}, "organization": {"id": 137}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 282}, "user": {"role": "supervisor"}}}, "resource": {"id": 330, "owner": {"id": 471}, "assignee": {"id": 555}, "organization": {"id": 104}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 11, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 442}, "assignee": {"id": 554}, "organization": {"id": 622}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 370, "owner": {"id": 438}, "assignee": {"id": 584}, "organization": {"id": 650}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 325, "owner": {"id": 435}, "assignee": {"id": 575}, "organization": {"id": 104}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 476}, "assignee": {"id": 516}, "organization": {"id": 103}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 466}, "assignee": {"id": 535}, "organization": {"id": 638}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 457}, "assignee": {"id": 537}, "organization": {"id": 611}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"id": 343, "owner": {"id": 447}, "assignee": {"id": 516}, "organization": {"id": 120}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 361, "owner": {"id": 462}, "assignee": {"id": 558}, "organization": {"id": 151}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 436}, "assignee": {"id": 582}, "organization": {"id": 692}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 195, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 446}, "assignee": {"id": 548}, "organization": {"id": 611}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 435}, "assignee": {"id": 559}, "organization": {"id": 113}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 424}, "assignee": {"id": 560}, "organization": {"id": 164}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 270}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 436}, "assignee": {"id": 520}, "organization": {"id": 678}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 340, "owner": {"id": 429}, "assignee": {"id": 594}, "organization": {"id": 623}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"id": 308, "owner": {"id": 481}, "assignee": {"id": 501}, "organization": {"id": 166}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 419}, "assignee": {"id": 578}, "organization": {"id": 115}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 397, "owner": {"id": 494}, "assignee": {"id": 583}, "organization": {"id": 622}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 205}, "user": {"role": "supervisor"}}}, "resource": {"id": 335, "owner": {"id": 425}, "assignee": {"id": 585}, "organization": {"id": 668}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 196, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"id": 352, "owner": {"id": 460}, "assignee": {"id": 547}, "organization": {"id": 196}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 195, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 390, "owner": {"id": 452}, "assignee": {"id": 533}, "organization": {"id": 195}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 412}, "assignee": {"id": 582}, "organization": {"id": 647}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"id": 341, "owner": {"id": 437}, "assignee": {"id": 577}, "organization": {"id": 605}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"id": 396, "owner": {"id": 447}, "assignee": {"id": 547}, "organization": {"id": 174}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 330, "owner": {"id": 417}, "assignee": {"id": 513}, "organization": {"id": 161}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 483}, "assignee": {"id": 520}, "organization": {"id": 660}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 489}, "assignee": {"id": 506}, "organization": {"id": 614}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 424}, "assignee": {"id": 529}, "organization": {"id": 184}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 271}, "user": {"role": null}}}, "resource": {"id": 382, "owner": {"id": 415}, "assignee": {"id": 568}, "organization": {"id": 189}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 363, "owner": {"id": 465}, "assignee": {"id": 500}, "organization": {"id": 617}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 441}, "assignee": {"id": 544}, "organization": {"id": 648}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 14}, "user": {"role": "owner"}}}, "resource": {"id": 357, "owner": {"id": 418}, "assignee": {"id": 564}, "organization": {"id": 109}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"id": 349, "owner": {"id": 484}, "assignee": {"id": 581}, "organization": {"id": 108}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 402}, "assignee": {"id": 502}, "organization": {"id": 651}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 301, "owner": {"id": 463}, "assignee": {"id": 563}, "organization": {"id": 652}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"id": 387, "owner": {"id": 413}, "assignee": {"id": 566}, "organization": {"id": 111}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"id": 367, "owner": {"id": 447}, "assignee": {"id": 504}, "organization": {"id": 117}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 444}, "assignee": {"id": 540}, "organization": {"id": 652}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 310, "owner": {"id": 432}, "assignee": {"id": 539}, "organization": {"id": 603}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"id": 345, "owner": {"id": 445}, "assignee": {"id": 511}, "organization": {"id": 197}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 149, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 427}, "assignee": {"id": 516}, "organization": {"id": 149}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 467}, "assignee": {"id": 595}, "organization": {"id": 625}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 471}, "assignee": {"id": 508}, "organization": {"id": 663}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 463}, "assignee": {"id": 522}, "organization": {"id": 195}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 444}, "assignee": {"id": 521}, "organization": {"id": 181}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 401}, "assignee": {"id": 574}, "organization": {"id": 653}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 354, "owner": {"id": 434}, "assignee": {"id": 535}, "organization": {"id": 687}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 462}, "assignee": {"id": 552}, "organization": {"id": 123}}} +test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"id": 307, "owner": {"id": 447}, "assignee": {"id": 536}, "organization": {"id": 157}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 96}, "assignee": {"id": 505}, "organization": {"id": 618}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 89}, "assignee": {"id": 518}, "organization": {"id": 653}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 72}, "assignee": {"id": 535}, "organization": {"id": 626}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 34}, "assignee": {"id": 549}, "organization": {"id": 606}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 76, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 76}, "assignee": {"id": 517}, "organization": {"id": 606}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 94}, "assignee": {"id": 530}, "organization": {"id": 624}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 36}, "assignee": {"id": 530}, "organization": {"id": 645}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 9}, "assignee": {"id": 560}, "organization": {"id": 626}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 40}, "assignee": {"id": 536}, "organization": {"id": 695}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 65}, "assignee": {"id": 569}, "organization": {"id": 668}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 85}, "assignee": {"id": 516}, "organization": {"id": 678}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 83}, "assignee": {"id": 544}, "organization": {"id": 628}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 76}, "assignee": {"id": 551}, "organization": {"id": 615}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 96}, "assignee": {"id": 520}, "organization": {"id": 688}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 98}, "assignee": {"id": 548}, "organization": {"id": 616}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 19}, "assignee": {"id": 520}, "organization": {"id": 672}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 30}, "assignee": {"id": 545}, "organization": {"id": 631}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 10}, "assignee": {"id": 550}, "organization": {"id": 687}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 52}, "assignee": {"id": 593}, "organization": {"id": 630}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 87}, "assignee": {"id": 520}, "organization": {"id": 619}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 49}, "assignee": {"id": 535}, "organization": {"id": 673}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 57}, "assignee": {"id": 579}, "organization": {"id": 681}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 49}, "assignee": {"id": 599}, "organization": {"id": 665}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 88}, "assignee": {"id": 557}, "organization": {"id": 622}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 57}, "assignee": {"id": 522}, "organization": {"id": 621}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 90}, "assignee": {"id": 558}, "organization": {"id": 638}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 76}, "assignee": {"id": 577}, "organization": {"id": 625}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 99}, "assignee": {"id": 557}, "organization": {"id": 683}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 29}, "assignee": {"id": 535}, "organization": {"id": 603}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 58}, "assignee": {"id": 598}, "organization": {"id": 617}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 21}, "assignee": {"id": 522}, "organization": {"id": 615}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 1}, "assignee": {"id": 581}, "organization": {"id": 694}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 3}, "assignee": {"id": 511}, "organization": {"id": 646}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 34}, "assignee": {"id": 520}, "organization": {"id": 679}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 40}, "assignee": {"id": 536}, "organization": {"id": 618}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 91}, "assignee": {"id": 563}, "organization": {"id": 649}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 28}, "assignee": {"id": 515}, "organization": {"id": 693}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 92}, "assignee": {"id": 514}, "organization": {"id": 612}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 73}, "assignee": {"id": 596}, "organization": {"id": 673}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 72}, "assignee": {"id": 513}, "organization": {"id": 681}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 423}, "assignee": {"id": 45}, "organization": {"id": 686}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 464}, "assignee": {"id": 34}, "organization": {"id": 617}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 449}, "assignee": {"id": 55}, "organization": {"id": 625}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 440}, "assignee": {"id": 86}, "organization": {"id": 646}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 475}, "assignee": {"id": 77}, "organization": {"id": 654}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 433}, "assignee": {"id": 1}, "organization": {"id": 663}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 444}, "assignee": {"id": 24}, "organization": {"id": 630}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 493}, "assignee": {"id": 90}, "organization": {"id": 614}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 496}, "assignee": {"id": 15}, "organization": {"id": 632}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 424}, "assignee": {"id": 53}, "organization": {"id": 642}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 447}, "assignee": {"id": 53}, "organization": {"id": 630}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 482}, "assignee": {"id": 78}, "organization": {"id": 660}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 401}, "assignee": {"id": 90}, "organization": {"id": 684}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 451}, "assignee": {"id": 58}, "organization": {"id": 662}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 410}, "assignee": {"id": 31}, "organization": {"id": 624}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 428}, "assignee": {"id": 42}, "organization": {"id": 676}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 482}, "assignee": {"id": 60}, "organization": {"id": 647}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 470}, "assignee": {"id": 98}, "organization": {"id": 638}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 45, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 430}, "assignee": {"id": 45}, "organization": {"id": 621}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 20, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 426}, "assignee": {"id": 20}, "organization": {"id": 641}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 400}, "assignee": {"id": 32}, "organization": {"id": 644}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 472}, "assignee": {"id": 23}, "organization": {"id": 695}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 452}, "assignee": {"id": 13}, "organization": {"id": 626}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 410}, "assignee": {"id": 23}, "organization": {"id": 668}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 455}, "assignee": {"id": 94}, "organization": {"id": 682}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 430}, "assignee": {"id": 92}, "organization": {"id": 697}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 446}, "assignee": {"id": 97}, "organization": {"id": 670}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 422}, "assignee": {"id": 43}, "organization": {"id": 615}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 450}, "assignee": {"id": 95}, "organization": {"id": 640}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 439}, "assignee": {"id": 8}, "organization": {"id": 640}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 461}, "assignee": {"id": 40}, "organization": {"id": 617}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 441}, "assignee": {"id": 75}, "organization": {"id": 621}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 454}, "assignee": {"id": 12}, "organization": {"id": 624}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 415}, "assignee": {"id": 23}, "organization": {"id": 644}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 494}, "assignee": {"id": 33}, "organization": {"id": 640}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 415}, "assignee": {"id": 4}, "organization": {"id": 629}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 494}, "assignee": {"id": 10}, "organization": {"id": 629}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 414}, "assignee": {"id": 89}, "organization": {"id": 679}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 472}, "assignee": {"id": 31}, "organization": {"id": 696}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 404}, "assignee": {"id": 17}, "organization": {"id": 667}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 422}, "assignee": {"id": 575}, "organization": {"id": 660}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 416}, "assignee": {"id": 548}, "organization": {"id": 634}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 467}, "assignee": {"id": 567}, "organization": {"id": 638}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 420}, "assignee": {"id": 580}, "organization": {"id": 630}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 452}, "assignee": {"id": 525}, "organization": {"id": 656}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 497}, "assignee": {"id": 508}, "organization": {"id": 684}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 430}, "assignee": {"id": 522}, "organization": {"id": 616}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 429}, "assignee": {"id": 585}, "organization": {"id": 699}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 407}, "assignee": {"id": 552}, "organization": {"id": 672}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 481}, "assignee": {"id": 569}, "organization": {"id": 643}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 421}, "assignee": {"id": 529}, "organization": {"id": 652}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 497}, "assignee": {"id": 595}, "organization": {"id": 689}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 431}, "assignee": {"id": 511}, "organization": {"id": 699}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 454}, "assignee": {"id": 512}, "organization": {"id": 609}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 405}, "assignee": {"id": 587}, "organization": {"id": 611}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 451}, "assignee": {"id": 537}, "organization": {"id": 610}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 439}, "assignee": {"id": 562}, "organization": {"id": 636}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 470}, "assignee": {"id": 516}, "organization": {"id": 665}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 22, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 439}, "assignee": {"id": 561}, "organization": {"id": 614}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 463}, "assignee": {"id": 575}, "organization": {"id": 689}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 462}, "assignee": {"id": 536}, "organization": {"id": 650}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 436}, "assignee": {"id": 587}, "organization": {"id": 671}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 441}, "assignee": {"id": 579}, "organization": {"id": 635}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 482}, "assignee": {"id": 519}, "organization": {"id": 600}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 417}, "assignee": {"id": 568}, "organization": {"id": 605}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 408}, "assignee": {"id": 560}, "organization": {"id": 607}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 482}, "assignee": {"id": 550}, "organization": {"id": 687}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 468}, "assignee": {"id": 524}, "organization": {"id": 651}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 447}, "assignee": {"id": 537}, "organization": {"id": 606}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 483}, "assignee": {"id": 573}, "organization": {"id": 627}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 409}, "assignee": {"id": 533}, "organization": {"id": 663}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 429}, "assignee": {"id": 574}, "organization": {"id": 686}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 469}, "assignee": {"id": 546}, "organization": {"id": 648}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 455}, "assignee": {"id": 501}, "organization": {"id": 673}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 468}, "assignee": {"id": 554}, "organization": {"id": 661}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 478}, "assignee": {"id": 557}, "organization": {"id": 616}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 479}, "assignee": {"id": 544}, "organization": {"id": 671}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 428}, "assignee": {"id": 554}, "organization": {"id": 603}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 415}, "assignee": {"id": 597}, "organization": {"id": 600}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 496}, "assignee": {"id": 557}, "organization": {"id": 611}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 13}, "assignee": {"id": 519}, "organization": {"id": 645}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 37, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 37}, "assignee": {"id": 513}, "organization": {"id": 685}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 172, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 87}, "assignee": {"id": 598}, "organization": {"id": 650}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 44}, "assignee": {"id": 597}, "organization": {"id": 685}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 88}, "assignee": {"id": 576}, "organization": {"id": 693}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 28}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 28}, "assignee": {"id": 576}, "organization": {"id": 682}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 24}, "assignee": {"id": 568}, "organization": {"id": 684}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 2}, "assignee": {"id": 586}, "organization": {"id": 621}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 97}, "assignee": {"id": 564}, "organization": {"id": 133}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 2}, "assignee": {"id": 542}, "organization": {"id": 118}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 55}, "assignee": {"id": 595}, "organization": {"id": 186}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 89}, "assignee": {"id": 500}, "organization": {"id": 148}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 44}, "assignee": {"id": 587}, "organization": {"id": 194}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 82}, "assignee": {"id": 534}, "organization": {"id": 106}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 9}, "assignee": {"id": 589}, "organization": {"id": 112}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 28}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 28}, "assignee": {"id": 569}, "organization": {"id": 196}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 65}, "assignee": {"id": 573}, "organization": {"id": 691}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 267}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 14}, "assignee": {"id": 586}, "organization": {"id": 624}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 81, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 81}, "assignee": {"id": 507}, "organization": {"id": 695}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 43}, "assignee": {"id": 564}, "organization": {"id": 624}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 30}, "assignee": {"id": 501}, "organization": {"id": 625}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 67}, "assignee": {"id": 501}, "organization": {"id": 612}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 12}, "assignee": {"id": 552}, "organization": {"id": 605}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 50, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 50}, "assignee": {"id": 526}, "organization": {"id": 665}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 40}, "assignee": {"id": 531}, "organization": {"id": 125}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 117, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 41}, "assignee": {"id": 577}, "organization": {"id": 117}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 85}, "assignee": {"id": 527}, "organization": {"id": 118}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 123, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 90}, "assignee": {"id": 561}, "organization": {"id": 123}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 41}, "assignee": {"id": 534}, "organization": {"id": 164}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 11}, "assignee": {"id": 507}, "organization": {"id": 142}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 45}, "assignee": {"id": 549}, "organization": {"id": 141}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 119, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 93}, "assignee": {"id": 596}, "organization": {"id": 119}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 265}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 41}, "assignee": {"id": 549}, "organization": {"id": 651}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 1}, "assignee": {"id": 576}, "organization": {"id": 663}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 31}, "assignee": {"id": 582}, "organization": {"id": 622}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 40}, "assignee": {"id": 577}, "organization": {"id": 685}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 98}, "assignee": {"id": 576}, "organization": {"id": 685}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 93}, "assignee": {"id": 574}, "organization": {"id": 662}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 2}, "assignee": {"id": 543}, "organization": {"id": 667}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 41}, "assignee": {"id": 557}, "organization": {"id": 669}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 17}, "assignee": {"id": 556}, "organization": {"id": 146}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 181, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 16}, "assignee": {"id": 502}, "organization": {"id": 181}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 76, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 76}, "assignee": {"id": 534}, "organization": {"id": 144}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 38}, "assignee": {"id": 570}, "organization": {"id": 125}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 84}, "assignee": {"id": 524}, "organization": {"id": 188}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 51}, "assignee": {"id": 531}, "organization": {"id": 169}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 54}, "assignee": {"id": 551}, "organization": {"id": 109}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 74}, "assignee": {"id": 508}, "organization": {"id": 110}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 65}, "assignee": {"id": 554}, "organization": {"id": 601}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 25}, "assignee": {"id": 510}, "organization": {"id": 604}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 59}, "assignee": {"id": 502}, "organization": {"id": 696}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 3}, "assignee": {"id": 502}, "organization": {"id": 644}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 54}, "assignee": {"id": 552}, "organization": {"id": 690}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 243}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 2}, "assignee": {"id": 506}, "organization": {"id": 663}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 11}, "assignee": {"id": 550}, "organization": {"id": 697}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 43}, "assignee": {"id": 517}, "organization": {"id": 690}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 283}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 87}, "assignee": {"id": 526}, "organization": {"id": 191}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 78}, "assignee": {"id": 513}, "organization": {"id": 124}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 51}, "assignee": {"id": 504}, "organization": {"id": 162}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 181, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 58}, "assignee": {"id": 529}, "organization": {"id": 181}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 41}, "assignee": {"id": 530}, "organization": {"id": 164}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 70}, "assignee": {"id": 551}, "organization": {"id": 164}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 31}, "assignee": {"id": 505}, "organization": {"id": 141}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 16}, "assignee": {"id": 503}, "organization": {"id": 139}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 116, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"owner": {"id": 84}, "assignee": {"id": 537}, "organization": {"id": 679}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"owner": {"id": 14}, "assignee": {"id": 530}, "organization": {"id": 605}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 50, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 214}, "user": {"role": null}}}, "resource": {"owner": {"id": 50}, "assignee": {"id": 524}, "organization": {"id": 621}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 37, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"owner": {"id": 37}, "assignee": {"id": 567}, "organization": {"id": 636}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"owner": {"id": 80}, "assignee": {"id": 505}, "organization": {"id": 649}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"owner": {"id": 94}, "assignee": {"id": 526}, "organization": {"id": 611}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 7, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"owner": {"id": 7}, "assignee": {"id": 580}, "organization": {"id": 655}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"owner": {"id": 42}, "assignee": {"id": 551}, "organization": {"id": 657}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"owner": {"id": 9}, "assignee": {"id": 532}, "organization": {"id": 125}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"owner": {"id": 52}, "assignee": {"id": 596}, "organization": {"id": 194}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"owner": {"id": 93}, "assignee": {"id": 509}, "organization": {"id": 135}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": {"id": 123, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"owner": {"id": 85}, "assignee": {"id": 512}, "organization": {"id": 123}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"owner": {"id": 42}, "assignee": {"id": 506}, "organization": {"id": 105}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 210}, "user": {"role": null}}}, "resource": {"owner": {"id": 30}, "assignee": {"id": 588}, "organization": {"id": 171}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"owner": {"id": 4}, "assignee": {"id": 565}, "organization": {"id": 104}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"owner": {"id": 27}, "assignee": {"id": 575}, "organization": {"id": 157}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 53}, "assignee": {"id": 528}, "organization": {"id": 681}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 13}, "assignee": {"id": 508}, "organization": {"id": 649}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 55}, "assignee": {"id": 521}, "organization": {"id": 612}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 47}, "assignee": {"id": 547}, "organization": {"id": 608}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 149, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 52}, "assignee": {"id": 591}, "organization": {"id": 624}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": {"id": 113, "owner": {"id": 80}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 80}, "assignee": {"id": 526}, "organization": {"id": 603}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 63}, "assignee": {"id": 535}, "organization": {"id": 628}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 56}, "assignee": {"id": 544}, "organization": {"id": 677}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 12}, "assignee": {"id": 523}, "organization": {"id": 167}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 166, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 61}, "assignee": {"id": 552}, "organization": {"id": 166}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 70}, "assignee": {"id": 532}, "organization": {"id": 193}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 63}, "assignee": {"id": 519}, "organization": {"id": 183}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 19}, "assignee": {"id": 502}, "organization": {"id": 161}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 12}, "assignee": {"id": 544}, "organization": {"id": 119}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 92}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 92}, "assignee": {"id": 545}, "organization": {"id": 144}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 90}, "assignee": {"id": 538}, "organization": {"id": 111}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 297}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 1}, "assignee": {"id": 590}, "organization": {"id": 639}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 48}, "assignee": {"id": 526}, "organization": {"id": 643}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 44}, "assignee": {"id": 544}, "organization": {"id": 673}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 289}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 60}, "assignee": {"id": 578}, "organization": {"id": 607}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 27}, "assignee": {"id": 518}, "organization": {"id": 659}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 113, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 67}, "assignee": {"id": 568}, "organization": {"id": 637}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 0}, "assignee": {"id": 529}, "organization": {"id": 640}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 15}, "assignee": {"id": 587}, "organization": {"id": 688}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 97}, "assignee": {"id": 558}, "organization": {"id": 186}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 199, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 10}, "assignee": {"id": 575}, "organization": {"id": 199}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 56}, "assignee": {"id": 526}, "organization": {"id": 100}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 25}, "assignee": {"id": 587}, "organization": {"id": 116}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 24}, "assignee": {"id": 592}, "organization": {"id": 132}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 50}, "assignee": {"id": 527}, "organization": {"id": 197}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 28}, "assignee": {"id": 512}, "organization": {"id": 143}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 37}, "assignee": {"id": 555}, "organization": {"id": 116}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 1}, "assignee": {"id": 597}, "organization": {"id": 680}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 216}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 11}, "assignee": {"id": 523}, "organization": {"id": 645}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 93}, "assignee": {"id": 549}, "organization": {"id": 675}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 46}, "assignee": {"id": 503}, "organization": {"id": 659}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 99}, "assignee": {"id": 557}, "organization": {"id": 639}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 0}, "assignee": {"id": 542}, "organization": {"id": 602}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 46}, "assignee": {"id": 599}, "organization": {"id": 666}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 75}, "assignee": {"id": 597}, "organization": {"id": 643}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 8}, "assignee": {"id": 536}, "organization": {"id": 121}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 93}, "assignee": {"id": 503}, "organization": {"id": 188}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 282}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 5}, "assignee": {"id": 586}, "organization": {"id": 176}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 39}, "assignee": {"id": 537}, "organization": {"id": 179}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 30}, "assignee": {"id": 509}, "organization": {"id": 145}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 242}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 32}, "assignee": {"id": 531}, "organization": {"id": 104}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 80}, "assignee": {"id": 533}, "organization": {"id": 177}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 45}, "assignee": {"id": 596}, "organization": {"id": 131}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 69}, "assignee": {"id": 578}, "organization": {"id": 604}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 286}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 36}, "assignee": {"id": 567}, "organization": {"id": 616}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 5}, "assignee": {"id": 527}, "organization": {"id": 679}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 13}, "assignee": {"id": 506}, "organization": {"id": 697}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 57}, "assignee": {"id": 523}, "organization": {"id": 669}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 77}, "assignee": {"id": 565}, "organization": {"id": 675}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 42}, "assignee": {"id": 500}, "organization": {"id": 639}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 30}, "assignee": {"id": 570}, "organization": {"id": 658}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 202}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 21}, "assignee": {"id": 571}, "organization": {"id": 144}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 38}, "assignee": {"id": 570}, "organization": {"id": 107}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 50}, "assignee": {"id": 522}, "organization": {"id": 129}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 174, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 29}, "assignee": {"id": 522}, "organization": {"id": 174}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 16, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 16}, "assignee": {"id": 535}, "organization": {"id": 170}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 98}, "assignee": {"id": 521}, "organization": {"id": 104}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 149, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 26}, "assignee": {"id": 509}, "organization": {"id": 149}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 130, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 99}, "assignee": {"id": 514}, "organization": {"id": 130}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"owner": {"id": 94}, "assignee": {"id": 509}, "organization": {"id": 677}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"owner": {"id": 67}, "assignee": {"id": 511}, "organization": {"id": 649}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"owner": {"id": 59}, "assignee": {"id": 596}, "organization": {"id": 630}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"owner": {"id": 18}, "assignee": {"id": 514}, "organization": {"id": 644}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"owner": {"id": 71}, "assignee": {"id": 551}, "organization": {"id": 615}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"owner": {"id": 53}, "assignee": {"id": 523}, "organization": {"id": 692}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"owner": {"id": 69}, "assignee": {"id": 590}, "organization": {"id": 636}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"owner": {"id": 67}, "assignee": {"id": 582}, "organization": {"id": 604}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"owner": {"id": 49}, "assignee": {"id": 515}, "organization": {"id": 156}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 249}, "user": {"role": null}}}, "resource": {"owner": {"id": 2}, "assignee": {"id": 523}, "organization": {"id": 160}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"owner": {"id": 65}, "assignee": {"id": 558}, "organization": {"id": 107}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"owner": {"id": 95}, "assignee": {"id": 541}, "organization": {"id": 143}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"owner": {"id": 71}, "assignee": {"id": 560}, "organization": {"id": 184}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"owner": {"id": 2}, "assignee": {"id": 565}, "organization": {"id": 129}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 225}, "user": {"role": null}}}, "resource": {"owner": {"id": 37}, "assignee": {"id": 585}, "organization": {"id": 109}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"owner": {"id": 28}, "assignee": {"id": 532}, "organization": {"id": 163}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 39}, "assignee": {"id": 561}, "organization": {"id": 684}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 174, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 55}, "assignee": {"id": 592}, "organization": {"id": 679}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 31}, "assignee": {"id": 563}, "organization": {"id": 658}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 78}, "assignee": {"id": 599}, "organization": {"id": 615}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 92}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 92}, "assignee": {"id": 590}, "organization": {"id": 636}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 79}, "assignee": {"id": 594}, "organization": {"id": 641}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 83}, "assignee": {"id": 588}, "organization": {"id": 642}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 64}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 64}, "assignee": {"id": 550}, "organization": {"id": 667}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 35}, "assignee": {"id": 533}, "organization": {"id": 195}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 8}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 8}, "assignee": {"id": 560}, "organization": {"id": 199}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 95}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 95}, "assignee": {"id": 529}, "organization": {"id": 152}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 39}, "assignee": {"id": 574}, "organization": {"id": 127}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 89}, "assignee": {"id": 530}, "organization": {"id": 164}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 92}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 92}, "assignee": {"id": 535}, "organization": {"id": 116}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 150, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 74}, "assignee": {"id": 578}, "organization": {"id": 150}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 76}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 76}, "assignee": {"id": 505}, "organization": {"id": 118}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 10}, "assignee": {"id": 544}, "organization": {"id": 638}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 47}, "assignee": {"id": 597}, "organization": {"id": 694}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 1}, "assignee": {"id": 504}, "organization": {"id": 699}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 59}, "assignee": {"id": 563}, "organization": {"id": 689}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 26}, "assignee": {"id": 541}, "organization": {"id": 643}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 64}, "assignee": {"id": 557}, "organization": {"id": 623}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 242}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 80}, "assignee": {"id": 570}, "organization": {"id": 699}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 4}, "assignee": {"id": 568}, "organization": {"id": 683}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 182, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 30}, "assignee": {"id": 523}, "organization": {"id": 182}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 1}, "assignee": {"id": 535}, "organization": {"id": 181}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 19}, "assignee": {"id": 526}, "organization": {"id": 162}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 45, "privilege": "user"}, "organization": {"id": 172, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 45}, "assignee": {"id": 538}, "organization": {"id": 172}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 67}, "assignee": {"id": 564}, "organization": {"id": 119}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 123, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 89}, "assignee": {"id": 569}, "organization": {"id": 123}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 89}, "assignee": {"id": 536}, "organization": {"id": 111}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 48}, "assignee": {"id": 572}, "organization": {"id": 146}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 145, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 58}, "assignee": {"id": 500}, "organization": {"id": 668}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 46}, "assignee": {"id": 531}, "organization": {"id": 623}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 99}, "assignee": {"id": 560}, "organization": {"id": 610}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 93, "privilege": "user"}, "organization": {"id": 172, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 93}, "assignee": {"id": 585}, "organization": {"id": 642}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 98}, "assignee": {"id": 507}, "organization": {"id": 641}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 182, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 32}, "assignee": {"id": 549}, "organization": {"id": 659}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 7}, "assignee": {"id": 544}, "organization": {"id": 674}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 182, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 51}, "assignee": {"id": 505}, "organization": {"id": 613}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 38}, "assignee": {"id": 506}, "organization": {"id": 156}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 110, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 78}, "assignee": {"id": 500}, "organization": {"id": 110}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 52}, "assignee": {"id": 584}, "organization": {"id": 153}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 57}, "assignee": {"id": 594}, "organization": {"id": 162}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 174, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 33}, "assignee": {"id": 530}, "organization": {"id": 174}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 291}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 31}, "assignee": {"id": 596}, "organization": {"id": 196}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 265}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 39}, "assignee": {"id": 577}, "organization": {"id": 127}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 21}, "assignee": {"id": 519}, "organization": {"id": 146}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 122, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 94}, "assignee": {"id": 529}, "organization": {"id": 697}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 48}, "assignee": {"id": 508}, "organization": {"id": 607}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 290}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 28}, "assignee": {"id": 513}, "organization": {"id": 623}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 244}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 43}, "assignee": {"id": 517}, "organization": {"id": 640}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 67}, "assignee": {"id": 536}, "organization": {"id": 612}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 65}, "assignee": {"id": 551}, "organization": {"id": 602}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 92}, "assignee": {"id": 529}, "organization": {"id": 694}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 56}, "assignee": {"id": 501}, "organization": {"id": 604}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 139, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 59}, "assignee": {"id": 546}, "organization": {"id": 139}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 95}, "assignee": {"id": 588}, "organization": {"id": 106}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 80}, "assignee": {"id": 501}, "organization": {"id": 113}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 5}, "assignee": {"id": 572}, "organization": {"id": 160}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 16}, "assignee": {"id": 576}, "organization": {"id": 140}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 74}, "assignee": {"id": 566}, "organization": {"id": 190}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 52}, "assignee": {"id": 582}, "organization": {"id": 197}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 60}, "assignee": {"id": 548}, "organization": {"id": 127}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 223}, "user": {"role": null}}}, "resource": {"owner": {"id": 84}, "assignee": {"id": 577}, "organization": {"id": 611}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"owner": {"id": 3}, "assignee": {"id": 522}, "organization": {"id": 626}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 154, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"owner": {"id": 54}, "assignee": {"id": 585}, "organization": {"id": 693}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 233}, "user": {"role": null}}}, "resource": {"owner": {"id": 12}, "assignee": {"id": 535}, "organization": {"id": 680}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 249}, "user": {"role": null}}}, "resource": {"owner": {"id": 82}, "assignee": {"id": 521}, "organization": {"id": 687}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"owner": {"id": 82}, "assignee": {"id": 585}, "organization": {"id": 687}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"owner": {"id": 19}, "assignee": {"id": 588}, "organization": {"id": 634}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"owner": {"id": 8}, "assignee": {"id": 589}, "organization": {"id": 666}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"owner": {"id": 66}, "assignee": {"id": 571}, "organization": {"id": 141}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"owner": {"id": 57}, "assignee": {"id": 589}, "organization": {"id": 135}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"owner": {"id": 42}, "assignee": {"id": 516}, "organization": {"id": 173}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"owner": {"id": 60}, "assignee": {"id": 557}, "organization": {"id": 134}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": {"id": 192, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"owner": {"id": 1}, "assignee": {"id": 584}, "organization": {"id": 192}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 207}, "user": {"role": null}}}, "resource": {"owner": {"id": 97}, "assignee": {"id": 596}, "organization": {"id": 195}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"owner": {"id": 99}, "assignee": {"id": 578}, "organization": {"id": 141}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"owner": {"id": 77}, "assignee": {"id": 563}, "organization": {"id": 179}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 21}, "assignee": {"id": 541}, "organization": {"id": 671}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 67}, "assignee": {"id": 501}, "organization": {"id": 696}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 35}, "assignee": {"id": 512}, "organization": {"id": 694}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 84}, "assignee": {"id": 519}, "organization": {"id": 624}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 193, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 5}, "assignee": {"id": 559}, "organization": {"id": 681}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 50}, "assignee": {"id": 584}, "organization": {"id": 637}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 98}, "assignee": {"id": 596}, "organization": {"id": 620}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 1}, "assignee": {"id": 532}, "organization": {"id": 605}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 129, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 17}, "assignee": {"id": 557}, "organization": {"id": 129}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 79}, "assignee": {"id": 528}, "organization": {"id": 118}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 89}, "assignee": {"id": 557}, "organization": {"id": 168}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 28}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 28}, "assignee": {"id": 575}, "organization": {"id": 167}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 76}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 76}, "assignee": {"id": 568}, "organization": {"id": 126}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 53}, "assignee": {"id": 576}, "organization": {"id": 130}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 13}, "assignee": {"id": 507}, "organization": {"id": 144}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 82}, "assignee": {"id": 541}, "organization": {"id": 122}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 49}, "assignee": {"id": 539}, "organization": {"id": 618}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 71}, "assignee": {"id": 562}, "organization": {"id": 623}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 199, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 4}, "assignee": {"id": 594}, "organization": {"id": 659}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 186, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 1}, "assignee": {"id": 513}, "organization": {"id": 660}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 56}, "assignee": {"id": 503}, "organization": {"id": 606}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 71}, "assignee": {"id": 595}, "organization": {"id": 605}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 49}, "assignee": {"id": 567}, "organization": {"id": 667}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 129, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 5}, "assignee": {"id": 581}, "organization": {"id": 628}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 7}, "assignee": {"id": 564}, "organization": {"id": 178}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 281}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 90}, "assignee": {"id": 599}, "organization": {"id": 118}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 6}, "assignee": {"id": 557}, "organization": {"id": 171}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 4}, "assignee": {"id": 531}, "organization": {"id": 178}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 7}, "assignee": {"id": 580}, "organization": {"id": 149}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 107, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 62}, "assignee": {"id": 573}, "organization": {"id": 107}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 5}, "assignee": {"id": 571}, "organization": {"id": 116}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 61}, "assignee": {"id": 547}, "organization": {"id": 168}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 95}, "assignee": {"id": 531}, "organization": {"id": 685}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 41}, "assignee": {"id": 548}, "organization": {"id": 695}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 8}, "assignee": {"id": 520}, "organization": {"id": 612}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 69}, "assignee": {"id": 591}, "organization": {"id": 634}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 77}, "assignee": {"id": 542}, "organization": {"id": 689}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 22}, "assignee": {"id": 587}, "organization": {"id": 620}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 112, "owner": {"id": 293}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 88}, "assignee": {"id": 517}, "organization": {"id": 636}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 93}, "assignee": {"id": 531}, "organization": {"id": 688}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 55}, "assignee": {"id": 509}, "organization": {"id": 167}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 60}, "assignee": {"id": 591}, "organization": {"id": 115}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 99}, "assignee": {"id": 500}, "organization": {"id": 126}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 10}, "assignee": {"id": 540}, "organization": {"id": 102}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 44}, "assignee": {"id": 599}, "organization": {"id": 108}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 54}, "assignee": {"id": 578}, "organization": {"id": 158}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 90}, "assignee": {"id": 539}, "organization": {"id": 190}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 70}, "assignee": {"id": 579}, "organization": {"id": 119}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 33}, "assignee": {"id": 598}, "organization": {"id": 653}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 8}, "assignee": {"id": 584}, "organization": {"id": 679}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 62}, "assignee": {"id": 526}, "organization": {"id": 645}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 83}, "assignee": {"id": 525}, "organization": {"id": 677}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 262}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 61}, "assignee": {"id": 506}, "organization": {"id": 685}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 57}, "assignee": {"id": 508}, "organization": {"id": 644}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 31}, "assignee": {"id": 512}, "organization": {"id": 610}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 35}, "assignee": {"id": 546}, "organization": {"id": 695}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 68}, "assignee": {"id": 508}, "organization": {"id": 136}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 88}, "assignee": {"id": 558}, "organization": {"id": 117}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 79}, "assignee": {"id": 515}, "organization": {"id": 121}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 2}, "assignee": {"id": 541}, "organization": {"id": 161}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 107, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 21}, "assignee": {"id": 523}, "organization": {"id": 107}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 96, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 96}, "assignee": {"id": 523}, "organization": {"id": 130}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 26}, "assignee": {"id": 553}, "organization": {"id": 140}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 245}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 41}, "assignee": {"id": 501}, "organization": {"id": 170}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"owner": {"id": 46}, "assignee": {"id": 513}, "organization": {"id": 625}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"owner": {"id": 61}, "assignee": {"id": 517}, "organization": {"id": 697}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"owner": {"id": 79}, "assignee": {"id": 529}, "organization": {"id": 684}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"owner": {"id": 57}, "assignee": {"id": 523}, "organization": {"id": 632}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"owner": {"id": 80}, "assignee": {"id": 504}, "organization": {"id": 651}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"owner": {"id": 28}, "assignee": {"id": 551}, "organization": {"id": 660}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"owner": {"id": 93}, "assignee": {"id": 502}, "organization": {"id": 668}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"owner": {"id": 4}, "assignee": {"id": 503}, "organization": {"id": 612}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"owner": {"id": 99}, "assignee": {"id": 598}, "organization": {"id": 144}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 222}, "user": {"role": null}}}, "resource": {"owner": {"id": 88}, "assignee": {"id": 559}, "organization": {"id": 172}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"owner": {"id": 80}, "assignee": {"id": 567}, "organization": {"id": 140}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 51, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"owner": {"id": 51}, "assignee": {"id": 555}, "organization": {"id": 130}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"owner": {"id": 16}, "assignee": {"id": 508}, "organization": {"id": 121}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 273}, "user": {"role": null}}}, "resource": {"owner": {"id": 26}, "assignee": {"id": 521}, "organization": {"id": 110}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 196, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"owner": {"id": 86}, "assignee": {"id": 556}, "organization": {"id": 196}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 199, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"owner": {"id": 13}, "assignee": {"id": 546}, "organization": {"id": 199}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 23}, "assignee": {"id": 526}, "organization": {"id": 668}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 83}, "assignee": {"id": 517}, "organization": {"id": 663}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 2}, "assignee": {"id": 571}, "organization": {"id": 612}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 69}, "assignee": {"id": 503}, "organization": {"id": 684}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 19}, "assignee": {"id": 589}, "organization": {"id": 610}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 23}, "assignee": {"id": 566}, "organization": {"id": 695}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 107, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 85}, "assignee": {"id": 535}, "organization": {"id": 695}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 58}, "assignee": {"id": 502}, "organization": {"id": 601}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 18}, "assignee": {"id": 537}, "organization": {"id": 169}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 12}, "assignee": {"id": 594}, "organization": {"id": 124}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 73}, "assignee": {"id": 526}, "organization": {"id": 130}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": {"id": 118, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 75}, "assignee": {"id": 502}, "organization": {"id": 118}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 156, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 7}, "assignee": {"id": 518}, "organization": {"id": 156}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 73}, "assignee": {"id": 515}, "organization": {"id": 151}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 19}, "assignee": {"id": 555}, "organization": {"id": 157}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 20}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 20}, "assignee": {"id": 538}, "organization": {"id": 182}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 79}, "assignee": {"id": 533}, "organization": {"id": 603}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 95}, "assignee": {"id": 559}, "organization": {"id": 608}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 59, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 59}, "assignee": {"id": 531}, "organization": {"id": 659}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 58}, "assignee": {"id": 587}, "organization": {"id": 665}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 53}, "assignee": {"id": 505}, "organization": {"id": 603}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 255}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 37}, "assignee": {"id": 523}, "organization": {"id": 622}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 65}, "assignee": {"id": 503}, "organization": {"id": 626}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 242}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 11}, "assignee": {"id": 581}, "organization": {"id": 662}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 86}, "assignee": {"id": 575}, "organization": {"id": 127}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 205}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 77}, "assignee": {"id": 541}, "organization": {"id": 157}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 65}, "assignee": {"id": 515}, "organization": {"id": 158}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 93}, "assignee": {"id": 588}, "organization": {"id": 136}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 43}, "assignee": {"id": 573}, "organization": {"id": 114}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 150, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 96}, "assignee": {"id": 552}, "organization": {"id": 150}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 43}, "assignee": {"id": 550}, "organization": {"id": 174}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 44}, "assignee": {"id": 528}, "organization": {"id": 185}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 205}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 33}, "assignee": {"id": 572}, "organization": {"id": 666}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 40}, "assignee": {"id": 581}, "organization": {"id": 607}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 86}, "assignee": {"id": 596}, "organization": {"id": 676}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 30}, "assignee": {"id": 553}, "organization": {"id": 644}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 107, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 77}, "assignee": {"id": 549}, "organization": {"id": 689}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 82}, "assignee": {"id": 538}, "organization": {"id": 697}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 43}, "assignee": {"id": 541}, "organization": {"id": 687}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 205}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 48}, "assignee": {"id": 592}, "organization": {"id": 646}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 160, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 84}, "assignee": {"id": 504}, "organization": {"id": 160}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 28}, "assignee": {"id": 511}, "organization": {"id": 184}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 63}, "assignee": {"id": 542}, "organization": {"id": 146}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 86}, "assignee": {"id": 506}, "organization": {"id": 172}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 85}, "assignee": {"id": 518}, "organization": {"id": 175}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 92}, "assignee": {"id": 556}, "organization": {"id": 180}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 54}, "assignee": {"id": 542}, "organization": {"id": 127}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 283}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 10}, "assignee": {"id": 535}, "organization": {"id": 131}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 29}, "assignee": {"id": 544}, "organization": {"id": 675}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 224}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 47}, "assignee": {"id": 576}, "organization": {"id": 621}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 27}, "assignee": {"id": 573}, "organization": {"id": 634}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 77}, "assignee": {"id": 538}, "organization": {"id": 678}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 98}, "assignee": {"id": 530}, "organization": {"id": 637}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 188, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 21}, "assignee": {"id": 517}, "organization": {"id": 682}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 5}, "assignee": {"id": 551}, "organization": {"id": 646}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 20}, "assignee": {"id": 580}, "organization": {"id": 618}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 56}, "assignee": {"id": 577}, "organization": {"id": 147}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 142, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 45}, "assignee": {"id": 598}, "organization": {"id": 142}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 27}, "assignee": {"id": 517}, "organization": {"id": 112}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 49}, "assignee": {"id": 519}, "organization": {"id": 169}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 83}, "assignee": {"id": 551}, "organization": {"id": 130}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 9}, "assignee": {"id": 555}, "organization": {"id": 110}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 202}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 43}, "assignee": {"id": 566}, "organization": {"id": 115}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 25}, "assignee": {"id": 532}, "organization": {"id": 104}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"owner": {"id": 71}, "assignee": {"id": 587}, "organization": {"id": 640}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"owner": {"id": 43}, "assignee": {"id": 576}, "organization": {"id": 627}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"owner": {"id": 12}, "assignee": {"id": 513}, "organization": {"id": 666}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"owner": {"id": 3}, "assignee": {"id": 523}, "organization": {"id": 679}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"owner": {"id": 54}, "assignee": {"id": 524}, "organization": {"id": 609}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"owner": {"id": 86}, "assignee": {"id": 598}, "organization": {"id": 666}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"owner": {"id": 2}, "assignee": {"id": 541}, "organization": {"id": 685}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"owner": {"id": 54}, "assignee": {"id": 543}, "organization": {"id": 633}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"owner": {"id": 28}, "assignee": {"id": 514}, "organization": {"id": 133}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"owner": {"id": 11}, "assignee": {"id": 537}, "organization": {"id": 110}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"owner": {"id": 98}, "assignee": {"id": 504}, "organization": {"id": 153}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 243}, "user": {"role": null}}}, "resource": {"owner": {"id": 45}, "assignee": {"id": 591}, "organization": {"id": 120}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 150, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"owner": {"id": 85}, "assignee": {"id": 528}, "organization": {"id": 150}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"owner": {"id": 92}, "assignee": {"id": 531}, "organization": {"id": 140}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"owner": {"id": 16}, "assignee": {"id": 597}, "organization": {"id": 110}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 207}, "user": {"role": null}}}, "resource": {"owner": {"id": 51}, "assignee": {"id": 590}, "organization": {"id": 146}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 172, "owner": {"id": 95}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 95}, "organization": {"id": 698}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": {"id": 149, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 85}, "organization": {"id": 659}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 93}, "organization": {"id": 643}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 38}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 38}, "organization": {"id": 634}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 5}, "organization": {"id": 674}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 17}, "organization": {"id": 623}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 5}, "organization": {"id": 628}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 98}, "organization": {"id": 643}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 443}, "assignee": {"id": 75}, "organization": {"id": 129}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 48}, "organization": {"id": 150}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 419}, "assignee": {"id": 84}, "organization": {"id": 112}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 50, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 50}, "organization": {"id": 175}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 466}, "assignee": {"id": 32}, "organization": {"id": 153}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 72}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 72}, "organization": {"id": 106}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 424}, "assignee": {"id": 60}, "organization": {"id": 112}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 18}, "organization": {"id": 196}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 477}, "assignee": {"id": 31}, "organization": {"id": 612}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 485}, "assignee": {"id": 35}, "organization": {"id": 688}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 42}, "organization": {"id": 682}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 74}, "organization": {"id": 695}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 181, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 29}, "organization": {"id": 697}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 289}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 485}, "assignee": {"id": 73}, "organization": {"id": 645}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 137, "owner": {"id": 278}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 480}, "assignee": {"id": 59}, "organization": {"id": 676}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 267}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 23}, "organization": {"id": 652}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 25}, "organization": {"id": 150}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 69}, "organization": {"id": 121}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 10}, "organization": {"id": 154}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 428}, "assignee": {"id": 73}, "organization": {"id": 144}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 267}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 2}, "organization": {"id": 114}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 80}, "organization": {"id": 175}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 463}, "assignee": {"id": 8}, "organization": {"id": 140}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 223}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 75}, "organization": {"id": 158}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 181, "owner": {"id": 295}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 13}, "organization": {"id": 607}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 8}, "organization": {"id": 637}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 49}, "organization": {"id": 658}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 216}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 78}, "organization": {"id": 664}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 248}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 60}, "organization": {"id": 677}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 26}, "organization": {"id": 674}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 78}, "organization": {"id": 689}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 426}, "assignee": {"id": 22}, "organization": {"id": 611}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 5}, "organization": {"id": 176}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 4}, "organization": {"id": 191}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 200}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 78}, "organization": {"id": 134}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 21}, "organization": {"id": 133}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 35}, "organization": {"id": 110}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 25}, "organization": {"id": 140}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 205}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 492}, "assignee": {"id": 83}, "organization": {"id": 196}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 58}, "organization": {"id": 104}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 117, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 39}, "organization": {"id": 686}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 137, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 466}, "assignee": {"id": 24}, "organization": {"id": 617}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 290}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 59}, "organization": {"id": 636}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 250}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 35}, "organization": {"id": 633}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 62}, "organization": {"id": 605}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 8}, "organization": {"id": 618}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 18}, "organization": {"id": 655}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 457}, "assignee": {"id": 49}, "organization": {"id": 689}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 93}, "organization": {"id": 193}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 99, "privilege": "admin"}, "organization": {"id": 132, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 99}, "organization": {"id": 132}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 160, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 1}, "organization": {"id": 160}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 119, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 40}, "organization": {"id": 119}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 485}, "assignee": {"id": 69}, "organization": {"id": 182}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 44}, "organization": {"id": 154}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 15, "privilege": "admin"}, "organization": {"id": 123, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 15}, "organization": {"id": 123}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 2}, "organization": {"id": 131}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 72}, "organization": {"id": 689}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 86}, "organization": {"id": 682}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 51}, "organization": {"id": 676}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 51}, "organization": {"id": 634}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 53}, "organization": {"id": 644}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 81, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"owner": {"id": 461}, "assignee": {"id": 81}, "organization": {"id": 611}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 57}, "organization": {"id": 697}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 160, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 80}, "organization": {"id": 699}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 54}, "organization": {"id": 178}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 127, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 83}, "organization": {"id": 127}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"owner": {"id": 473}, "assignee": {"id": 6}, "organization": {"id": 161}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 15, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 266}, "user": {"role": null}}}, "resource": {"owner": {"id": 452}, "assignee": {"id": 15}, "organization": {"id": 104}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 270}, "user": {"role": null}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 0}, "organization": {"id": 151}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 117, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 33}, "organization": {"id": 117}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"owner": {"id": 481}, "assignee": {"id": 3}, "organization": {"id": 196}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 225}, "user": {"role": null}}}, "resource": {"owner": {"id": 472}, "assignee": {"id": 17}, "organization": {"id": 157}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 460}, "assignee": {"id": 86}, "organization": {"id": 602}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 92}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 92}, "organization": {"id": 682}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 139, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 60}, "organization": {"id": 682}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 113, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 44}, "organization": {"id": 665}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 461}, "assignee": {"id": 55}, "organization": {"id": 652}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 34}, "organization": {"id": 671}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 59}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 424}, "assignee": {"id": 59}, "organization": {"id": 637}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 492}, "assignee": {"id": 55}, "organization": {"id": 667}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 47}, "organization": {"id": 173}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 36}, "organization": {"id": 131}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 460}, "assignee": {"id": 94}, "organization": {"id": 121}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 69}, "organization": {"id": 181}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 97}, "organization": {"id": 150}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 9}, "organization": {"id": 108}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 56}, "organization": {"id": 135}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 159, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 452}, "assignee": {"id": 43}, "organization": {"id": 159}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 466}, "assignee": {"id": 61}, "organization": {"id": 661}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 94}, "organization": {"id": 662}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 9}, "organization": {"id": 672}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 32}, "organization": {"id": 686}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 17}, "organization": {"id": 676}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 282}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 452}, "assignee": {"id": 23}, "organization": {"id": 601}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 159, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 18}, "organization": {"id": 684}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 482}, "assignee": {"id": 66}, "organization": {"id": 643}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 20}, "organization": {"id": 170}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 99}, "organization": {"id": 137}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 37}, "organization": {"id": 148}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 454}, "assignee": {"id": 69}, "organization": {"id": 179}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 6}, "organization": {"id": 193}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 440}, "assignee": {"id": 94}, "organization": {"id": 197}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 474}, "assignee": {"id": 67}, "organization": {"id": 135}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 476}, "assignee": {"id": 74}, "organization": {"id": 105}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 454}, "assignee": {"id": 84}, "organization": {"id": 696}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 248}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 31}, "organization": {"id": 691}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 208}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 81}, "organization": {"id": 686}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 67}, "organization": {"id": 648}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 37}, "organization": {"id": 607}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 477}, "assignee": {"id": 20}, "organization": {"id": 697}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 31}, "organization": {"id": 695}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 443}, "assignee": {"id": 67}, "organization": {"id": 637}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 2}, "organization": {"id": 109}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 482}, "assignee": {"id": 36}, "organization": {"id": 169}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 96}, "organization": {"id": 173}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 73}, "organization": {"id": 167}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 58}, "organization": {"id": 192}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 196, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 72}, "organization": {"id": 196}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 443}, "assignee": {"id": 27}, "organization": {"id": 171}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 15}, "organization": {"id": 190}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 159, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 59}, "organization": {"id": 641}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 214}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 98}, "organization": {"id": 699}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 16, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 16}, "organization": {"id": 610}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 94}, "organization": {"id": 675}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 473}, "assignee": {"id": 7}, "organization": {"id": 628}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 31}, "organization": {"id": 611}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 26}, "organization": {"id": 605}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 39}, "organization": {"id": 634}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 473}, "assignee": {"id": 34}, "organization": {"id": 144}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 149, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 33}, "organization": {"id": 149}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 419}, "assignee": {"id": 53}, "organization": {"id": 140}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 68}, "organization": {"id": 112}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 244}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 480}, "assignee": {"id": 34}, "organization": {"id": 180}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 286}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 59}, "organization": {"id": 111}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 83}, "organization": {"id": 184}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 65}, "organization": {"id": 176}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 57}, "organization": {"id": 689}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 19}, "organization": {"id": 628}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 277}, "user": {"role": null}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 9}, "organization": {"id": 676}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"owner": {"id": 473}, "assignee": {"id": 41}, "organization": {"id": 656}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 264}, "user": {"role": null}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 24}, "organization": {"id": 645}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 93}, "organization": {"id": 602}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 23}, "organization": {"id": 668}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 32}, "organization": {"id": 690}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 196, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 40}, "organization": {"id": 196}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 33}, "organization": {"id": 157}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 2}, "organization": {"id": 122}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"owner": {"id": 409}, "assignee": {"id": 44}, "organization": {"id": 141}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"owner": {"id": 480}, "assignee": {"id": 32}, "organization": {"id": 148}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 10}, "organization": {"id": 180}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 88}, "organization": {"id": 101}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 67}, "organization": {"id": 132}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 26}, "organization": {"id": 659}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 42}, "organization": {"id": 687}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 18}, "organization": {"id": 663}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 23}, "organization": {"id": 645}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 2}, "organization": {"id": 624}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 38}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 38}, "organization": {"id": 665}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 58}, "organization": {"id": 614}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 24}, "organization": {"id": 692}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 81, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 81}, "organization": {"id": 151}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 99}, "organization": {"id": 191}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 84}, "organization": {"id": 148}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 33}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 33}, "organization": {"id": 190}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 128, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 66}, "organization": {"id": 128}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 182, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 87}, "organization": {"id": 182}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 440}, "assignee": {"id": 50}, "organization": {"id": 108}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 52}, "organization": {"id": 118}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 98}, "organization": {"id": 603}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 105, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 24}, "organization": {"id": 602}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 297}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 12}, "organization": {"id": 684}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 50}, "organization": {"id": 643}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 68, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 68}, "organization": {"id": 600}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 71}, "organization": {"id": 608}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 83}, "organization": {"id": 658}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 44}, "organization": {"id": 616}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 81, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 81}, "organization": {"id": 121}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 48}, "organization": {"id": 121}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 58}, "organization": {"id": 153}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 139, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 64}, "organization": {"id": 139}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 62}, "organization": {"id": 180}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 96}, "organization": {"id": 100}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 40}, "organization": {"id": 156}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 429}, "assignee": {"id": 72}, "organization": {"id": 189}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 98}, "organization": {"id": 681}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 40}, "organization": {"id": 652}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 67}, "organization": {"id": 658}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 483}, "assignee": {"id": 15}, "organization": {"id": 690}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 63}, "organization": {"id": 664}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 25}, "organization": {"id": 624}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 70}, "organization": {"id": 650}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 96}, "organization": {"id": 663}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 242}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 24}, "organization": {"id": 171}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 50}, "organization": {"id": 170}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 264}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 419}, "assignee": {"id": 79}, "organization": {"id": 142}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 99}, "organization": {"id": 100}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 28}, "organization": {"id": 147}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 0}, "organization": {"id": 160}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 5}, "organization": {"id": 170}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 53}, "organization": {"id": 196}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 64}, "organization": {"id": 692}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 66}, "organization": {"id": 663}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 69}, "organization": {"id": 657}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 485}, "assignee": {"id": 75}, "organization": {"id": 693}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 67}, "organization": {"id": 627}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 94}, "organization": {"id": 646}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 105, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 477}, "assignee": {"id": 92}, "organization": {"id": 665}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 122, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 27}, "organization": {"id": 635}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 84}, "organization": {"id": 142}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 1}, "organization": {"id": 133}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 62}, "organization": {"id": 107}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 97}, "organization": {"id": 158}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 139, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 40}, "organization": {"id": 139}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 81, "privilege": "user"}, "organization": {"id": 163, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 443}, "assignee": {"id": 81}, "organization": {"id": 163}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": {"id": 174, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 409}, "assignee": {"id": 8}, "organization": {"id": 174}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 24}, "organization": {"id": 191}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 14, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 14}, "organization": {"id": 629}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"owner": {"id": 434}, "assignee": {"id": 63}, "organization": {"id": 647}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"owner": {"id": 440}, "assignee": {"id": 88}, "organization": {"id": 699}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"owner": {"id": 452}, "assignee": {"id": 3}, "organization": {"id": 681}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 138, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 39}, "organization": {"id": 631}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 56}, "organization": {"id": 641}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 214}, "user": {"role": null}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 77}, "organization": {"id": 698}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 89}, "organization": {"id": 600}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 61}, "organization": {"id": 175}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 123, "owner": {"id": 222}, "user": {"role": null}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 77}, "organization": {"id": 123}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"owner": {"id": 457}, "assignee": {"id": 37}, "organization": {"id": 112}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"owner": {"id": 429}, "assignee": {"id": 27}, "organization": {"id": 191}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 21}, "organization": {"id": 190}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 99}, "organization": {"id": 153}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 15}, "organization": {"id": 197}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 85}, "organization": {"id": 134}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 43}, "organization": {"id": 623}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 9}, "organization": {"id": 607}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 78}, "organization": {"id": 696}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 483}, "assignee": {"id": 53}, "organization": {"id": 627}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 404}, "assignee": {"id": 13}, "organization": {"id": 611}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 74}, "organization": {"id": 649}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 74}, "organization": {"id": 694}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 92}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 426}, "assignee": {"id": 92}, "organization": {"id": 622}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 65}, "organization": {"id": 108}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 30, "privilege": "worker"}, "organization": {"id": 129, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 466}, "assignee": {"id": 30}, "organization": {"id": 129}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 50}, "organization": {"id": 161}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 135, "owner": {"id": 28}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 28}, "organization": {"id": 135}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 473}, "assignee": {"id": 74}, "organization": {"id": 123}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 57}, "organization": {"id": 148}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 35}, "organization": {"id": 184}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 3, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 442}, "assignee": {"id": 3}, "organization": {"id": 132}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 33}, "organization": {"id": 619}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 77}, "organization": {"id": 696}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 199, "owner": {"id": 281}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 63}, "organization": {"id": 633}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 404}, "assignee": {"id": 47}, "organization": {"id": 682}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 48, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 476}, "assignee": {"id": 48}, "organization": {"id": 608}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 18}, "organization": {"id": 623}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 186, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 24}, "organization": {"id": 639}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 40}, "organization": {"id": 644}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 14}, "organization": {"id": 118}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 129, "owner": {"id": 205}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 2}, "organization": {"id": 129}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 41}, "organization": {"id": 113}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 71}, "organization": {"id": 161}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 21}, "organization": {"id": 140}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 186, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 24}, "organization": {"id": 186}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 33}, "organization": {"id": 179}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 135, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 6}, "organization": {"id": 135}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 55}, "organization": {"id": 621}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 13}, "organization": {"id": 666}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 7}, "organization": {"id": 612}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 65}, "organization": {"id": 655}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 188, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 16}, "organization": {"id": 649}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 10}, "organization": {"id": 666}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 83}, "organization": {"id": 626}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 27}, "organization": {"id": 677}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 199, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 2}, "organization": {"id": 199}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 15}, "organization": {"id": 145}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 112, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 20}, "organization": {"id": 112}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 43}, "organization": {"id": 190}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 3, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 419}, "assignee": {"id": 3}, "organization": {"id": 178}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 135, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 84}, "organization": {"id": 135}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 9}, "organization": {"id": 165}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 245}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 91}, "organization": {"id": 109}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 34}, "organization": {"id": 673}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 22}, "organization": {"id": 611}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 10}, "organization": {"id": 673}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 258}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 73}, "organization": {"id": 619}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 35}, "organization": {"id": 699}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 156, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 86}, "organization": {"id": 649}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 483}, "assignee": {"id": 49}, "organization": {"id": 602}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 42}, "organization": {"id": 691}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 258}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 61}, "organization": {"id": 106}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 454}, "assignee": {"id": 87}, "organization": {"id": 197}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 76}, "organization": {"id": 169}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 292}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 95}, "organization": {"id": 114}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 98}, "organization": {"id": 137}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 63}, "organization": {"id": 111}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 48, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 283}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 48}, "organization": {"id": 183}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 17}, "organization": {"id": 167}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 30, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 263}, "user": {"role": null}}}, "resource": {"owner": {"id": 474}, "assignee": {"id": 30}, "organization": {"id": 658}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 15}, "organization": {"id": 637}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 84}, "organization": {"id": 640}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 29}, "organization": {"id": 663}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"owner": {"id": 466}, "assignee": {"id": 39}, "organization": {"id": 614}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 270}, "user": {"role": null}}}, "resource": {"owner": {"id": 429}, "assignee": {"id": 57}, "organization": {"id": 652}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 33}, "organization": {"id": 605}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 91}, "organization": {"id": 611}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"owner": {"id": 454}, "assignee": {"id": 24}, "organization": {"id": 167}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 224}, "user": {"role": null}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 87}, "organization": {"id": 169}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 95}, "organization": {"id": 145}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 86}, "organization": {"id": 191}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 11}, "organization": {"id": 145}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 50}, "organization": {"id": 149}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 225}, "user": {"role": null}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 61}, "organization": {"id": 185}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 239}, "user": {"role": null}}}, "resource": {"owner": {"id": 457}, "assignee": {"id": 27}, "organization": {"id": 130}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 91}, "organization": {"id": 607}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 3}, "organization": {"id": 659}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 457}, "assignee": {"id": 43}, "organization": {"id": 607}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 33}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 33}, "organization": {"id": 636}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 53}, "organization": {"id": 697}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 22}, "organization": {"id": 618}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 29}, "organization": {"id": 684}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 429}, "assignee": {"id": 30}, "organization": {"id": 609}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 419}, "assignee": {"id": 57}, "organization": {"id": 168}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 93}, "organization": {"id": 173}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 26}, "organization": {"id": 131}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 479}, "assignee": {"id": 60}, "organization": {"id": 195}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 48}, "organization": {"id": 171}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 15}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 15}, "organization": {"id": 165}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 69}, "organization": {"id": 146}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 19}, "organization": {"id": 109}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 217}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 466}, "assignee": {"id": 17}, "organization": {"id": 699}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 483}, "assignee": {"id": 50}, "organization": {"id": 631}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": {"id": 199, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 51}, "organization": {"id": 618}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 98}, "organization": {"id": 634}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 67}, "organization": {"id": 652}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 460}, "assignee": {"id": 61}, "organization": {"id": 692}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 43}, "organization": {"id": 653}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 64}, "organization": {"id": 662}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 33}, "organization": {"id": 164}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 28}, "organization": {"id": 184}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 59, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 440}, "assignee": {"id": 59}, "organization": {"id": 195}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 442}, "assignee": {"id": 64}, "organization": {"id": 198}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 199, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 474}, "assignee": {"id": 48}, "organization": {"id": 199}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 2}, "organization": {"id": 174}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 297}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 54}, "organization": {"id": 124}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 443}, "assignee": {"id": 18}, "organization": {"id": 155}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 46}, "organization": {"id": 698}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 216}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 457}, "assignee": {"id": 45}, "organization": {"id": 610}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 485}, "assignee": {"id": 32}, "organization": {"id": 604}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 70}, "organization": {"id": 699}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 12}, "organization": {"id": 604}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 84}, "organization": {"id": 662}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 40}, "organization": {"id": 617}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 38}, "organization": {"id": 692}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 42}, "organization": {"id": 131}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 22}, "organization": {"id": 123}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 456}, "assignee": {"id": 57}, "organization": {"id": 167}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 199, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 8}, "organization": {"id": 199}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 43}, "organization": {"id": 134}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 479}, "assignee": {"id": 9}, "organization": {"id": 141}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 23}, "organization": {"id": 111}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 442}, "assignee": {"id": 58}, "organization": {"id": 168}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": {"id": 199, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 62}, "organization": {"id": 600}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 26}, "organization": {"id": 640}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 2}, "organization": {"id": 644}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 71}, "organization": {"id": 647}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 480}, "assignee": {"id": 13}, "organization": {"id": 675}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 429}, "assignee": {"id": 64}, "organization": {"id": 616}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 35}, "organization": {"id": 634}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 11}, "organization": {"id": 665}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 64}, "organization": {"id": 100}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 23}, "organization": {"id": 122}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 443}, "assignee": {"id": 77}, "organization": {"id": 121}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 217}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 11}, "organization": {"id": 169}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 39}, "organization": {"id": 135}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 262}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 38}, "organization": {"id": 105}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 86}, "organization": {"id": 182}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 61}, "organization": {"id": 155}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 69}, "organization": {"id": 680}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 48}, "organization": {"id": 606}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"owner": {"id": 456}, "assignee": {"id": 55}, "organization": {"id": 650}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 76}, "organization": {"id": 620}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 24}, "organization": {"id": 661}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 30}, "organization": {"id": 688}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"owner": {"id": 457}, "assignee": {"id": 2}, "organization": {"id": 682}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 271}, "user": {"role": null}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 3}, "organization": {"id": 610}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 19}, "organization": {"id": 192}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 8}, "organization": {"id": 101}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 57}, "organization": {"id": 170}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 154, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 44}, "organization": {"id": 154}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 48}, "organization": {"id": 158}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 46}, "organization": {"id": 140}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 87}, "organization": {"id": 105}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 47}, "organization": {"id": 130}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 507}, "organization": {"id": 668}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 28}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 477}, "assignee": {"id": 531}, "organization": {"id": 690}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 505}, "organization": {"id": 666}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 80}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 506}, "organization": {"id": 650}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 197, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 566}, "organization": {"id": 692}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 461}, "assignee": {"id": 505}, "organization": {"id": 617}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 592}, "organization": {"id": 614}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 560}, "organization": {"id": 614}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 585}, "organization": {"id": 106}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 538}, "organization": {"id": 147}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 197, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 500}, "organization": {"id": 197}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 516}, "organization": {"id": 135}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 132, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 524}, "organization": {"id": 132}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 557}, "organization": {"id": 105}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 457}, "assignee": {"id": 518}, "organization": {"id": 185}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 20}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 541}, "organization": {"id": 104}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 587}, "organization": {"id": 650}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 190, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 555}, "organization": {"id": 693}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 267}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 424}, "assignee": {"id": 579}, "organization": {"id": 657}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 558}, "organization": {"id": 640}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 503}, "organization": {"id": 694}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 434}, "assignee": {"id": 529}, "organization": {"id": 659}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 117, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 424}, "assignee": {"id": 565}, "organization": {"id": 636}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 506}, "organization": {"id": 640}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 278}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 519}, "organization": {"id": 164}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 531}, "organization": {"id": 108}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 50, "privilege": "admin"}, "organization": {"id": 132, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 428}, "assignee": {"id": 553}, "organization": {"id": 132}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 517}, "organization": {"id": 126}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 588}, "organization": {"id": 121}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 472}, "assignee": {"id": 559}, "organization": {"id": 144}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 517}, "organization": {"id": 188}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 584}, "organization": {"id": 194}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 556}, "organization": {"id": 628}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 523}, "organization": {"id": 675}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 81, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 526}, "organization": {"id": 650}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 294}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 457}, "assignee": {"id": 519}, "organization": {"id": 650}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 553}, "organization": {"id": 694}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 170, "owner": {"id": 205}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 452}, "assignee": {"id": 585}, "organization": {"id": 666}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": {"id": 189, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 419}, "assignee": {"id": 558}, "organization": {"id": 642}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 559}, "organization": {"id": 641}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 560}, "organization": {"id": 168}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 119, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 466}, "assignee": {"id": 536}, "organization": {"id": 119}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 506}, "organization": {"id": 193}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 512}, "organization": {"id": 108}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 525}, "organization": {"id": 144}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 160, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 574}, "organization": {"id": 160}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 593}, "organization": {"id": 140}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 190, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 556}, "organization": {"id": 190}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 522}, "organization": {"id": 626}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 510}, "organization": {"id": 631}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 559}, "organization": {"id": 647}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 7, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 290}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 550}, "organization": {"id": 677}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 561}, "organization": {"id": 615}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 116, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 595}, "organization": {"id": 640}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 244}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 504}, "organization": {"id": 631}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 535}, "organization": {"id": 645}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 566}, "organization": {"id": 131}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 556}, "organization": {"id": 139}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 565}, "organization": {"id": 113}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 548}, "organization": {"id": 120}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 561}, "organization": {"id": 129}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 535}, "organization": {"id": 171}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 571}, "organization": {"id": 158}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 550}, "organization": {"id": 129}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 127, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 546}, "organization": {"id": 676}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 101, "owner": {"id": 244}, "user": {"role": null}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 592}, "organization": {"id": 621}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 503}, "organization": {"id": 698}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 163, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"owner": {"id": 409}, "assignee": {"id": 581}, "organization": {"id": 691}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 540}, "organization": {"id": 656}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 562}, "organization": {"id": 659}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 579}, "organization": {"id": 618}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 586}, "organization": {"id": 659}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 562}, "organization": {"id": 107}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 559}, "organization": {"id": 125}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 502}, "organization": {"id": 110}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 595}, "organization": {"id": 165}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 539}, "organization": {"id": 194}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 99, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 508}, "organization": {"id": 169}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 557}, "organization": {"id": 167}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 539}, "organization": {"id": 148}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 77}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 547}, "organization": {"id": 652}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 175, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 525}, "organization": {"id": 651}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 16, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 527}, "organization": {"id": 612}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 16, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 587}, "organization": {"id": 632}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 530}, "organization": {"id": 600}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 566}, "organization": {"id": 600}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 14}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 565}, "organization": {"id": 615}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 542}, "organization": {"id": 659}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 518}, "organization": {"id": 111}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 481}, "assignee": {"id": 574}, "organization": {"id": 111}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 517}, "organization": {"id": 161}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 583}, "organization": {"id": 153}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 547}, "organization": {"id": 148}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 507}, "organization": {"id": 161}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 33}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 460}, "assignee": {"id": 527}, "organization": {"id": 185}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 597}, "organization": {"id": 160}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 586}, "organization": {"id": 692}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 595}, "organization": {"id": 629}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 278}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 529}, "organization": {"id": 691}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 552}, "organization": {"id": 680}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 538}, "organization": {"id": 648}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 583}, "organization": {"id": 684}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 586}, "organization": {"id": 656}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 289}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 544}, "organization": {"id": 619}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 480}, "assignee": {"id": 501}, "organization": {"id": 112}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 523}, "organization": {"id": 163}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 539}, "organization": {"id": 165}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 560}, "organization": {"id": 186}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 276}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 560}, "organization": {"id": 152}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 483}, "assignee": {"id": 588}, "organization": {"id": 147}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 574}, "organization": {"id": 171}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 563}, "organization": {"id": 128}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 523}, "organization": {"id": 666}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 569}, "organization": {"id": 656}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 473}, "assignee": {"id": 539}, "organization": {"id": 688}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 539}, "organization": {"id": 652}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 463}, "assignee": {"id": 504}, "organization": {"id": 658}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 265}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 571}, "organization": {"id": 622}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 594}, "organization": {"id": 605}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 589}, "organization": {"id": 642}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 598}, "organization": {"id": 102}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 597}, "organization": {"id": 116}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 474}, "assignee": {"id": 552}, "organization": {"id": 109}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 199, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 474}, "assignee": {"id": 510}, "organization": {"id": 199}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 545}, "organization": {"id": 110}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 552}, "organization": {"id": 129}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 510}, "organization": {"id": 185}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 428}, "assignee": {"id": 543}, "organization": {"id": 161}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 543}, "organization": {"id": 636}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 555}, "organization": {"id": 615}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 281}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 440}, "assignee": {"id": 571}, "organization": {"id": 649}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 533}, "organization": {"id": 621}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 480}, "assignee": {"id": 559}, "organization": {"id": 613}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 508}, "organization": {"id": 635}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 541}, "organization": {"id": 640}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 262}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 571}, "organization": {"id": 650}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 581}, "organization": {"id": 197}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 482}, "assignee": {"id": 566}, "organization": {"id": 156}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 590}, "organization": {"id": 181}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 159, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 404}, "assignee": {"id": 538}, "organization": {"id": 159}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 440}, "assignee": {"id": 514}, "organization": {"id": 173}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 584}, "organization": {"id": 106}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 589}, "organization": {"id": 187}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 592}, "organization": {"id": 187}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 286}, "user": {"role": null}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 557}, "organization": {"id": 698}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 501}, "organization": {"id": 667}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"owner": {"id": 426}, "assignee": {"id": 506}, "organization": {"id": 615}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 166, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"owner": {"id": 472}, "assignee": {"id": 564}, "organization": {"id": 647}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 590}, "organization": {"id": 639}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 565}, "organization": {"id": 646}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 204}, "user": {"role": null}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 550}, "organization": {"id": 684}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": {"id": 149, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"owner": {"id": 477}, "assignee": {"id": 549}, "organization": {"id": 623}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 175, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 516}, "organization": {"id": 175}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 538}, "organization": {"id": 163}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 562}, "organization": {"id": 167}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 91, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 597}, "organization": {"id": 121}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 273}, "user": {"role": null}}}, "resource": {"owner": {"id": 409}, "assignee": {"id": 580}, "organization": {"id": 156}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 504}, "organization": {"id": 194}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 113, "owner": {"id": 277}, "user": {"role": null}}}, "resource": {"owner": {"id": 479}, "assignee": {"id": 595}, "organization": {"id": 113}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 568}, "organization": {"id": 176}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 590}, "organization": {"id": 694}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 538}, "organization": {"id": 634}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 582}, "organization": {"id": 614}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 516}, "organization": {"id": 668}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 9, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 527}, "organization": {"id": 683}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 556}, "organization": {"id": 690}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 590}, "organization": {"id": 681}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 466}, "assignee": {"id": 542}, "organization": {"id": 672}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 525}, "organization": {"id": 130}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 566}, "organization": {"id": 157}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 482}, "assignee": {"id": 518}, "organization": {"id": 142}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 506}, "organization": {"id": 160}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 578}, "organization": {"id": 152}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 463}, "assignee": {"id": 544}, "organization": {"id": 102}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 563}, "organization": {"id": 164}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 138, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 565}, "organization": {"id": 138}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 539}, "organization": {"id": 636}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 563}, "organization": {"id": 613}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 567}, "organization": {"id": 690}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 553}, "organization": {"id": 638}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 548}, "organization": {"id": 678}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 531}, "organization": {"id": 625}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 529}, "organization": {"id": 678}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 539}, "organization": {"id": 632}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 123, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 472}, "assignee": {"id": 520}, "organization": {"id": 123}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 537}, "organization": {"id": 120}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 474}, "assignee": {"id": 564}, "organization": {"id": 171}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 552}, "organization": {"id": 100}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 576}, "organization": {"id": 133}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 473}, "assignee": {"id": 546}, "organization": {"id": 133}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 501}, "organization": {"id": 106}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 564}, "organization": {"id": 190}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 564}, "organization": {"id": 654}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 593}, "organization": {"id": 676}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 533}, "organization": {"id": 648}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 582}, "organization": {"id": 676}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 591}, "organization": {"id": 607}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 14, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 481}, "assignee": {"id": 533}, "organization": {"id": 611}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 454}, "assignee": {"id": 520}, "organization": {"id": 690}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 525}, "organization": {"id": 607}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 568}, "organization": {"id": 177}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 573}, "organization": {"id": 113}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "import:backup", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 580}, "organization": {"id": 112}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "create", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 440}, "assignee": {"id": 510}, "organization": {"id": 117}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 597}, "organization": {"id": 147}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 461}, "assignee": {"id": 591}, "organization": {"id": 170}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 483}, "assignee": {"id": 596}, "organization": {"id": 143}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 511}, "organization": {"id": 196}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 182, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 547}, "organization": {"id": 645}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 482}, "assignee": {"id": 581}, "organization": {"id": 614}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 556}, "organization": {"id": 671}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 182, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 590}, "organization": {"id": 687}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 409}, "assignee": {"id": 517}, "organization": {"id": 697}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 509}, "organization": {"id": 634}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 409}, "assignee": {"id": 557}, "organization": {"id": 674}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 577}, "organization": {"id": 613}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 292}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 551}, "organization": {"id": 104}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 553}, "organization": {"id": 104}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 174, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 598}, "organization": {"id": 174}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 93, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 492}, "assignee": {"id": 552}, "organization": {"id": 191}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 585}, "organization": {"id": 146}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 588}, "organization": {"id": 158}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 549}, "organization": {"id": 146}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 454}, "assignee": {"id": 588}, "organization": {"id": 104}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 14, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 214}, "user": {"role": null}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 524}, "organization": {"id": 651}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 545}, "organization": {"id": 645}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 583}, "organization": {"id": 618}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"owner": {"id": 440}, "assignee": {"id": 517}, "organization": {"id": 615}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 224}, "user": {"role": null}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 514}, "organization": {"id": 616}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"owner": {"id": 480}, "assignee": {"id": 566}, "organization": {"id": 634}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"owner": {"id": 472}, "assignee": {"id": 501}, "organization": {"id": 602}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 105, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 531}, "organization": {"id": 674}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 233}, "user": {"role": null}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 587}, "organization": {"id": 109}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 525}, "organization": {"id": 195}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 515}, "organization": {"id": 111}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 517}, "organization": {"id": 178}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 566}, "organization": {"id": 152}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 508}, "organization": {"id": 111}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 512}, "organization": {"id": 104}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"owner": {"id": 473}, "assignee": {"id": 513}, "organization": {"id": 144}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": {"id": 196, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 482}, "assignee": {"id": 512}, "organization": {"id": 678}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 129, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 552}, "organization": {"id": 622}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 434}, "assignee": {"id": 568}, "organization": {"id": 688}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 578}, "organization": {"id": 651}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 12, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 482}, "assignee": {"id": 566}, "organization": {"id": 663}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 581}, "organization": {"id": 605}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 544}, "organization": {"id": 606}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 554}, "organization": {"id": 692}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 509}, "organization": {"id": 194}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 76}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 566}, "organization": {"id": 166}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 571}, "organization": {"id": 182}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 504}, "organization": {"id": 146}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 511}, "organization": {"id": 165}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 567}, "organization": {"id": 182}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 452}, "assignee": {"id": 596}, "organization": {"id": 165}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 461}, "assignee": {"id": 581}, "organization": {"id": 128}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 514}, "organization": {"id": 685}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 404}, "assignee": {"id": 593}, "organization": {"id": 672}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 457}, "assignee": {"id": 541}, "organization": {"id": 620}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 152, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 543}, "organization": {"id": 690}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 505}, "organization": {"id": 676}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 513}, "organization": {"id": 699}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 551}, "organization": {"id": 655}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 510}, "organization": {"id": 641}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 594}, "organization": {"id": 145}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 598}, "organization": {"id": 192}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 586}, "organization": {"id": 185}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 597}, "organization": {"id": 198}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 267}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 588}, "organization": {"id": 160}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 434}, "assignee": {"id": 537}, "organization": {"id": 109}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 559}, "organization": {"id": 138}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 456}, "assignee": {"id": 537}, "organization": {"id": 146}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 514}, "organization": {"id": 660}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 426}, "assignee": {"id": 545}, "organization": {"id": 626}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 509}, "organization": {"id": 638}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 461}, "assignee": {"id": 563}, "organization": {"id": 635}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 599}, "organization": {"id": 608}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 534}, "organization": {"id": 676}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 549}, "organization": {"id": 668}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 518}, "organization": {"id": 641}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 463}, "assignee": {"id": 561}, "organization": {"id": 177}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 264}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 539}, "organization": {"id": 131}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 563}, "organization": {"id": 187}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 443}, "assignee": {"id": 586}, "organization": {"id": 102}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 12, "privilege": "worker"}, "organization": {"id": 129, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 501}, "organization": {"id": 129}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 556}, "organization": {"id": 165}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 245}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 508}, "organization": {"id": 167}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": {"id": 188, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 524}, "organization": {"id": 188}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 476}, "assignee": {"id": 503}, "organization": {"id": 662}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 424}, "assignee": {"id": 574}, "organization": {"id": 651}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 426}, "assignee": {"id": 597}, "organization": {"id": 668}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 521}, "organization": {"id": 601}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 518}, "organization": {"id": 641}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 460}, "assignee": {"id": 520}, "organization": {"id": 614}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 510}, "organization": {"id": 607}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 511}, "organization": {"id": 675}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 524}, "organization": {"id": 183}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 452}, "assignee": {"id": 536}, "organization": {"id": 192}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 549}, "organization": {"id": 113}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 539}, "organization": {"id": 170}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 434}, "assignee": {"id": 541}, "organization": {"id": 117}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 598}, "organization": {"id": 122}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 565}, "organization": {"id": 130}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 243}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 591}, "organization": {"id": 191}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 96, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 522}, "organization": {"id": 682}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 112, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 559}, "organization": {"id": 699}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 556}, "organization": {"id": 628}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 537}, "organization": {"id": 632}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 553}, "organization": {"id": 624}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 12, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 286}, "user": {"role": null}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 524}, "organization": {"id": 653}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 568}, "organization": {"id": 659}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 565}, "organization": {"id": 600}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 512}, "organization": {"id": 162}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 224}, "user": {"role": null}}}, "resource": {"owner": {"id": 479}, "assignee": {"id": 520}, "organization": {"id": 116}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 558}, "organization": {"id": 134}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"owner": {"id": 434}, "assignee": {"id": 582}, "organization": {"id": 178}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 195, "owner": {"id": 214}, "user": {"role": null}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 566}, "organization": {"id": 195}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 222}, "user": {"role": null}}}, "resource": {"owner": {"id": 424}, "assignee": {"id": 539}, "organization": {"id": 170}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 223}, "user": {"role": null}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 536}, "organization": {"id": 106}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"owner": {"id": 440}, "assignee": {"id": 521}, "organization": {"id": 167}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 434}, "assignee": {"id": 527}, "organization": {"id": 645}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 517}, "organization": {"id": 686}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 190, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 538}, "organization": {"id": 662}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 513}, "organization": {"id": 683}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 461}, "assignee": {"id": 548}, "organization": {"id": 650}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 505}, "organization": {"id": 606}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 549}, "organization": {"id": 647}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 38}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 507}, "organization": {"id": 618}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 548}, "organization": {"id": 130}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 574}, "organization": {"id": 103}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 580}, "organization": {"id": 185}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 118, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 538}, "organization": {"id": 118}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 473}, "assignee": {"id": 579}, "organization": {"id": 155}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 579}, "organization": {"id": 191}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 481}, "assignee": {"id": 548}, "organization": {"id": 121}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 20}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 485}, "assignee": {"id": 523}, "organization": {"id": 122}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 472}, "assignee": {"id": 596}, "organization": {"id": 677}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 282}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 586}, "organization": {"id": 653}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 590}, "organization": {"id": 695}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 227}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 596}, "organization": {"id": 657}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 510}, "organization": {"id": 658}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 500}, "organization": {"id": 620}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 176, "owner": {"id": 289}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 574}, "organization": {"id": 679}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 118, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 534}, "organization": {"id": 641}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 573}, "organization": {"id": 122}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 276}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 590}, "organization": {"id": 125}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 534}, "organization": {"id": 163}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 541}, "organization": {"id": 177}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 544}, "organization": {"id": 113}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 508}, "organization": {"id": 175}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 472}, "assignee": {"id": 515}, "organization": {"id": 100}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 547}, "organization": {"id": 123}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 508}, "organization": {"id": 691}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 524}, "organization": {"id": 677}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 238}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 507}, "organization": {"id": 674}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 245}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 593}, "organization": {"id": 629}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": {"id": 107, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 443}, "assignee": {"id": 519}, "organization": {"id": 635}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 569}, "organization": {"id": 631}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 587}, "organization": {"id": 663}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 556}, "organization": {"id": 654}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 154, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 460}, "assignee": {"id": 505}, "organization": {"id": 154}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 568}, "organization": {"id": 173}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 522}, "organization": {"id": 134}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 543}, "organization": {"id": 167}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 160, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 434}, "assignee": {"id": 578}, "organization": {"id": 160}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 525}, "organization": {"id": 110}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": {"id": 176, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 573}, "organization": {"id": 176}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 41, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 552}, "organization": {"id": 166}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 566}, "organization": {"id": 640}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 463}, "assignee": {"id": 529}, "organization": {"id": 617}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 178, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 481}, "assignee": {"id": 580}, "organization": {"id": 624}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 595}, "organization": {"id": 614}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 517}, "organization": {"id": 683}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 588}, "organization": {"id": 691}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 454}, "assignee": {"id": 547}, "organization": {"id": 696}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 549}, "organization": {"id": 679}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 572}, "organization": {"id": 111}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 583}, "organization": {"id": 167}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 593}, "organization": {"id": 151}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 524}, "organization": {"id": 180}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 558}, "organization": {"id": 100}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 118, "owner": {"id": 228}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 564}, "organization": {"id": 118}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 539}, "organization": {"id": 162}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 479}, "assignee": {"id": 561}, "organization": {"id": 159}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 564}, "organization": {"id": 684}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 547}, "organization": {"id": 660}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"owner": {"id": 472}, "assignee": {"id": 546}, "organization": {"id": 650}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 592}, "organization": {"id": 643}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 523}, "organization": {"id": 618}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 522}, "organization": {"id": 639}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 511}, "organization": {"id": 635}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 573}, "organization": {"id": 683}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"owner": {"id": 456}, "assignee": {"id": 546}, "organization": {"id": 111}, "user": {"num_resources": 0}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"owner": {"id": 461}, "assignee": {"id": 574}, "organization": {"id": 143}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 524}, "organization": {"id": 148}, "user": {"num_resources": 1}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 149, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 506}, "organization": {"id": 149}, "user": {"num_resources": 1}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 222}, "user": {"role": null}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 587}, "organization": {"id": 187}, "user": {"num_resources": 3}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"owner": {"id": 456}, "assignee": {"id": 567}, "organization": {"id": 114}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 575}, "organization": {"id": 128}, "user": {"num_resources": 10}}} +test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 587}, "organization": {"id": 113}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 18}, "assignee": {"id": 599}, "organization": {"id": 660}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": null}, "resource": {"id": 385, "owner": {"id": 21}, "assignee": {"id": 541}, "organization": {"id": 628}}} } -test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 68}, "assignee": {"id": 536}, "organization": {"id": 602}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": null}, "resource": {"id": 300, "owner": {"id": 32}, "assignee": {"id": 588}, "organization": {"id": 617}}} } -test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 63}, "assignee": {"id": 559}, "organization": {"id": 681}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": null}, "resource": {"id": 318, "owner": {"id": 17}, "assignee": {"id": 571}, "organization": {"id": 615}}} } -test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 66}, "assignee": {"id": 528}, "organization": {"id": 655}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": null}, "resource": {"id": 394, "owner": {"id": 7}, "assignee": {"id": 575}, "organization": {"id": 638}}} } -test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 99}, "assignee": {"id": 599}, "organization": {"id": 611}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": null}, "resource": {"id": 318, "owner": {"id": 68}, "assignee": {"id": 579}, "organization": {"id": 678}}} } -test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 22}, "assignee": {"id": 583}, "organization": {"id": 643}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": null}, "resource": {"id": 370, "owner": {"id": 473}, "assignee": {"id": 23}, "organization": {"id": 659}}} } -test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 16, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 16}, "assignee": {"id": 547}, "organization": {"id": 607}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": null}, "resource": {"id": 326, "owner": {"id": 489}, "assignee": {"id": 87}, "organization": {"id": 605}}} } -test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 26}, "assignee": {"id": 579}, "organization": {"id": 698}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": null}, "resource": {"id": 365, "owner": {"id": 402}, "assignee": {"id": 6}, "organization": {"id": 613}}} } -test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 62}, "assignee": {"id": 585}, "organization": {"id": 699}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": null}, "resource": {"id": 339, "owner": {"id": 410}, "assignee": {"id": 39}, "organization": {"id": 661}}} } -test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 45, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 45}, "assignee": {"id": 522}, "organization": {"id": 694}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": null}, "resource": {"id": 349, "owner": {"id": 456}, "assignee": {"id": 80}, "organization": {"id": 602}}} } -test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 59}, "assignee": {"id": 591}, "organization": {"id": 616}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": null}, "resource": {"id": 381, "owner": {"id": 470}, "assignee": {"id": 588}, "organization": {"id": 699}}} } -test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 19}, "assignee": {"id": 514}, "organization": {"id": 690}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": null}, "resource": {"id": 306, "owner": {"id": 436}, "assignee": {"id": 504}, "organization": {"id": 673}}} } -test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 76}, "assignee": {"id": 543}, "organization": {"id": 610}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 90, "privilege": "user"}, "organization": null}, "resource": {"id": 314, "owner": {"id": 486}, "assignee": {"id": 503}, "organization": {"id": 648}}} } -test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 22}, "assignee": {"id": 517}, "organization": {"id": 632}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": null}, "resource": {"id": 324, "owner": {"id": 436}, "assignee": {"id": 591}, "organization": {"id": 680}}} } -test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 69}, "assignee": {"id": 529}, "organization": {"id": 621}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": null}, "resource": {"id": 353, "owner": {"id": 439}, "assignee": {"id": 553}, "organization": {"id": 619}}} } -test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 57}, "assignee": {"id": 576}, "organization": {"id": 625}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 397, "owner": {"id": 53}, "assignee": {"id": 571}, "organization": {"id": 657}}} } -test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 12}, "assignee": {"id": 529}, "organization": {"id": 666}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 82}, "assignee": {"id": 584}, "organization": {"id": 168}}} } -test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 12}, "assignee": {"id": 570}, "organization": {"id": 699}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 123, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"id": 331, "owner": {"id": 46}, "assignee": {"id": 516}, "organization": {"id": 617}}} } -test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 16}, "assignee": {"id": 506}, "organization": {"id": 667}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 80}, "assignee": {"id": 544}, "organization": {"id": 195}}} } -test_scope_CREATE_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 61}, "assignee": {"id": 576}, "organization": {"id": 661}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 216}, "user": {"role": "supervisor"}}}, "resource": {"id": 323, "owner": {"id": 56}, "assignee": {"id": 557}, "organization": {"id": 626}}} } -test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 498}, "assignee": {"id": 56}, "organization": {"id": 644}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 102, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"id": 314, "owner": {"id": 77}, "assignee": {"id": 550}, "organization": {"id": 102}}} } -test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 458}, "assignee": {"id": 79}, "organization": {"id": 618}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 54}, "assignee": {"id": 564}, "organization": {"id": 611}}} } -test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 473}, "assignee": {"id": 41}, "organization": {"id": 642}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 20}, "assignee": {"id": 557}, "organization": {"id": 104}}} } -test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 403}, "assignee": {"id": 75}, "organization": {"id": 662}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 22}, "assignee": {"id": 532}, "organization": {"id": 655}}} } -test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 460}, "assignee": {"id": 10}, "organization": {"id": 691}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 160, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 371, "owner": {"id": 28}, "assignee": {"id": 545}, "organization": {"id": 160}}} } -test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 471}, "assignee": {"id": 34}, "organization": {"id": 639}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 382, "owner": {"id": 6}, "assignee": {"id": 540}, "organization": {"id": 648}}} } -test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 408}, "assignee": {"id": 67}, "organization": {"id": 603}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 395, "owner": {"id": 19}, "assignee": {"id": 527}, "organization": {"id": 164}}} } -test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 486}, "assignee": {"id": 55}, "organization": {"id": 668}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"id": 346, "owner": {"id": 55}, "assignee": {"id": 574}, "organization": {"id": 632}}} } -test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 411}, "assignee": {"id": 85}, "organization": {"id": 600}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 174, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 11}, "assignee": {"id": 594}, "organization": {"id": 174}}} } -test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 432}, "assignee": {"id": 25}, "organization": {"id": 694}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"id": 362, "owner": {"id": 26}, "assignee": {"id": 574}, "organization": {"id": 653}}} } -test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 481}, "assignee": {"id": 66}, "organization": {"id": 654}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 94}, "assignee": {"id": 575}, "organization": {"id": 160}}} } -test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 487}, "assignee": {"id": 53}, "organization": {"id": 608}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 46}, "assignee": {"id": 571}, "organization": {"id": 602}}} } -test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 410}, "assignee": {"id": 76}, "organization": {"id": 633}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 64, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 300, "owner": {"id": 64}, "assignee": {"id": 508}, "organization": {"id": 135}}} } -test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 477}, "assignee": {"id": 29}, "organization": {"id": 638}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 224}, "user": {"role": null}}}, "resource": {"id": 311, "owner": {"id": 74}, "assignee": {"id": 554}, "organization": {"id": 608}}} } -test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 409}, "assignee": {"id": 28}, "organization": {"id": 640}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"id": 326, "owner": {"id": 46}, "assignee": {"id": 576}, "organization": {"id": 146}}} } -test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 410}, "assignee": {"id": 46}, "organization": {"id": 603}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 357, "owner": {"id": 24}, "assignee": {"id": 531}, "organization": {"id": 618}}} } -test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 421}, "assignee": {"id": 48}, "organization": {"id": 618}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 313, "owner": {"id": 53}, "assignee": {"id": 542}, "organization": {"id": 167}}} } -test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 495}, "assignee": {"id": 20}, "organization": {"id": 690}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 55}, "assignee": {"id": 593}, "organization": {"id": 604}}} } -test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 457}, "assignee": {"id": 47}, "organization": {"id": 605}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"id": 368, "owner": {"id": 72}, "assignee": {"id": 501}, "organization": {"id": 115}}} } -test_scope_CREATE_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 438}, "assignee": {"id": 35}, "organization": {"id": 680}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 28}, "assignee": {"id": 565}, "organization": {"id": 637}}} } -test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 449}, "assignee": {"id": 565}, "organization": {"id": 614}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 128, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 65}, "assignee": {"id": 503}, "organization": {"id": 128}}} } -test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 415}, "assignee": {"id": 590}, "organization": {"id": 648}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 292}, "user": {"role": "worker"}}}, "resource": {"id": 326, "owner": {"id": 16}, "assignee": {"id": 585}, "organization": {"id": 672}}} } -test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 433}, "assignee": {"id": 523}, "organization": {"id": 659}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 94}, "assignee": {"id": 564}, "organization": {"id": 146}}} } -test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 435}, "assignee": {"id": 529}, "organization": {"id": 651}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 21}, "assignee": {"id": 535}, "organization": {"id": 663}}} } -test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 468}, "assignee": {"id": 557}, "organization": {"id": 643}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 8}, "assignee": {"id": 557}, "organization": {"id": 102}}} } -test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 499}, "assignee": {"id": 515}, "organization": {"id": 600}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 69}, "assignee": {"id": 532}, "organization": {"id": 679}}} } -test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 441}, "assignee": {"id": 542}, "organization": {"id": 680}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 309, "owner": {"id": 73}, "assignee": {"id": 590}, "organization": {"id": 184}}} } -test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 455}, "assignee": {"id": 507}, "organization": {"id": 618}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 12, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 12}, "assignee": {"id": 547}, "organization": {"id": 614}}} } -test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 449}, "assignee": {"id": 554}, "organization": {"id": 616}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 290}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 38}, "assignee": {"id": 561}, "organization": {"id": 166}}} } -test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 497}, "assignee": {"id": 503}, "organization": {"id": 677}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"id": 325, "owner": {"id": 45}, "assignee": {"id": 511}, "organization": {"id": 685}}} } -test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 81, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 488}, "assignee": {"id": 525}, "organization": {"id": 657}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"id": 322, "owner": {"id": 4}, "assignee": {"id": 510}, "organization": {"id": 170}}} } -test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 403}, "assignee": {"id": 594}, "organization": {"id": 610}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"id": 373, "owner": {"id": 28}, "assignee": {"id": 521}, "organization": {"id": 608}}} } -test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 465}, "assignee": {"id": 520}, "organization": {"id": 612}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 12, "privilege": "worker"}, "organization": {"id": 103, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 12}, "assignee": {"id": 591}, "organization": {"id": 103}}} } -test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 430}, "assignee": {"id": 566}, "organization": {"id": 694}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 199, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 386, "owner": {"id": 95}, "assignee": {"id": 519}, "organization": {"id": 658}}} } -test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 470}, "assignee": {"id": 529}, "organization": {"id": 607}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": {"id": 107, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 36}, "assignee": {"id": 545}, "organization": {"id": 107}}} } -test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 469}, "assignee": {"id": 510}, "organization": {"id": 664}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 3}, "assignee": {"id": 543}, "organization": {"id": 688}}} } -test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 430}, "assignee": {"id": 599}, "organization": {"id": 608}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"id": 373, "owner": {"id": 68}, "assignee": {"id": 546}, "organization": {"id": 185}}} } -test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 452}, "assignee": {"id": 527}, "organization": {"id": 602}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 223}, "user": {"role": "maintainer"}}}, "resource": {"id": 397, "owner": {"id": 5}, "assignee": {"id": 508}, "organization": {"id": 688}}} } -test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 469}, "assignee": {"id": 506}, "organization": {"id": 610}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 190, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 45}, "assignee": {"id": 513}, "organization": {"id": 190}}} } -test_scope_CREATE_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 401}, "assignee": {"id": 569}, "organization": {"id": 698}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 328, "owner": {"id": 70}, "assignee": {"id": 505}, "organization": {"id": 695}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 43}, "assignee": {"id": 571}, "organization": {"id": 657}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 44}, "assignee": {"id": 593}, "organization": {"id": 135}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 16}, "assignee": {"id": 573}, "organization": {"id": 605}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 98}, "assignee": {"id": 567}, "organization": {"id": 616}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 42}, "assignee": {"id": 583}, "organization": {"id": 672}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"id": 328, "owner": {"id": 43}, "assignee": {"id": 555}, "organization": {"id": 177}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 19}, "assignee": {"id": 581}, "organization": {"id": 696}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 30}, "assignee": {"id": 501}, "organization": {"id": 696}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 17}, "assignee": {"id": 577}, "organization": {"id": 152}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"id": 393, "owner": {"id": 98}, "assignee": {"id": 549}, "organization": {"id": 109}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 79}, "assignee": {"id": 544}, "organization": {"id": 139}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 406}, "assignee": {"id": 5}, "organization": {"id": 667}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 82}, "assignee": {"id": 531}, "organization": {"id": 186}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 363, "owner": {"id": 438}, "assignee": {"id": 78}, "organization": {"id": 136}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 39}, "assignee": {"id": 511}, "organization": {"id": 185}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 423}, "assignee": {"id": 40}, "organization": {"id": 643}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 242}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 70}, "assignee": {"id": 578}, "organization": {"id": 622}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 428}, "assignee": {"id": 10}, "organization": {"id": 150}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 96}, "assignee": {"id": 506}, "organization": {"id": 610}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 444}, "assignee": {"id": 28}, "organization": {"id": 632}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 123, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 51}, "assignee": {"id": 532}, "organization": {"id": 630}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 346, "owner": {"id": 412}, "assignee": {"id": 55}, "organization": {"id": 199}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 62}, "assignee": {"id": 519}, "organization": {"id": 683}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 224}, "user": {"role": "worker"}}}, "resource": {"id": 377, "owner": {"id": 438}, "assignee": {"id": 62}, "organization": {"id": 605}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 26}, "assignee": {"id": 540}, "organization": {"id": 145}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 402}, "assignee": {"id": 56}, "organization": {"id": 121}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 49}, "assignee": {"id": 564}, "organization": {"id": 153}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 429}, "assignee": {"id": 92}, "organization": {"id": 604}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 127, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 34}, "assignee": {"id": 575}, "organization": {"id": 127}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 420}, "assignee": {"id": 78}, "organization": {"id": 145}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 156, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 57}, "assignee": {"id": 575}, "organization": {"id": 156}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 199, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"id": 334, "owner": {"id": 425}, "assignee": {"id": 1}, "organization": {"id": 699}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 82}, "assignee": {"id": 530}, "organization": {"id": 682}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 485}, "assignee": {"id": 53}, "organization": {"id": 192}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 43}, "assignee": {"id": 502}, "organization": {"id": 611}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 64, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 425}, "assignee": {"id": 64}, "organization": {"id": 696}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 172, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 64}, "assignee": {"id": 526}, "organization": {"id": 654}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 349, "owner": {"id": 456}, "assignee": {"id": 34}, "organization": {"id": 111}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 0}, "assignee": {"id": 517}, "organization": {"id": 685}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"id": 354, "owner": {"id": 472}, "assignee": {"id": 10}, "organization": {"id": 689}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 8}, "assignee": {"id": 551}, "organization": {"id": 125}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 242}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 462}, "assignee": {"id": 45}, "organization": {"id": 122}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 58}, "assignee": {"id": 561}, "organization": {"id": 121}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 209}, "user": {"role": "worker"}}}, "resource": {"id": 357, "owner": {"id": 472}, "assignee": {"id": 18}, "organization": {"id": 674}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 45}, "assignee": {"id": 519}, "organization": {"id": 138}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"id": 398, "owner": {"id": 478}, "assignee": {"id": 5}, "organization": {"id": 119}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 4}, "assignee": {"id": 509}, "organization": {"id": 183}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 355, "owner": {"id": 405}, "assignee": {"id": 9}, "organization": {"id": 698}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 202}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 73}, "assignee": {"id": 521}, "organization": {"id": 650}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 166, "owner": {"id": 271}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 419}, "assignee": {"id": 29}, "organization": {"id": 166}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 66}, "assignee": {"id": 580}, "organization": {"id": 602}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"id": 336, "owner": {"id": 497}, "assignee": {"id": 23}, "organization": {"id": 600}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 64}, "assignee": {"id": 502}, "organization": {"id": 619}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 138, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 413}, "assignee": {"id": 67}, "organization": {"id": 138}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 84}, "assignee": {"id": 560}, "organization": {"id": 673}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 456}, "assignee": {"id": 51}, "organization": {"id": 646}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 123, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 84}, "assignee": {"id": 511}, "organization": {"id": 123}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 455}, "assignee": {"id": 47}, "organization": {"id": 160}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 30}, "assignee": {"id": 515}, "organization": {"id": 147}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"id": 376, "owner": {"id": 485}, "assignee": {"id": 18}, "organization": {"id": 609}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 103, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 2}, "assignee": {"id": 568}, "organization": {"id": 103}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 419}, "assignee": {"id": 3}, "organization": {"id": 115}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 72}, "assignee": {"id": 518}, "organization": {"id": 104}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 14, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 425}, "assignee": {"id": 14}, "organization": {"id": 697}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 7, "privilege": "admin"}, "organization": {"id": 172, "owner": {"id": 266}, "user": {"role": null}}}, "resource": {"owner": {"id": 7}, "assignee": {"id": 536}, "organization": {"id": 693}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 468}, "assignee": {"id": 15}, "organization": {"id": 164}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"owner": {"id": 73}, "assignee": {"id": 547}, "organization": {"id": 667}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 334, "owner": {"id": 420}, "assignee": {"id": 17}, "organization": {"id": 625}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 233}, "user": {"role": null}}}, "resource": {"owner": {"id": 3}, "assignee": {"id": 565}, "organization": {"id": 611}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 436}, "assignee": {"id": 0}, "organization": {"id": 147}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"owner": {"id": 66}, "assignee": {"id": 576}, "organization": {"id": 667}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 51, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 347, "owner": {"id": 460}, "assignee": {"id": 51}, "organization": {"id": 646}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"owner": {"id": 11}, "assignee": {"id": 549}, "organization": {"id": 168}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 472}, "assignee": {"id": 52}, "organization": {"id": 145}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"owner": {"id": 38}, "assignee": {"id": 596}, "organization": {"id": 168}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 401}, "assignee": {"id": 66}, "organization": {"id": 611}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"owner": {"id": 33}, "assignee": {"id": 515}, "organization": {"id": 187}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 311, "owner": {"id": 470}, "assignee": {"id": 84}, "organization": {"id": 191}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 103, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"owner": {"id": 8}, "assignee": {"id": 507}, "organization": {"id": 103}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 96, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 415}, "assignee": {"id": 96}, "organization": {"id": 611}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 70}, "assignee": {"id": 535}, "organization": {"id": 630}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"id": 352, "owner": {"id": 458}, "assignee": {"id": 99}, "organization": {"id": 157}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 76}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 76}, "assignee": {"id": 565}, "organization": {"id": 670}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 434}, "assignee": {"id": 50}, "organization": {"id": 678}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 35}, "assignee": {"id": 550}, "organization": {"id": 680}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 150, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"id": 355, "owner": {"id": 400}, "assignee": {"id": 22}, "organization": {"id": 150}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 12}, "assignee": {"id": 556}, "organization": {"id": 641}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"id": 395, "owner": {"id": 477}, "assignee": {"id": 71}, "organization": {"id": 603}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 127, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 24}, "assignee": {"id": 551}, "organization": {"id": 127}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 493}, "assignee": {"id": 84}, "organization": {"id": 127}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 94}, "assignee": {"id": 584}, "organization": {"id": 122}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 311, "owner": {"id": 484}, "assignee": {"id": 67}, "organization": {"id": 681}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 18}, "assignee": {"id": 504}, "organization": {"id": 118}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 487}, "assignee": {"id": 99}, "organization": {"id": 147}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 51}, "assignee": {"id": 559}, "organization": {"id": 148}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"id": 377, "owner": {"id": 451}, "assignee": {"id": 63}, "organization": {"id": 672}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 31}, "assignee": {"id": 573}, "organization": {"id": 641}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 142, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 499}, "assignee": {"id": 65}, "organization": {"id": 142}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 16, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 16}, "assignee": {"id": 537}, "organization": {"id": 674}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 402}, "assignee": {"id": 82}, "organization": {"id": 671}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 90}, "assignee": {"id": 521}, "organization": {"id": 624}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 156, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 364, "owner": {"id": 460}, "assignee": {"id": 56}, "organization": {"id": 156}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 91, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 290}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 91}, "assignee": {"id": 576}, "organization": {"id": 678}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"id": 324, "owner": {"id": 488}, "assignee": {"id": 40}, "organization": {"id": 612}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 19}, "assignee": {"id": 516}, "organization": {"id": 141}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 465}, "assignee": {"id": 89}, "organization": {"id": 141}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 149, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 63}, "assignee": {"id": 590}, "organization": {"id": 149}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 487}, "assignee": {"id": 69}, "organization": {"id": 687}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 75}, "assignee": {"id": 582}, "organization": {"id": 116}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 484}, "assignee": {"id": 74}, "organization": {"id": 138}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 282}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 63}, "assignee": {"id": 599}, "organization": {"id": 191}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 460}, "assignee": {"id": 560}, "organization": {"id": 627}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 1}, "assignee": {"id": 548}, "organization": {"id": 648}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"id": 303, "owner": {"id": 434}, "assignee": {"id": 501}, "organization": {"id": 120}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 38}, "assignee": {"id": 507}, "organization": {"id": 654}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"id": 325, "owner": {"id": 435}, "assignee": {"id": 533}, "organization": {"id": 656}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 45}, "assignee": {"id": 590}, "organization": {"id": 619}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 458}, "assignee": {"id": 556}, "organization": {"id": 118}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 29}, "assignee": {"id": 555}, "organization": {"id": 660}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 218}, "user": {"role": "supervisor"}}}, "resource": {"id": 334, "owner": {"id": 465}, "assignee": {"id": 534}, "organization": {"id": 613}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 49}, "assignee": {"id": 557}, "organization": {"id": 151}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 404}, "assignee": {"id": 506}, "organization": {"id": 145}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 4}, "assignee": {"id": 570}, "organization": {"id": 144}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 422}, "assignee": {"id": 558}, "organization": {"id": 686}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 63}, "assignee": {"id": 579}, "organization": {"id": 193}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 99, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 466}, "assignee": {"id": 597}, "organization": {"id": 193}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 99}, "assignee": {"id": 527}, "organization": {"id": 156}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 349, "owner": {"id": 422}, "assignee": {"id": 562}, "organization": {"id": 678}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 12}, "assignee": {"id": 501}, "organization": {"id": 656}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 472}, "assignee": {"id": 537}, "organization": {"id": 186}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 32}, "assignee": {"id": 571}, "organization": {"id": 690}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 374, "owner": {"id": 492}, "assignee": {"id": 576}, "organization": {"id": 689}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 12}, "assignee": {"id": 543}, "organization": {"id": 605}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"id": 318, "owner": {"id": 439}, "assignee": {"id": 514}, "organization": {"id": 179}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 96}, "assignee": {"id": 517}, "organization": {"id": 646}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 421}, "assignee": {"id": 565}, "organization": {"id": 687}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 36}, "assignee": {"id": 596}, "organization": {"id": 116}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 463}, "assignee": {"id": 594}, "organization": {"id": 135}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 77}, "assignee": {"id": 545}, "organization": {"id": 125}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"id": 378, "owner": {"id": 404}, "assignee": {"id": 528}, "organization": {"id": 679}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 58}, "assignee": {"id": 576}, "organization": {"id": 171}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 478}, "assignee": {"id": 536}, "organization": {"id": 114}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 94}, "assignee": {"id": 574}, "organization": {"id": 157}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 228}, "user": {"role": "worker"}}}, "resource": {"id": 367, "owner": {"id": 423}, "assignee": {"id": 583}, "organization": {"id": 619}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"owner": {"id": 41}, "assignee": {"id": 566}, "organization": {"id": 607}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"id": 305, "owner": {"id": 456}, "assignee": {"id": 552}, "organization": {"id": 177}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"owner": {"id": 12}, "assignee": {"id": 535}, "organization": {"id": 635}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 359, "owner": {"id": 431}, "assignee": {"id": 527}, "organization": {"id": 663}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"owner": {"id": 30}, "assignee": {"id": 565}, "organization": {"id": 627}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 424}, "assignee": {"id": 575}, "organization": {"id": 144}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"owner": {"id": 44}, "assignee": {"id": 590}, "organization": {"id": 607}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 475}, "assignee": {"id": 535}, "organization": {"id": 674}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"owner": {"id": 65}, "assignee": {"id": 596}, "organization": {"id": 168}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 81, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 361, "owner": {"id": 449}, "assignee": {"id": 531}, "organization": {"id": 106}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"owner": {"id": 51}, "assignee": {"id": 577}, "organization": {"id": 160}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 393, "owner": {"id": 406}, "assignee": {"id": 558}, "organization": {"id": 670}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 244}, "user": {"role": null}}}, "resource": {"owner": {"id": 23}, "assignee": {"id": 544}, "organization": {"id": 121}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"id": 334, "owner": {"id": 491}, "assignee": {"id": 537}, "organization": {"id": 147}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"owner": {"id": 84}, "assignee": {"id": 515}, "organization": {"id": 184}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 474}, "assignee": {"id": 577}, "organization": {"id": 624}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 145, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 43}, "assignee": {"id": 564}, "organization": {"id": 658}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 464}, "assignee": {"id": 599}, "organization": {"id": 112}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 78}, "assignee": {"id": 596}, "organization": {"id": 677}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 105, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 462}, "assignee": {"id": 585}, "organization": {"id": 697}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 78}, "assignee": {"id": 510}, "organization": {"id": 664}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 309, "owner": {"id": 407}, "assignee": {"id": 533}, "organization": {"id": 190}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 96}, "assignee": {"id": 521}, "organization": {"id": 627}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 478}, "assignee": {"id": 518}, "organization": {"id": 614}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 71}, "assignee": {"id": 522}, "organization": {"id": 185}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 418}, "assignee": {"id": 564}, "organization": {"id": 158}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 93, "privilege": "user"}, "organization": {"id": 105, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 93}, "assignee": {"id": 554}, "organization": {"id": 105}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 28}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 462}, "assignee": {"id": 532}, "organization": {"id": 623}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 36}, "assignee": {"id": 558}, "organization": {"id": 135}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"id": 371, "owner": {"id": 489}, "assignee": {"id": 505}, "organization": {"id": 198}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 50}, "assignee": {"id": 506}, "organization": {"id": 152}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 334, "owner": {"id": 427}, "assignee": {"id": 548}, "organization": {"id": 618}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 15}, "assignee": {"id": 530}, "organization": {"id": 644}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 349, "owner": {"id": 420}, "assignee": {"id": 504}, "organization": {"id": 179}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 76}, "assignee": {"id": 546}, "organization": {"id": 642}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 483}, "assignee": {"id": 523}, "organization": {"id": 649}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 267}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 35}, "assignee": {"id": 581}, "organization": {"id": 655}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 51, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"id": 322, "owner": {"id": 488}, "assignee": {"id": 548}, "organization": {"id": 162}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 82}, "assignee": {"id": 584}, "organization": {"id": 634}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 199, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"id": 317, "owner": {"id": 474}, "assignee": {"id": 544}, "organization": {"id": 650}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 15}, "assignee": {"id": 504}, "organization": {"id": 109}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 325, "owner": {"id": 459}, "assignee": {"id": 549}, "organization": {"id": 116}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 9, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 9}, "assignee": {"id": 514}, "organization": {"id": 101}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 336, "owner": {"id": 471}, "assignee": {"id": 573}, "organization": {"id": 682}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 73}, "assignee": {"id": 571}, "organization": {"id": 136}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": {"id": 107, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 414}, "assignee": {"id": 582}, "organization": {"id": 107}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 55}, "assignee": {"id": 503}, "organization": {"id": 153}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 352, "owner": {"id": 486}, "assignee": {"id": 552}, "organization": {"id": 666}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 10}, "assignee": {"id": 502}, "organization": {"id": 679}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"id": 381, "owner": {"id": 462}, "assignee": {"id": 521}, "organization": {"id": 164}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 53}, "assignee": {"id": 550}, "organization": {"id": 636}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 227}, "user": {"role": "maintainer"}}}, "resource": {"id": 376, "owner": {"id": 403}, "assignee": {"id": 550}, "organization": {"id": 648}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 25}, "assignee": {"id": 546}, "organization": {"id": 682}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 498}, "assignee": {"id": 598}, "organization": {"id": 179}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 149, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 55}, "assignee": {"id": 513}, "organization": {"id": 655}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 325, "owner": {"id": 486}, "assignee": {"id": 574}, "organization": {"id": 626}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 131, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 73}, "assignee": {"id": 580}, "organization": {"id": 131}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 482}, "assignee": {"id": 592}, "organization": {"id": 169}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 10}, "assignee": {"id": 527}, "organization": {"id": 143}, "user": {"num_resources": 1}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 324, "owner": {"id": 458}, "assignee": {"id": 546}, "organization": {"id": 626}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 3}, "assignee": {"id": 590}, "organization": {"id": 161}, "user": {"num_resources": 3}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"id": 305, "owner": {"id": 441}, "assignee": {"id": 538}, "organization": {"id": 179}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 38}, "assignee": {"id": 565}, "organization": {"id": 186}, "user": {"num_resources": 10}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 380, "owner": {"id": 451}, "assignee": {"id": 508}, "organization": {"id": 641}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 96}, "assignee": {"id": 520}, "organization": {"id": 645}, "user": {"num_resources": 0}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"id": 336, "owner": {"id": 400}, "assignee": {"id": 582}, "organization": {"id": 131}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 209}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 30}, "assignee": {"id": 568}, "organization": {"id": 603}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": null}, "resource": {"id": 345, "owner": {"id": 45}, "assignee": {"id": 533}, "organization": {"id": 632}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 149, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 57}, "assignee": {"id": 518}, "organization": {"id": 671}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": null}, "resource": {"id": 382, "owner": {"id": 14}, "assignee": {"id": 599}, "organization": {"id": 638}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 59}, "assignee": {"id": 506}, "organization": {"id": 645}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": null}, "resource": {"id": 320, "owner": {"id": 53}, "assignee": {"id": 588}, "organization": {"id": 658}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 87}, "assignee": {"id": 531}, "organization": {"id": 194}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": null}, "resource": {"id": 357, "owner": {"id": 57}, "assignee": {"id": 537}, "organization": {"id": 685}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 122, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 13}, "assignee": {"id": 530}, "organization": {"id": 122}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": null}, "resource": {"id": 331, "owner": {"id": 44}, "assignee": {"id": 565}, "organization": {"id": 666}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 72}, "assignee": {"id": 546}, "organization": {"id": 112}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": null}, "resource": {"id": 396, "owner": {"id": 427}, "assignee": {"id": 43}, "organization": {"id": 668}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 29}, "assignee": {"id": 566}, "organization": {"id": 176}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": null}, "resource": {"id": 382, "owner": {"id": 484}, "assignee": {"id": 33}, "organization": {"id": 665}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 81, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"owner": {"id": 81}, "assignee": {"id": 513}, "organization": {"id": 632}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": null}, "resource": {"id": 358, "owner": {"id": 422}, "assignee": {"id": 42}, "organization": {"id": 636}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 14, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"owner": {"id": 14}, "assignee": {"id": 580}, "organization": {"id": 645}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": null}, "resource": {"id": 377, "owner": {"id": 497}, "assignee": {"id": 83}, "organization": {"id": 637}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"owner": {"id": 39}, "assignee": {"id": 514}, "organization": {"id": 678}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": null}, "resource": {"id": 343, "owner": {"id": 448}, "assignee": {"id": 54}, "organization": {"id": 649}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"owner": {"id": 27}, "assignee": {"id": 516}, "organization": {"id": 682}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": null}, "resource": {"id": 301, "owner": {"id": 434}, "assignee": {"id": 543}, "organization": {"id": 607}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"owner": {"id": 64}, "assignee": {"id": 500}, "organization": {"id": 109}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": null}, "resource": {"id": 321, "owner": {"id": 451}, "assignee": {"id": 503}, "organization": {"id": 630}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 150, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"owner": {"id": 61}, "assignee": {"id": 545}, "organization": {"id": 150}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": null}, "resource": {"id": 304, "owner": {"id": 472}, "assignee": {"id": 581}, "organization": {"id": 677}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"owner": {"id": 18}, "assignee": {"id": 541}, "organization": {"id": 170}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": null}, "resource": {"id": 322, "owner": {"id": 427}, "assignee": {"id": 527}, "organization": {"id": 676}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"owner": {"id": 70}, "assignee": {"id": 551}, "organization": {"id": 125}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": null}, "resource": {"id": 327, "owner": {"id": 492}, "assignee": {"id": 505}, "organization": {"id": 654}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 71}, "assignee": {"id": 549}, "organization": {"id": 639}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 343, "owner": {"id": 11}, "assignee": {"id": 581}, "organization": {"id": 609}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 97}, "assignee": {"id": 571}, "organization": {"id": 651}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 307, "owner": {"id": 41}, "assignee": {"id": 517}, "organization": {"id": 111}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 97}, "assignee": {"id": 590}, "organization": {"id": 676}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 172, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 330, "owner": {"id": 79}, "assignee": {"id": 533}, "organization": {"id": 618}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 62}, "assignee": {"id": 544}, "organization": {"id": 631}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 346, "owner": {"id": 5}, "assignee": {"id": 563}, "organization": {"id": 131}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 51, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 51}, "assignee": {"id": 518}, "organization": {"id": 120}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 53}, "assignee": {"id": 565}, "organization": {"id": 697}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 16}, "assignee": {"id": 503}, "organization": {"id": 174}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 322, "owner": {"id": 44}, "assignee": {"id": 584}, "organization": {"id": 128}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 96, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 96}, "assignee": {"id": 504}, "organization": {"id": 172}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"id": 335, "owner": {"id": 8}, "assignee": {"id": 575}, "organization": {"id": 645}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 37}, "assignee": {"id": 505}, "organization": {"id": 165}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"id": 356, "owner": {"id": 73}, "assignee": {"id": 589}, "organization": {"id": 152}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 52}, "assignee": {"id": 544}, "organization": {"id": 678}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 270}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 14}, "assignee": {"id": 594}, "organization": {"id": 664}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 141, "owner": {"id": 281}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 58}, "assignee": {"id": 591}, "organization": {"id": 630}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 39}, "assignee": {"id": 533}, "organization": {"id": 113}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 0}, "assignee": {"id": 517}, "organization": {"id": 679}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 349, "owner": {"id": 90}, "assignee": {"id": 510}, "organization": {"id": 607}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 29}, "assignee": {"id": 598}, "organization": {"id": 628}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 175, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 371, "owner": {"id": 65}, "assignee": {"id": 557}, "organization": {"id": 175}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 77}, "assignee": {"id": 503}, "organization": {"id": 139}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 300, "owner": {"id": 62}, "assignee": {"id": 586}, "organization": {"id": 646}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 83}, "assignee": {"id": 538}, "organization": {"id": 114}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 73}, "assignee": {"id": 575}, "organization": {"id": 163}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 97}, "assignee": {"id": 591}, "organization": {"id": 158}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 149, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 36}, "assignee": {"id": 587}, "organization": {"id": 609}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 29}, "assignee": {"id": 528}, "organization": {"id": 119}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 265}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 55}, "assignee": {"id": 531}, "organization": {"id": 153}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 97}, "assignee": {"id": 570}, "organization": {"id": 607}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"id": 341, "owner": {"id": 66}, "assignee": {"id": 530}, "organization": {"id": 638}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 208}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 86}, "assignee": {"id": 520}, "organization": {"id": 608}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"id": 336, "owner": {"id": 32}, "assignee": {"id": 511}, "organization": {"id": 157}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 56}, "assignee": {"id": 561}, "organization": {"id": 620}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 204}, "user": {"role": null}}}, "resource": {"id": 382, "owner": {"id": 75}, "assignee": {"id": 595}, "organization": {"id": 676}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 17}, "assignee": {"id": 500}, "organization": {"id": 657}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 349, "owner": {"id": 48}, "assignee": {"id": 576}, "organization": {"id": 102}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 66}, "assignee": {"id": 570}, "organization": {"id": 146}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 182, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 373, "owner": {"id": 73}, "assignee": {"id": 534}, "organization": {"id": 661}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 25, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 25}, "assignee": {"id": 504}, "organization": {"id": 153}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"id": 380, "owner": {"id": 87}, "assignee": {"id": 529}, "organization": {"id": 143}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 141, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 78}, "assignee": {"id": 567}, "organization": {"id": 141}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"id": 364, "owner": {"id": 53}, "assignee": {"id": 532}, "organization": {"id": 697}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 61}, "assignee": {"id": 513}, "organization": {"id": 170}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 123, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"id": 350, "owner": {"id": 33}, "assignee": {"id": 561}, "organization": {"id": 123}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 97}, "assignee": {"id": 585}, "organization": {"id": 681}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 182, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 373, "owner": {"id": 76}, "assignee": {"id": 580}, "organization": {"id": 684}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 98}, "assignee": {"id": 599}, "organization": {"id": 672}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 145, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"id": 348, "owner": {"id": 92}, "assignee": {"id": 531}, "organization": {"id": 145}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 15}, "assignee": {"id": 510}, "organization": {"id": 640}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 19}, "assignee": {"id": 524}, "organization": {"id": 621}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 99}, "assignee": {"id": 503}, "organization": {"id": 624}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 281}, "user": {"role": "worker"}}}, "resource": {"id": 357, "owner": {"id": 24}, "assignee": {"id": 568}, "organization": {"id": 195}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 283}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 71}, "assignee": {"id": 592}, "organization": {"id": 133}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 38}, "assignee": {"id": 582}, "organization": {"id": 636}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 23}, "assignee": {"id": 502}, "organization": {"id": 138}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 210}, "user": {"role": null}}}, "resource": {"id": 390, "owner": {"id": 87}, "assignee": {"id": 539}, "organization": {"id": 117}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 97}, "assignee": {"id": 576}, "organization": {"id": 160}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"id": 334, "owner": {"id": 79}, "assignee": {"id": 519}, "organization": {"id": 643}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 74}, "assignee": {"id": 520}, "organization": {"id": 143}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 66}, "assignee": {"id": 558}, "organization": {"id": 159}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 226}, "user": {"role": null}}}, "resource": {"owner": {"id": 77}, "assignee": {"id": 501}, "organization": {"id": 625}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 281}, "user": {"role": "maintainer"}}}, "resource": {"id": 387, "owner": {"id": 41}, "assignee": {"id": 583}, "organization": {"id": 606}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 107, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"owner": {"id": 79}, "assignee": {"id": 593}, "organization": {"id": 657}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 62}, "assignee": {"id": 543}, "organization": {"id": 145}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 193, "owner": {"id": 214}, "user": {"role": null}}}, "resource": {"owner": {"id": 84}, "assignee": {"id": 586}, "organization": {"id": 648}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 391, "owner": {"id": 83}, "assignee": {"id": 546}, "organization": {"id": 698}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 286}, "user": {"role": null}}}, "resource": {"owner": {"id": 32}, "assignee": {"id": 508}, "organization": {"id": 669}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 152, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 366, "owner": {"id": 83}, "assignee": {"id": 598}, "organization": {"id": 152}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"owner": {"id": 95}, "assignee": {"id": 523}, "organization": {"id": 144}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 129, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"id": 366, "owner": {"id": 35}, "assignee": {"id": 549}, "organization": {"id": 626}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"owner": {"id": 23}, "assignee": {"id": 543}, "organization": {"id": 182}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 87}, "assignee": {"id": 545}, "organization": {"id": 111}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"owner": {"id": 43}, "assignee": {"id": 533}, "organization": {"id": 161}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 21}, "assignee": {"id": 592}, "organization": {"id": 646}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"owner": {"id": 23}, "assignee": {"id": 534}, "organization": {"id": 167}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"id": 357, "owner": {"id": 91}, "assignee": {"id": 542}, "organization": {"id": 147}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 16}, "assignee": {"id": 524}, "organization": {"id": 660}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 5}, "assignee": {"id": 579}, "organization": {"id": 609}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 52}, "assignee": {"id": 525}, "organization": {"id": 638}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 149, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 84}, "assignee": {"id": 515}, "organization": {"id": 149}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 188, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 24}, "assignee": {"id": 585}, "organization": {"id": 699}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 12}, "assignee": {"id": 586}, "organization": {"id": 621}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 142, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 82}, "assignee": {"id": 555}, "organization": {"id": 667}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 312, "owner": {"id": 92}, "assignee": {"id": 533}, "organization": {"id": 126}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 48}, "assignee": {"id": 560}, "organization": {"id": 167}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"id": 391, "owner": {"id": 23}, "assignee": {"id": 568}, "organization": {"id": 610}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 75}, "assignee": {"id": 551}, "organization": {"id": 164}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 154, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 372, "owner": {"id": 38}, "assignee": {"id": 524}, "organization": {"id": 154}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 43}, "assignee": {"id": 558}, "organization": {"id": 166}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"id": 355, "owner": {"id": 7}, "assignee": {"id": 522}, "organization": {"id": 670}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 27}, "assignee": {"id": 594}, "organization": {"id": 177}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 214}, "user": {"role": "worker"}}}, "resource": {"id": 326, "owner": {"id": 38}, "assignee": {"id": 567}, "organization": {"id": 113}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 73}, "assignee": {"id": 516}, "organization": {"id": 617}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 332, "owner": {"id": 60}, "assignee": {"id": 523}, "organization": {"id": 636}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 90}, "assignee": {"id": 543}, "organization": {"id": 670}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"id": 397, "owner": {"id": 66}, "assignee": {"id": 502}, "organization": {"id": 125}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 223}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 83}, "assignee": {"id": 532}, "organization": {"id": 633}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 99, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 348, "owner": {"id": 436}, "assignee": {"id": 99}, "organization": {"id": 630}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 242}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 94}, "assignee": {"id": 506}, "organization": {"id": 645}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 468}, "assignee": {"id": 30}, "organization": {"id": 144}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 14}, "assignee": {"id": 517}, "organization": {"id": 108}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 116, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 434}, "assignee": {"id": 2}, "organization": {"id": 635}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 83}, "assignee": {"id": 596}, "organization": {"id": 189}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 424}, "assignee": {"id": 17}, "organization": {"id": 126}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 48}, "assignee": {"id": 576}, "organization": {"id": 117}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 455}, "assignee": {"id": 61}, "organization": {"id": 619}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 116, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 57}, "assignee": {"id": 556}, "organization": {"id": 116}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 132, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 492}, "assignee": {"id": 44}, "organization": {"id": 132}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 19}, "assignee": {"id": 519}, "organization": {"id": 626}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 15, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 357, "owner": {"id": 491}, "assignee": {"id": 15}, "organization": {"id": 647}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 44}, "assignee": {"id": 593}, "organization": {"id": 606}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 389, "owner": {"id": 440}, "assignee": {"id": 55}, "organization": {"id": 191}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 277}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 43}, "assignee": {"id": 557}, "organization": {"id": 698}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 472}, "assignee": {"id": 92}, "organization": {"id": 665}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 199, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 83}, "assignee": {"id": 500}, "organization": {"id": 676}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 149, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 460}, "assignee": {"id": 1}, "organization": {"id": 149}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 65}, "assignee": {"id": 524}, "organization": {"id": 172}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 418}, "assignee": {"id": 84}, "organization": {"id": 673}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 11}, "assignee": {"id": 544}, "organization": {"id": 148}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 403}, "assignee": {"id": 44}, "organization": {"id": 177}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 218}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 78}, "assignee": {"id": 584}, "organization": {"id": 175}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 404}, "assignee": {"id": 44}, "organization": {"id": 639}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 54}, "assignee": {"id": 538}, "organization": {"id": 183}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 276}, "user": {"role": "maintainer"}}}, "resource": {"id": 365, "owner": {"id": 492}, "assignee": {"id": 98}, "organization": {"id": 135}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 14}, "assignee": {"id": 523}, "organization": {"id": 653}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 412}, "assignee": {"id": 69}, "organization": {"id": 658}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 150, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 14}, "assignee": {"id": 511}, "organization": {"id": 637}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 309, "owner": {"id": 446}, "assignee": {"id": 78}, "organization": {"id": 176}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 57}, "assignee": {"id": 515}, "organization": {"id": 685}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 292}, "user": {"role": "worker"}}}, "resource": {"id": 316, "owner": {"id": 424}, "assignee": {"id": 26}, "organization": {"id": 606}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 5}, "assignee": {"id": 579}, "organization": {"id": 692}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 64, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"id": 303, "owner": {"id": 450}, "assignee": {"id": 64}, "organization": {"id": 179}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 67}, "assignee": {"id": 569}, "organization": {"id": 177}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 189, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"id": 373, "owner": {"id": 477}, "assignee": {"id": 29}, "organization": {"id": 683}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 22}, "assignee": {"id": 547}, "organization": {"id": 131}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 391, "owner": {"id": 446}, "assignee": {"id": 27}, "organization": {"id": 122}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 85}, "assignee": {"id": 599}, "organization": {"id": 120}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 10}, "user": {"role": "owner"}}}, "resource": {"id": 309, "owner": {"id": 441}, "assignee": {"id": 10}, "organization": {"id": 637}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 93}, "assignee": {"id": 543}, "organization": {"id": 193}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 139, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 428}, "assignee": {"id": 12}, "organization": {"id": 139}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"owner": {"id": 39}, "assignee": {"id": 544}, "organization": {"id": 649}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"id": 381, "owner": {"id": 446}, "assignee": {"id": 89}, "organization": {"id": 668}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"owner": {"id": 58}, "assignee": {"id": 521}, "organization": {"id": 630}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"id": 349, "owner": {"id": 429}, "assignee": {"id": 42}, "organization": {"id": 179}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"owner": {"id": 87}, "assignee": {"id": 529}, "organization": {"id": 643}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 90, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 340, "owner": {"id": 485}, "assignee": {"id": 90}, "organization": {"id": 688}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"owner": {"id": 36}, "assignee": {"id": 567}, "organization": {"id": 657}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 131, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 436}, "assignee": {"id": 15}, "organization": {"id": 131}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"owner": {"id": 82}, "assignee": {"id": 513}, "organization": {"id": 148}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"id": 336, "owner": {"id": 495}, "assignee": {"id": 54}, "organization": {"id": 611}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 59, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"owner": {"id": 59}, "assignee": {"id": 508}, "organization": {"id": 171}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 81, "privilege": "user"}, "organization": {"id": 163, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"id": 382, "owner": {"id": 440}, "assignee": {"id": 81}, "organization": {"id": 163}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 214}, "user": {"role": null}}}, "resource": {"owner": {"id": 26}, "assignee": {"id": 578}, "organization": {"id": 195}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 466}, "assignee": {"id": 77}, "organization": {"id": 677}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"owner": {"id": 42}, "assignee": {"id": 565}, "organization": {"id": 119}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"id": 301, "owner": {"id": 481}, "assignee": {"id": 57}, "organization": {"id": 177}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 81, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 81}, "organization": {"id": 609}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 450}, "assignee": {"id": 27}, "organization": {"id": 606}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 163, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 44}, "organization": {"id": 687}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 193, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 411}, "assignee": {"id": 32}, "organization": {"id": 193}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 24}, "organization": {"id": 689}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 447}, "assignee": {"id": 64}, "organization": {"id": 621}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 137, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 463}, "assignee": {"id": 25}, "organization": {"id": 650}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 135, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 467}, "assignee": {"id": 20}, "organization": {"id": 135}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 77}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 482}, "assignee": {"id": 77}, "organization": {"id": 188}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 308, "owner": {"id": 427}, "assignee": {"id": 63}, "organization": {"id": 605}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 1}, "organization": {"id": 115}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 336, "owner": {"id": 482}, "assignee": {"id": 67}, "organization": {"id": 172}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 117, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 90}, "organization": {"id": 117}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"id": 353, "owner": {"id": 411}, "assignee": {"id": 28}, "organization": {"id": 615}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 51}, "organization": {"id": 198}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 408}, "assignee": {"id": 19}, "organization": {"id": 109}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 58}, "organization": {"id": 668}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 150, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 472}, "assignee": {"id": 87}, "organization": {"id": 603}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 61}, "organization": {"id": 688}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 25, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 405}, "assignee": {"id": 25}, "organization": {"id": 148}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 15, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 15}, "organization": {"id": 647}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 402}, "assignee": {"id": 21}, "organization": {"id": 612}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 4}, "organization": {"id": 627}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 349, "owner": {"id": 432}, "assignee": {"id": 96}, "organization": {"id": 172}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 170, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 57}, "organization": {"id": 170}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 374, "owner": {"id": 438}, "assignee": {"id": 71}, "organization": {"id": 646}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 15, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 15}, "organization": {"id": 124}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 190, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"id": 355, "owner": {"id": 445}, "assignee": {"id": 73}, "organization": {"id": 190}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 95}, "organization": {"id": 193}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"id": 351, "owner": {"id": 422}, "assignee": {"id": 65}, "organization": {"id": 627}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 57}, "organization": {"id": 136}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 428}, "assignee": {"id": 43}, "organization": {"id": 102}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 53}, "organization": {"id": 678}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"id": 370, "owner": {"id": 459}, "assignee": {"id": 23}, "organization": {"id": 600}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 11}, "organization": {"id": 645}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 199, "owner": {"id": 245}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 448}, "assignee": {"id": 76}, "organization": {"id": 199}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 48}, "organization": {"id": 670}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 318, "owner": {"id": 497}, "assignee": {"id": 91}, "organization": {"id": 698}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 62}, "organization": {"id": 615}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 492}, "assignee": {"id": 28}, "organization": {"id": 147}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 45}, "organization": {"id": 174}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 323, "owner": {"id": 463}, "assignee": {"id": 569}, "organization": {"id": 639}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 98}, "organization": {"id": 154}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 92}, "user": {"role": "owner"}}}, "resource": {"id": 316, "owner": {"id": 481}, "assignee": {"id": 551}, "organization": {"id": 120}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 181, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 429}, "assignee": {"id": 86}, "organization": {"id": 181}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 421}, "assignee": {"id": 541}, "organization": {"id": 608}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 78}, "organization": {"id": 188}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 424}, "assignee": {"id": 516}, "organization": {"id": 186}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 87}, "organization": {"id": 697}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 481}, "assignee": {"id": 546}, "organization": {"id": 615}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 33}, "organization": {"id": 685}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 435}, "assignee": {"id": 582}, "organization": {"id": 120}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 123, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 59}, "organization": {"id": 670}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"id": 357, "owner": {"id": 491}, "assignee": {"id": 551}, "organization": {"id": 623}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 13}, "organization": {"id": 610}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 163, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 414}, "assignee": {"id": 523}, "organization": {"id": 163}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 91}, "organization": {"id": 188}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 302, "owner": {"id": 422}, "assignee": {"id": 516}, "organization": {"id": 691}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 82}, "organization": {"id": 144}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 239}, "user": {"role": null}}}, "resource": {"id": 396, "owner": {"id": 411}, "assignee": {"id": 581}, "organization": {"id": 111}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 63}, "organization": {"id": 155}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"id": 319, "owner": {"id": 462}, "assignee": {"id": 567}, "organization": {"id": 609}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 52}, "organization": {"id": 106}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 317, "owner": {"id": 422}, "assignee": {"id": 594}, "organization": {"id": 137}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 117, "owner": {"id": 226}, "user": {"role": null}}}, "resource": {"owner": {"id": 483}, "assignee": {"id": 55}, "organization": {"id": 642}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 479}, "assignee": {"id": 543}, "organization": {"id": 695}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"owner": {"id": 461}, "assignee": {"id": 65}, "organization": {"id": 676}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 340, "owner": {"id": 417}, "assignee": {"id": 523}, "organization": {"id": 115}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 137, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"owner": {"id": 428}, "assignee": {"id": 40}, "organization": {"id": 643}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 331, "owner": {"id": 466}, "assignee": {"id": 569}, "organization": {"id": 619}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 90}, "organization": {"id": 604}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 374, "owner": {"id": 406}, "assignee": {"id": 587}, "organization": {"id": 106}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 75}, "organization": {"id": 161}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 404}, "assignee": {"id": 594}, "organization": {"id": 632}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 190, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"owner": {"id": 481}, "assignee": {"id": 30}, "organization": {"id": 190}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"id": 380, "owner": {"id": 465}, "assignee": {"id": 567}, "organization": {"id": 129}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 85}, "organization": {"id": 140}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 386, "owner": {"id": 481}, "assignee": {"id": 507}, "organization": {"id": 657}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"owner": {"id": 456}, "assignee": {"id": 34}, "organization": {"id": 125}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 277}, "user": {"role": null}}}, "resource": {"id": 361, "owner": {"id": 426}, "assignee": {"id": 570}, "organization": {"id": 101}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 10}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 10}, "organization": {"id": 692}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 38}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 407}, "assignee": {"id": 593}, "organization": {"id": 661}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 466}, "assignee": {"id": 46}, "organization": {"id": 628}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 412}, "assignee": {"id": 531}, "organization": {"id": 188}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 80}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 80}, "organization": {"id": 601}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 470}, "assignee": {"id": 569}, "organization": {"id": 697}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 42}, "organization": {"id": 644}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 255}, "user": {"role": "maintainer"}}}, "resource": {"id": 308, "owner": {"id": 458}, "assignee": {"id": 584}, "organization": {"id": 152}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 23}, "organization": {"id": 140}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"id": 310, "owner": {"id": 419}, "assignee": {"id": 564}, "organization": {"id": 648}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 61}, "organization": {"id": 180}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 414}, "assignee": {"id": 555}, "organization": {"id": 124}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 44}, "organization": {"id": 125}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 409}, "assignee": {"id": 569}, "organization": {"id": 642}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 1}, "organization": {"id": 150}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 400}, "assignee": {"id": 507}, "organization": {"id": 185}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 123, "owner": {"id": 282}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 54}, "organization": {"id": 665}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 340, "owner": {"id": 413}, "assignee": {"id": 548}, "organization": {"id": 668}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 84}, "organization": {"id": 682}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 383, "owner": {"id": 415}, "assignee": {"id": 507}, "organization": {"id": 155}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 149, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 34}, "organization": {"id": 626}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 15}, "user": {"role": "owner"}}}, "resource": {"id": 384, "owner": {"id": 479}, "assignee": {"id": 548}, "organization": {"id": 653}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": {"id": 139, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 81}, "organization": {"id": 644}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": {"id": 103, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 486}, "assignee": {"id": 534}, "organization": {"id": 103}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 48}, "organization": {"id": 106}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 434}, "assignee": {"id": 577}, "organization": {"id": 655}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 23}, "organization": {"id": 173}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 186, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 487}, "assignee": {"id": 518}, "organization": {"id": 186}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 4}, "organization": {"id": 195}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 357, "owner": {"id": 492}, "assignee": {"id": 559}, "organization": {"id": 651}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 297}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 89}, "organization": {"id": 129}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"id": 305, "owner": {"id": 428}, "assignee": {"id": 579}, "organization": {"id": 122}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 56}, "organization": {"id": 603}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 314, "owner": {"id": 498}, "assignee": {"id": 523}, "organization": {"id": 618}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 45}, "organization": {"id": 676}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"id": 333, "owner": {"id": 477}, "assignee": {"id": 506}, "organization": {"id": 116}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 456}, "assignee": {"id": 53}, "organization": {"id": 670}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 270}, "user": {"role": null}}}, "resource": {"id": 341, "owner": {"id": 468}, "assignee": {"id": 569}, "organization": {"id": 665}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 44}, "organization": {"id": 668}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 156, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 442}, "assignee": {"id": 522}, "organization": {"id": 156}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 91, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 91}, "organization": {"id": 172}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 72}, "user": {"role": "owner"}}}, "resource": {"id": 352, "owner": {"id": 498}, "assignee": {"id": 560}, "organization": {"id": 631}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 92}, "organization": {"id": 191}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 303, "owner": {"id": 442}, "assignee": {"id": 541}, "organization": {"id": 103}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 52}, "organization": {"id": 188}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"id": 318, "owner": {"id": 485}, "assignee": {"id": 569}, "organization": {"id": 677}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 480}, "assignee": {"id": 2}, "organization": {"id": 185}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 327, "owner": {"id": 483}, "assignee": {"id": 509}, "organization": {"id": 147}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 63}, "organization": {"id": 600}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"id": 350, "owner": {"id": 456}, "assignee": {"id": 584}, "organization": {"id": 692}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 457}, "assignee": {"id": 97}, "organization": {"id": 650}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"id": 371, "owner": {"id": 468}, "assignee": {"id": 599}, "organization": {"id": 136}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 83}, "organization": {"id": 682}, "user": {"num_resources": 3}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"id": 398, "owner": {"id": 450}, "assignee": {"id": 531}, "organization": {"id": 655}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 461}, "assignee": {"id": 53}, "organization": {"id": 621}, "user": {"num_resources": 10}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 202}, "user": {"role": "worker"}}}, "resource": {"id": 358, "owner": {"id": 436}, "assignee": {"id": 590}, "organization": {"id": 120}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 83}, "organization": {"id": 134}, "user": {"num_resources": 0}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 424}, "assignee": {"id": 574}, "organization": {"id": 681}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 9}, "organization": {"id": 181}, "user": {"num_resources": 1}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 425}, "assignee": {"id": 573}, "organization": {"id": 177}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 98}, "organization": {"id": 171}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 63}, "assignee": {"id": 538}, "organization": {"id": 697}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 0}, "organization": {"id": 128}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 64}, "assignee": {"id": 526}, "organization": {"id": 670}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 199, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"owner": {"id": 404}, "assignee": {"id": 40}, "organization": {"id": 638}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 42}, "assignee": {"id": 560}, "organization": {"id": 609}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 5}, "organization": {"id": 651}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 30}, "assignee": {"id": 562}, "organization": {"id": 637}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 37}, "organization": {"id": 621}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 55}, "assignee": {"id": 592}, "organization": {"id": 615}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 77}, "organization": {"id": 625}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 44}, "assignee": {"id": 541}, "organization": {"id": 638}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 174, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"owner": {"id": 443}, "assignee": {"id": 72}, "organization": {"id": 174}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 42}, "assignee": {"id": 534}, "organization": {"id": 657}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 222}, "user": {"role": null}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 88}, "organization": {"id": 186}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 9}, "assignee": {"id": 572}, "organization": {"id": 600}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 159, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"owner": {"id": 404}, "assignee": {"id": 89}, "organization": {"id": 159}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 26}, "assignee": {"id": 541}, "organization": {"id": 691}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 35}, "organization": {"id": 145}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 21}, "assignee": {"id": 543}, "organization": {"id": 601}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 485}, "assignee": {"id": 86}, "organization": {"id": 632}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 40}, "assignee": {"id": 556}, "organization": {"id": 669}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 88}, "organization": {"id": 682}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 95}, "assignee": {"id": 552}, "organization": {"id": 628}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 17}, "organization": {"id": 621}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 14}, "assignee": {"id": 518}, "organization": {"id": 611}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 49}, "organization": {"id": 603}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 48, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 48}, "assignee": {"id": 523}, "organization": {"id": 695}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 424}, "assignee": {"id": 94}, "organization": {"id": 119}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 64}, "assignee": {"id": 502}, "organization": {"id": 639}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 429}, "assignee": {"id": 71}, "organization": {"id": 187}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 79}, "assignee": {"id": 544}, "organization": {"id": 625}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 35}, "organization": {"id": 183}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 35}, "assignee": {"id": 511}, "organization": {"id": 604}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 434}, "assignee": {"id": 23}, "organization": {"id": 136}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 88}, "assignee": {"id": 575}, "organization": {"id": 663}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 11, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 466}, "assignee": {"id": 11}, "organization": {"id": 642}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 3}, "assignee": {"id": 576}, "organization": {"id": 698}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 7}, "organization": {"id": 693}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 76}, "assignee": {"id": 551}, "organization": {"id": 638}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 46}, "organization": {"id": 642}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 489}, "assignee": {"id": 98}, "organization": {"id": 605}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 66}, "organization": {"id": 671}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 498}, "assignee": {"id": 60}, "organization": {"id": 673}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 481}, "assignee": {"id": 61}, "organization": {"id": 176}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 412}, "assignee": {"id": 35}, "organization": {"id": 649}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 14, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 457}, "assignee": {"id": 14}, "organization": {"id": 197}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 427}, "assignee": {"id": 6}, "organization": {"id": 686}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 20, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 205}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 20}, "organization": {"id": 143}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 407}, "assignee": {"id": 40}, "organization": {"id": 653}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 90, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 90}, "organization": {"id": 121}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 439}, "assignee": {"id": 51}, "organization": {"id": 625}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 149, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 454}, "assignee": {"id": 83}, "organization": {"id": 627}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 423}, "assignee": {"id": 62}, "organization": {"id": 659}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 20, "privilege": "user"}, "organization": {"id": 138, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 20}, "organization": {"id": 614}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 481}, "assignee": {"id": 58}, "organization": {"id": 679}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 31}, "organization": {"id": 664}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 447}, "assignee": {"id": 51}, "organization": {"id": 600}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 23}, "organization": {"id": 653}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 428}, "assignee": {"id": 72}, "organization": {"id": 678}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 138, "owner": {"id": 291}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 72}, "organization": {"id": 138}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 412}, "assignee": {"id": 54}, "organization": {"id": 696}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 52}, "organization": {"id": 178}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 473}, "assignee": {"id": 8}, "organization": {"id": 697}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 88}, "organization": {"id": 114}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 491}, "assignee": {"id": 18}, "organization": {"id": 642}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 293}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 62}, "organization": {"id": 127}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 434}, "assignee": {"id": 87}, "organization": {"id": 673}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 85}, "organization": {"id": 632}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 442}, "assignee": {"id": 0}, "organization": {"id": 614}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 131, "owner": {"id": 283}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 477}, "assignee": {"id": 15}, "organization": {"id": 610}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 475}, "assignee": {"id": 0}, "organization": {"id": 677}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 474}, "assignee": {"id": 76}, "organization": {"id": 669}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 431}, "assignee": {"id": 97}, "organization": {"id": 608}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 172, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 442}, "assignee": {"id": 60}, "organization": {"id": 690}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 405}, "assignee": {"id": 47}, "organization": {"id": 647}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 70}, "organization": {"id": 129}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 409}, "assignee": {"id": 28}, "organization": {"id": 606}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 17}, "organization": {"id": 133}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 442}, "assignee": {"id": 83}, "organization": {"id": 654}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 217}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 2}, "organization": {"id": 108}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 402}, "assignee": {"id": 525}, "organization": {"id": 683}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 40}, "organization": {"id": 198}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 76, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 434}, "assignee": {"id": 583}, "organization": {"id": 682}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 62}, "organization": {"id": 674}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 488}, "assignee": {"id": 501}, "organization": {"id": 686}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 2}, "organization": {"id": 634}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 475}, "assignee": {"id": 586}, "organization": {"id": 604}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 61}, "organization": {"id": 607}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 467}, "assignee": {"id": 562}, "organization": {"id": 653}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 204}, "user": {"role": null}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 29}, "organization": {"id": 684}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 419}, "assignee": {"id": 503}, "organization": {"id": 635}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 33}, "organization": {"id": 132}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 491}, "assignee": {"id": 525}, "organization": {"id": 651}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 2}, "organization": {"id": 143}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 477}, "assignee": {"id": 532}, "organization": {"id": 619}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 223}, "user": {"role": null}}}, "resource": {"owner": {"id": 434}, "assignee": {"id": 40}, "organization": {"id": 188}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 488}, "assignee": {"id": 578}, "organization": {"id": 678}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 49}, "organization": {"id": 129}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 408}, "assignee": {"id": 535}, "organization": {"id": 681}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 62}, "organization": {"id": 619}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 498}, "assignee": {"id": 508}, "organization": {"id": 698}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 193, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 99}, "organization": {"id": 670}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 473}, "assignee": {"id": 559}, "organization": {"id": 652}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 51, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 51}, "organization": {"id": 614}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 465}, "assignee": {"id": 547}, "organization": {"id": 639}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 58}, "organization": {"id": 610}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 480}, "assignee": {"id": 526}, "organization": {"id": 613}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 81}, "organization": {"id": 104}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 480}, "assignee": {"id": 552}, "organization": {"id": 659}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 103, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 17}, "organization": {"id": 103}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 3, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 498}, "assignee": {"id": 550}, "organization": {"id": 600}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 443}, "assignee": {"id": 89}, "organization": {"id": 163}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 471}, "assignee": {"id": 549}, "organization": {"id": 614}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 61}, "organization": {"id": 130}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 446}, "assignee": {"id": 518}, "organization": {"id": 699}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 242}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 18}, "organization": {"id": 626}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 433}, "assignee": {"id": 549}, "organization": {"id": 603}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 51, "privilege": "worker"}, "organization": {"id": 199, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 481}, "assignee": {"id": 51}, "organization": {"id": 667}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 435}, "assignee": {"id": 527}, "organization": {"id": 698}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 36}, "organization": {"id": 697}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 24}, "assignee": {"id": 534}, "organization": {"id": 669}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 45}, "organization": {"id": 624}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 56}, "assignee": {"id": 548}, "organization": {"id": 682}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 14}, "organization": {"id": 148}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 5}, "assignee": {"id": 513}, "organization": {"id": 623}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 41}, "organization": {"id": 175}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 75}, "assignee": {"id": 586}, "organization": {"id": 642}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 81}, "organization": {"id": 154}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 101, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 13}, "assignee": {"id": 575}, "organization": {"id": 101}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 135, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 59}, "organization": {"id": 135}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 71, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 71}, "assignee": {"id": 520}, "organization": {"id": 109}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 188, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 62}, "organization": {"id": 617}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 103, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 35}, "assignee": {"id": 557}, "organization": {"id": 103}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 2}, "organization": {"id": 605}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 98}, "assignee": {"id": 542}, "organization": {"id": 175}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 152, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 443}, "assignee": {"id": 58}, "organization": {"id": 676}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 64}, "assignee": {"id": 572}, "organization": {"id": 603}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 24}, "organization": {"id": 629}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 98}, "assignee": {"id": 567}, "organization": {"id": 679}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 5}, "organization": {"id": 185}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 16}, "assignee": {"id": 518}, "organization": {"id": 696}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 8}, "organization": {"id": 111}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 38}, "assignee": {"id": 509}, "organization": {"id": 658}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 42}, "organization": {"id": 101}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 10}, "assignee": {"id": 540}, "organization": {"id": 152}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 63}, "organization": {"id": 148}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 88}, "assignee": {"id": 588}, "organization": {"id": 144}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 36}, "organization": {"id": 623}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 40}, "assignee": {"id": 561}, "organization": {"id": 145}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 262}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 47}, "organization": {"id": 630}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 1}, "assignee": {"id": 527}, "organization": {"id": 151}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 77}, "organization": {"id": 618}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 72}, "assignee": {"id": 539}, "organization": {"id": 656}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 44}, "organization": {"id": 623}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 210}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 82}, "assignee": {"id": 507}, "organization": {"id": 600}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 482}, "assignee": {"id": 76}, "organization": {"id": 169}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 49}, "assignee": {"id": 578}, "organization": {"id": 616}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 426}, "assignee": {"id": 33}, "organization": {"id": 161}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 32}, "assignee": {"id": 525}, "organization": {"id": 602}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 443}, "assignee": {"id": 43}, "organization": {"id": 117}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 72}, "assignee": {"id": 557}, "organization": {"id": 105}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 7}, "organization": {"id": 139}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 238}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 36}, "assignee": {"id": 507}, "organization": {"id": 131}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 226}, "user": {"role": null}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 39}, "organization": {"id": 655}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 197, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 18}, "assignee": {"id": 503}, "organization": {"id": 197}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 129, "owner": {"id": 223}, "user": {"role": null}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 90}, "organization": {"id": 634}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 81, "privilege": "admin"}, "organization": {"id": 149, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 81}, "assignee": {"id": 580}, "organization": {"id": 149}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 141, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 40}, "organization": {"id": 615}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 103, "owner": {"id": 292}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 53}, "assignee": {"id": 566}, "organization": {"id": 695}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 98}, "organization": {"id": 600}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 24}, "assignee": {"id": 517}, "organization": {"id": 620}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 271}, "user": {"role": null}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 93}, "organization": {"id": 157}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 16}, "assignee": {"id": 582}, "organization": {"id": 622}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 30, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"owner": {"id": 485}, "assignee": {"id": 30}, "organization": {"id": 191}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 103, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 88}, "assignee": {"id": 539}, "organization": {"id": 658}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 44}, "organization": {"id": 143}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 95}, "assignee": {"id": 585}, "organization": {"id": 104}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 82}, "organization": {"id": 159}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 23}, "assignee": {"id": 524}, "organization": {"id": 161}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 37}, "organization": {"id": 649}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 10}, "assignee": {"id": 522}, "organization": {"id": 147}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 38}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 38}, "organization": {"id": 693}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 209}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 63}, "assignee": {"id": 566}, "organization": {"id": 193}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 118, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 56}, "organization": {"id": 637}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"owner": {"id": 62}, "assignee": {"id": 598}, "organization": {"id": 662}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 52}, "organization": {"id": 683}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"owner": {"id": 26}, "assignee": {"id": 566}, "organization": {"id": 662}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 13}, "organization": {"id": 104}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"owner": {"id": 2}, "assignee": {"id": 515}, "organization": {"id": 627}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 46}, "organization": {"id": 164}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 204}, "user": {"role": null}}}, "resource": {"owner": {"id": 48}, "assignee": {"id": 582}, "organization": {"id": 649}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 116, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 49}, "organization": {"id": 116}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 244}, "user": {"role": null}}}, "resource": {"owner": {"id": 66}, "assignee": {"id": 586}, "organization": {"id": 151}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 68}, "organization": {"id": 165}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"owner": {"id": 78}, "assignee": {"id": 536}, "organization": {"id": 180}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 33}, "organization": {"id": 694}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"owner": {"id": 23}, "assignee": {"id": 570}, "organization": {"id": 179}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 227}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 96}, "organization": {"id": 610}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 224}, "user": {"role": null}}}, "resource": {"owner": {"id": 45}, "assignee": {"id": 524}, "organization": {"id": 167}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 1}, "organization": {"id": 625}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 18}, "assignee": {"id": 562}, "organization": {"id": 670}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 73}, "organization": {"id": 602}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 91, "privilege": "business"}, "organization": {"id": 123, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 91}, "assignee": {"id": 515}, "organization": {"id": 620}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 426}, "assignee": {"id": 15}, "organization": {"id": 114}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 54}, "assignee": {"id": 521}, "organization": {"id": 692}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 78}, "organization": {"id": 134}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 23}, "assignee": {"id": 591}, "organization": {"id": 647}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 68}, "organization": {"id": 114}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 70}, "assignee": {"id": 512}, "organization": {"id": 161}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 270}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 6}, "organization": {"id": 103}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 56}, "assignee": {"id": 571}, "organization": {"id": 141}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 456}, "assignee": {"id": 45}, "organization": {"id": 631}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 63}, "assignee": {"id": 547}, "organization": {"id": 148}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": {"id": 132, "owner": {"id": 294}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 476}, "assignee": {"id": 39}, "organization": {"id": 649}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 90}, "assignee": {"id": 582}, "organization": {"id": 151}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 424}, "assignee": {"id": 42}, "organization": {"id": 606}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 38}, "assignee": {"id": 577}, "organization": {"id": 697}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 84}, "organization": {"id": 669}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 98}, "assignee": {"id": 569}, "organization": {"id": 643}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 41, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 41}, "organization": {"id": 197}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 93}, "assignee": {"id": 502}, "organization": {"id": 656}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 7}, "organization": {"id": 146}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 9}, "assignee": {"id": 514}, "organization": {"id": 699}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 57}, "organization": {"id": 108}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 91, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 91}, "assignee": {"id": 543}, "organization": {"id": 160}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 94}, "organization": {"id": 127}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 76}, "assignee": {"id": 535}, "organization": {"id": 117}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 19}, "organization": {"id": 673}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 30}, "assignee": {"id": 515}, "organization": {"id": 121}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 21}, "organization": {"id": 617}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 267}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 8}, "assignee": {"id": 574}, "organization": {"id": 133}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 116, "owner": {"id": 214}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 13}, "organization": {"id": 686}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 130, "owner": {"id": 205}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 67}, "assignee": {"id": 506}, "organization": {"id": 605}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 43}, "organization": {"id": 699}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 64, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 64}, "assignee": {"id": 500}, "organization": {"id": 684}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 37}, "organization": {"id": 114}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 3}, "assignee": {"id": 530}, "organization": {"id": 660}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 72}, "organization": {"id": 108}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 58}, "assignee": {"id": 554}, "organization": {"id": 627}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 96}, "organization": {"id": 109}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 56}, "assignee": {"id": 556}, "organization": {"id": 181}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 60}, "organization": {"id": 189}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 50}, "assignee": {"id": 594}, "organization": {"id": 148}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 92}, "organization": {"id": 694}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 37}, "assignee": {"id": 586}, "organization": {"id": 167}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 37}, "organization": {"id": 617}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 87}, "assignee": {"id": 573}, "organization": {"id": 198}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 94}, "organization": {"id": 610}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 99}, "assignee": {"id": 525}, "organization": {"id": 623}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 87}, "organization": {"id": 682}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 2}, "assignee": {"id": 598}, "organization": {"id": 633}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"owner": {"id": 481}, "assignee": {"id": 31}, "organization": {"id": 189}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 32}, "assignee": {"id": 520}, "organization": {"id": 668}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 263}, "user": {"role": null}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 24}, "organization": {"id": 157}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 166, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 84}, "assignee": {"id": 595}, "organization": {"id": 643}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 58}, "organization": {"id": 106}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 5}, "assignee": {"id": 564}, "organization": {"id": 164}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 33}, "organization": {"id": 158}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 50}, "assignee": {"id": 598}, "organization": {"id": 116}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 519}, "organization": {"id": 608}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 22}, "assignee": {"id": 528}, "organization": {"id": 120}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 20}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 532}, "organization": {"id": 631}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 286}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 35}, "assignee": {"id": 514}, "organization": {"id": 145}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 190, "owner": {"id": 28}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 588}, "organization": {"id": 634}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"owner": {"id": 82}, "assignee": {"id": 572}, "organization": {"id": 636}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 560}, "organization": {"id": 666}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 264}, "user": {"role": null}}}, "resource": {"owner": {"id": 49}, "assignee": {"id": 548}, "organization": {"id": 675}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 586}, "organization": {"id": 188}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"owner": {"id": 98}, "assignee": {"id": 521}, "organization": {"id": 640}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 594}, "organization": {"id": 121}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"owner": {"id": 43}, "assignee": {"id": 526}, "organization": {"id": 665}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 596}, "organization": {"id": 175}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"owner": {"id": 28}, "assignee": {"id": 545}, "organization": {"id": 126}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 573}, "organization": {"id": 176}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"owner": {"id": 98}, "assignee": {"id": 585}, "organization": {"id": 177}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 576}, "organization": {"id": 660}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"owner": {"id": 54}, "assignee": {"id": 586}, "organization": {"id": 124}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 535}, "organization": {"id": 633}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"owner": {"id": 97}, "assignee": {"id": 572}, "organization": {"id": 178}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 476}, "assignee": {"id": 573}, "organization": {"id": 628}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 73}, "assignee": {"id": 594}, "organization": {"id": 642}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 255}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 528}, "organization": {"id": 612}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 58}, "assignee": {"id": 575}, "organization": {"id": 612}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 409}, "assignee": {"id": 587}, "organization": {"id": 143}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 70}, "assignee": {"id": 594}, "organization": {"id": 676}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 102, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 566}, "organization": {"id": 102}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 0}, "assignee": {"id": 539}, "organization": {"id": 643}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 137, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 522}, "organization": {"id": 137}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 192, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 66}, "assignee": {"id": 516}, "organization": {"id": 192}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 576}, "organization": {"id": 107}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 41}, "assignee": {"id": 536}, "organization": {"id": 100}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 560}, "organization": {"id": 608}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 86}, "assignee": {"id": 506}, "organization": {"id": 130}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 218}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 510}, "organization": {"id": 646}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 65}, "assignee": {"id": 524}, "organization": {"id": 106}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 472}, "assignee": {"id": 533}, "organization": {"id": 656}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 70}, "assignee": {"id": 522}, "organization": {"id": 642}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 81, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 573}, "organization": {"id": 687}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 35}, "assignee": {"id": 502}, "organization": {"id": 604}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 460}, "assignee": {"id": 571}, "organization": {"id": 144}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 46}, "assignee": {"id": 506}, "organization": {"id": 606}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 521}, "organization": {"id": 177}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 33}, "assignee": {"id": 584}, "organization": {"id": 612}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 160, "owner": {"id": 205}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 516}, "organization": {"id": 160}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 267}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 72}, "assignee": {"id": 573}, "organization": {"id": 127}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 595}, "organization": {"id": 179}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 80}, "assignee": {"id": 535}, "organization": {"id": 162}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 535}, "organization": {"id": 620}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 37}, "assignee": {"id": 576}, "organization": {"id": 151}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 534}, "organization": {"id": 652}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 28}, "assignee": {"id": 597}, "organization": {"id": 190}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 37, "privilege": "admin"}, "organization": {"id": 101, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 597}, "organization": {"id": 670}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 174, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 41}, "assignee": {"id": 530}, "organization": {"id": 668}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 504}, "organization": {"id": 658}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 139, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 28}, "assignee": {"id": 544}, "organization": {"id": 613}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 592}, "organization": {"id": 154}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 39}, "assignee": {"id": 523}, "organization": {"id": 669}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 568}, "organization": {"id": 154}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 74}, "assignee": {"id": 569}, "organization": {"id": 688}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 217}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 540}, "organization": {"id": 126}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 7}, "assignee": {"id": 563}, "organization": {"id": 177}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 516}, "organization": {"id": 138}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 96}, "assignee": {"id": 556}, "organization": {"id": 137}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 225}, "user": {"role": null}}}, "resource": {"owner": {"id": 440}, "assignee": {"id": 599}, "organization": {"id": 646}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 36}, "assignee": {"id": 530}, "organization": {"id": 162}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 589}, "organization": {"id": 632}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 193, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 39}, "assignee": {"id": 542}, "organization": {"id": 193}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 553}, "organization": {"id": 643}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 29}, "assignee": {"id": 565}, "organization": {"id": 681}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create", "auth": {"user": {"id": 76, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 566}, "organization": {"id": 661}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 48}, "assignee": {"id": 545}, "organization": {"id": 666}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 7, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 567}, "organization": {"id": 182}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 33}, "assignee": {"id": 586}, "organization": {"id": 602}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 101, "owner": {"id": 249}, "user": {"role": null}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 585}, "organization": {"id": 101}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 193, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 91}, "assignee": {"id": 562}, "organization": {"id": 687}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 556}, "organization": {"id": 150}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 44}, "assignee": {"id": 568}, "organization": {"id": 190}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 540}, "organization": {"id": 124}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 94}, "assignee": {"id": 515}, "organization": {"id": 189}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 174, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 440}, "assignee": {"id": 500}, "organization": {"id": 656}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 34}, "assignee": {"id": 527}, "organization": {"id": 195}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 510}, "organization": {"id": 626}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 83}, "assignee": {"id": 546}, "organization": {"id": 181}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 476}, "assignee": {"id": 520}, "organization": {"id": 629}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 237}, "user": {"role": null}}}, "resource": {"owner": {"id": 18}, "assignee": {"id": 584}, "organization": {"id": 618}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 76}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 485}, "assignee": {"id": 512}, "organization": {"id": 630}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 266}, "user": {"role": null}}}, "resource": {"owner": {"id": 13}, "assignee": {"id": 521}, "organization": {"id": 675}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 130, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 562}, "organization": {"id": 130}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 123, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"owner": {"id": 65}, "assignee": {"id": 546}, "organization": {"id": 653}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 10}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 586}, "organization": {"id": 163}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"owner": {"id": 69}, "assignee": {"id": 566}, "organization": {"id": 628}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 536}, "organization": {"id": 119}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"owner": {"id": 28}, "assignee": {"id": 570}, "organization": {"id": 180}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 595}, "organization": {"id": 115}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"owner": {"id": 49}, "assignee": {"id": 501}, "organization": {"id": 109}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 577}, "organization": {"id": 643}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"owner": {"id": 65}, "assignee": {"id": 540}, "organization": {"id": 185}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 419}, "assignee": {"id": 504}, "organization": {"id": 615}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 14, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"owner": {"id": 14}, "assignee": {"id": 526}, "organization": {"id": 153}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 538}, "organization": {"id": 603}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 98}, "assignee": {"id": 571}, "organization": {"id": 680}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 572}, "organization": {"id": 658}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 56}, "assignee": {"id": 583}, "organization": {"id": 634}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 522}, "organization": {"id": 147}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 11}, "assignee": {"id": 574}, "organization": {"id": 667}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 477}, "assignee": {"id": 580}, "organization": {"id": 133}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 87}, "assignee": {"id": 517}, "organization": {"id": 632}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 560}, "organization": {"id": 126}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 32}, "assignee": {"id": 595}, "organization": {"id": 111}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 199, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 514}, "organization": {"id": 199}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 62}, "assignee": {"id": 553}, "organization": {"id": 187}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 242}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 591}, "organization": {"id": 665}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 80}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 80}, "assignee": {"id": 524}, "organization": {"id": 148}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 294}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 554}, "organization": {"id": 640}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 75}, "assignee": {"id": 531}, "organization": {"id": 127}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 567}, "organization": {"id": 657}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 47}, "assignee": {"id": 534}, "organization": {"id": 683}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 242}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 564}, "organization": {"id": 655}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 16}, "assignee": {"id": 574}, "organization": {"id": 672}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 127, "owner": {"id": 200}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 567}, "organization": {"id": 127}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 77}, "assignee": {"id": 547}, "organization": {"id": 608}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 515}, "organization": {"id": 132}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 43}, "assignee": {"id": 569}, "organization": {"id": 621}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 540}, "organization": {"id": 120}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 85}, "assignee": {"id": 549}, "organization": {"id": 162}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 481}, "assignee": {"id": 595}, "organization": {"id": 141}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 53}, "assignee": {"id": 582}, "organization": {"id": 157}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 428}, "assignee": {"id": 553}, "organization": {"id": 609}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 152, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 69}, "assignee": {"id": 566}, "organization": {"id": 152}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 224}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 591}, "organization": {"id": 669}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 68}, "assignee": {"id": 519}, "organization": {"id": 198}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 492}, "assignee": {"id": 513}, "organization": {"id": 672}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 238}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 81}, "assignee": {"id": 558}, "organization": {"id": 619}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 456}, "assignee": {"id": 548}, "organization": {"id": 609}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 78}, "assignee": {"id": 501}, "organization": {"id": 692}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 224}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 568}, "organization": {"id": 131}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 238}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 42}, "assignee": {"id": 539}, "organization": {"id": 635}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 535}, "organization": {"id": 156}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 90}, "assignee": {"id": 572}, "organization": {"id": 601}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 592}, "organization": {"id": 158}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 23}, "assignee": {"id": 578}, "organization": {"id": 167}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 262}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 547}, "organization": {"id": 156}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 61}, "assignee": {"id": 549}, "organization": {"id": 146}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 510}, "organization": {"id": 660}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 11}, "assignee": {"id": 535}, "organization": {"id": 133}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 196, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"owner": {"id": 454}, "assignee": {"id": 563}, "organization": {"id": 670}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 5}, "assignee": {"id": 530}, "organization": {"id": 130}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 566}, "organization": {"id": 648}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 13}, "assignee": {"id": 548}, "organization": {"id": 615}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 554}, "organization": {"id": 650}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 61}, "assignee": {"id": 595}, "organization": {"id": 610}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 537}, "organization": {"id": 157}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 195, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 90}, "assignee": {"id": 530}, "organization": {"id": 677}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 509}, "organization": {"id": 100}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 46}, "assignee": {"id": 546}, "organization": {"id": 693}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 91, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 539}, "organization": {"id": 151}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 71}, "assignee": {"id": 542}, "organization": {"id": 116}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 551}, "organization": {"id": 158}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 46}, "assignee": {"id": 566}, "organization": {"id": 194}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 149, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 461}, "assignee": {"id": 592}, "organization": {"id": 640}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 88}, "assignee": {"id": 556}, "organization": {"id": 111}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 149, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 515}, "organization": {"id": 654}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 16}, "assignee": {"id": 528}, "organization": {"id": 162}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 150, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 529}, "organization": {"id": 619}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 30, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"owner": {"id": 30}, "assignee": {"id": 595}, "organization": {"id": 654}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 72}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 429}, "assignee": {"id": 579}, "organization": {"id": 691}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"owner": {"id": 80}, "assignee": {"id": 510}, "organization": {"id": 668}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 532}, "organization": {"id": 167}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 156, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"owner": {"id": 5}, "assignee": {"id": 572}, "organization": {"id": 688}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 154, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 598}, "organization": {"id": 154}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"owner": {"id": 99}, "assignee": {"id": 538}, "organization": {"id": 660}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 576}, "organization": {"id": 157}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"owner": {"id": 94}, "assignee": {"id": 566}, "organization": {"id": 102}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 588}, "organization": {"id": 178}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"owner": {"id": 14}, "assignee": {"id": 546}, "organization": {"id": 187}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 562}, "organization": {"id": 664}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 286}, "user": {"role": null}}}, "resource": {"owner": {"id": 28}, "assignee": {"id": 550}, "organization": {"id": 175}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 409}, "assignee": {"id": 567}, "organization": {"id": 631}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 254}, "user": {"role": null}}}, "resource": {"owner": {"id": 19}, "assignee": {"id": 518}, "organization": {"id": 108}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 9, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 598}, "organization": {"id": 695}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 75}, "assignee": {"id": 509}, "organization": {"id": 650}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 592}, "organization": {"id": 635}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 78}, "assignee": {"id": 551}, "organization": {"id": 691}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 502}, "organization": {"id": 194}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 84}, "assignee": {"id": 547}, "organization": {"id": 696}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 599}, "organization": {"id": 186}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 33}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 33}, "assignee": {"id": 577}, "organization": {"id": 665}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 576}, "organization": {"id": 151}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 150, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 2}, "assignee": {"id": 590}, "organization": {"id": 150}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 22, "privilege": "user"}, "organization": {"id": 123, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 521}, "organization": {"id": 123}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 36}, "assignee": {"id": 527}, "organization": {"id": 137}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 574}, "organization": {"id": 698}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 97}, "assignee": {"id": 542}, "organization": {"id": 152}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 507}, "organization": {"id": 623}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 8}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 8}, "assignee": {"id": 525}, "organization": {"id": 123}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 596}, "organization": {"id": 632}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 11}, "assignee": {"id": 506}, "organization": {"id": 619}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 128, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 576}, "organization": {"id": 629}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 278}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 78}, "assignee": {"id": 544}, "organization": {"id": 605}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 485}, "assignee": {"id": 552}, "organization": {"id": 171}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 36}, "assignee": {"id": 529}, "organization": {"id": 650}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - allow with input as {"scope": "create", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 569}, "organization": {"id": 156}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 52}, "assignee": {"id": 597}, "organization": {"id": 668}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 429}, "assignee": {"id": 518}, "organization": {"id": 136}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 39}, "assignee": {"id": 517}, "organization": {"id": 113}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 596}, "organization": {"id": 148}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 13}, "assignee": {"id": 565}, "organization": {"id": 162}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 182, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 552}, "organization": {"id": 612}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 11}, "assignee": {"id": 526}, "organization": {"id": 181}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 22, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 594}, "organization": {"id": 682}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 93}, "assignee": {"id": 577}, "organization": {"id": 133}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 22, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 542}, "organization": {"id": 681}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 74}, "assignee": {"id": 585}, "organization": {"id": 664}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 530}, "organization": {"id": 687}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 81}, "assignee": {"id": 583}, "organization": {"id": 691}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 456}, "assignee": {"id": 510}, "organization": {"id": 170}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 81}, "assignee": {"id": 562}, "organization": {"id": 685}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 139, "owner": {"id": 286}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 593}, "organization": {"id": 139}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 293}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 45}, "assignee": {"id": 563}, "organization": {"id": 662}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 549}, "organization": {"id": 179}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 248}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 48}, "assignee": {"id": 567}, "organization": {"id": 105}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 90, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 570}, "organization": {"id": 170}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 85}, "assignee": {"id": 526}, "organization": {"id": 128}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"owner": {"id": 442}, "assignee": {"id": 522}, "organization": {"id": 677}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 295}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 70}, "assignee": {"id": 518}, "organization": {"id": 161}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 223}, "user": {"role": null}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 538}, "organization": {"id": 669}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 132, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 8}, "assignee": {"id": 558}, "organization": {"id": 132}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": {"id": 182, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 582}, "organization": {"id": 611}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 281}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 15}, "assignee": {"id": 529}, "organization": {"id": 667}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"owner": {"id": 440}, "assignee": {"id": 582}, "organization": {"id": 643}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 29}, "assignee": {"id": 583}, "organization": {"id": 662}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 9, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 587}, "organization": {"id": 168}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 70}, "assignee": {"id": 527}, "organization": {"id": 606}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 165, "owner": {"id": 226}, "user": {"role": null}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 536}, "organization": {"id": 165}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 65}, "assignee": {"id": 589}, "organization": {"id": 612}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 583}, "organization": {"id": 175}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 89}, "assignee": {"id": 517}, "organization": {"id": 166}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 90, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 520}, "organization": {"id": 164}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 116, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 27}, "assignee": {"id": 547}, "organization": {"id": 116}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 472}, "assignee": {"id": 583}, "organization": {"id": 628}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 26}, "assignee": {"id": 521}, "organization": {"id": 141}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 503}, "organization": {"id": 685}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 262}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 0}, "assignee": {"id": 517}, "organization": {"id": 128}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 72}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 473}, "assignee": {"id": 504}, "organization": {"id": 627}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"owner": {"id": 46}, "assignee": {"id": 553}, "organization": {"id": 634}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 12, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 561}, "organization": {"id": 679}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 116, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"owner": {"id": 44}, "assignee": {"id": 504}, "organization": {"id": 682}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 507}, "organization": {"id": 167}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"owner": {"id": 43}, "assignee": {"id": 574}, "organization": {"id": 654}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 592}, "organization": {"id": 197}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"owner": {"id": 62}, "assignee": {"id": 534}, "organization": {"id": 683}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 443}, "assignee": {"id": 552}, "organization": {"id": 145}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"owner": {"id": 44}, "assignee": {"id": 529}, "organization": {"id": 183}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 538}, "organization": {"id": 127}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"owner": {"id": 83}, "assignee": {"id": 588}, "organization": {"id": 128}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 501}, "organization": {"id": 698}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 226}, "user": {"role": null}}}, "resource": {"owner": {"id": 37}, "assignee": {"id": 516}, "organization": {"id": 175}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 96, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 520}, "organization": {"id": 675}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"owner": {"id": 17}, "assignee": {"id": 552}, "organization": {"id": 109}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 220}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 477}, "assignee": {"id": 563}, "organization": {"id": 651}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 96}, "organization": {"id": 656}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 460}, "assignee": {"id": 585}, "organization": {"id": 643}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 6}, "organization": {"id": 635}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 500}, "organization": {"id": 126}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 14}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 14}, "organization": {"id": 615}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 541}, "organization": {"id": 127}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 11}, "organization": {"id": 659}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 544}, "organization": {"id": 116}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 485}, "assignee": {"id": 53}, "organization": {"id": 139}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 501}, "organization": {"id": 106}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 457}, "assignee": {"id": 89}, "organization": {"id": 195}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 521}, "organization": {"id": 678}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 11}, "organization": {"id": 167}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 542}, "organization": {"id": 640}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 87}, "organization": {"id": 179}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 492}, "assignee": {"id": 594}, "organization": {"id": 697}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 290}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 409}, "assignee": {"id": 93}, "organization": {"id": 673}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 549}, "organization": {"id": 617}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 466}, "assignee": {"id": 72}, "organization": {"id": 615}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 208}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 557}, "organization": {"id": 159}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 480}, "assignee": {"id": 95}, "organization": {"id": 687}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 592}, "organization": {"id": 168}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 267}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 48}, "organization": {"id": 629}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 531}, "organization": {"id": 157}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 50, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 50}, "organization": {"id": 176}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 582}, "organization": {"id": 145}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 85}, "organization": {"id": 112}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 509}, "organization": {"id": 654}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 220}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 6}, "organization": {"id": 157}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 30, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 555}, "organization": {"id": 609}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 10}, "organization": {"id": 121}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 452}, "assignee": {"id": 526}, "organization": {"id": 612}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 248}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 30}, "organization": {"id": 618}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 521}, "organization": {"id": 634}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 77}, "organization": {"id": 695}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 502}, "organization": {"id": 160}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 67}, "organization": {"id": 676}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 503}, "organization": {"id": 102}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 82}, "organization": {"id": 661}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 548}, "organization": {"id": 116}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 92}, "organization": {"id": 186}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 597}, "organization": {"id": 167}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 98}, "organization": {"id": 108}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 30, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 524}, "organization": {"id": 638}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 39}, "organization": {"id": 159}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 150, "owner": {"id": 244}, "user": {"role": null}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 593}, "organization": {"id": 626}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 483}, "assignee": {"id": 57}, "organization": {"id": 147}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 186, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 571}, "organization": {"id": 692}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 65}, "organization": {"id": 618}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 239}, "user": {"role": null}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 599}, "organization": {"id": 670}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 483}, "assignee": {"id": 32}, "organization": {"id": 691}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 553}, "organization": {"id": 148}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 48}, "organization": {"id": 697}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 12, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 589}, "organization": {"id": 184}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 404}, "assignee": {"id": 78}, "organization": {"id": 630}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 193, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 572}, "organization": {"id": 193}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 47}, "organization": {"id": 174}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 589}, "organization": {"id": 137}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 69}, "organization": {"id": 136}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 483}, "assignee": {"id": 543}, "organization": {"id": 612}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 49}, "organization": {"id": 195}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 558}, "organization": {"id": 632}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 209}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 477}, "assignee": {"id": 27}, "organization": {"id": 194}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 510}, "organization": {"id": 686}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 160, "owner": {"id": 273}, "user": {"role": null}}}, "resource": {"owner": {"id": 409}, "assignee": {"id": 61}, "organization": {"id": 616}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 552}, "organization": {"id": 614}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 160, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 18}, "organization": {"id": 668}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 582}, "organization": {"id": 128}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"owner": {"id": 473}, "assignee": {"id": 51}, "organization": {"id": 640}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 466}, "assignee": {"id": 537}, "organization": {"id": 166}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 189, "owner": {"id": 210}, "user": {"role": null}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 49}, "organization": {"id": 639}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 80}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 519}, "organization": {"id": 182}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 222}, "user": {"role": null}}}, "resource": {"owner": {"id": 443}, "assignee": {"id": 19}, "organization": {"id": 121}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 505}, "organization": {"id": 157}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"owner": {"id": 428}, "assignee": {"id": 77}, "organization": {"id": 194}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 443}, "assignee": {"id": 566}, "organization": {"id": 626}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 75}, "organization": {"id": 182}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 548}, "organization": {"id": 628}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 101, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 36}, "organization": {"id": 101}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 579}, "organization": {"id": 609}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 15}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 15}, "organization": {"id": 695}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 537}, "organization": {"id": 688}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 456}, "assignee": {"id": 82}, "organization": {"id": 624}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 513}, "organization": {"id": 140}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 54}, "organization": {"id": 636}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 559}, "organization": {"id": 145}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 51}, "organization": {"id": 674}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 242}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 520}, "organization": {"id": 124}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 92}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 92}, "organization": {"id": 194}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 132, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 544}, "organization": {"id": 132}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 196, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 63}, "organization": {"id": 196}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 554}, "organization": {"id": 648}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 479}, "assignee": {"id": 74}, "organization": {"id": 181}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 41, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 208}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 502}, "organization": {"id": 600}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 58}, "organization": {"id": 181}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 568}, "organization": {"id": 604}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 10}, "organization": {"id": 600}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 516}, "organization": {"id": 661}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 123, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 479}, "assignee": {"id": 83}, "organization": {"id": 649}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 538}, "organization": {"id": 136}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 199, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 481}, "assignee": {"id": 54}, "organization": {"id": 671}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 501}, "organization": {"id": 158}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 90}, "organization": {"id": 632}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 517}, "organization": {"id": 195}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 456}, "assignee": {"id": 88}, "organization": {"id": 183}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 160, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 506}, "organization": {"id": 160}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 42}, "organization": {"id": 137}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 541}, "organization": {"id": 611}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 11}, "organization": {"id": 180}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 118, "owner": {"id": 250}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 557}, "organization": {"id": 688}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 43}, "organization": {"id": 110}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 176, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 596}, "organization": {"id": 695}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 27}, "organization": {"id": 615}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 217}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 557}, "organization": {"id": 664}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 73}, "organization": {"id": 609}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 582}, "organization": {"id": 104}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 82}, "organization": {"id": 679}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 505}, "organization": {"id": 165}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 208}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 29}, "organization": {"id": 699}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 564}, "organization": {"id": 109}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 29}, "organization": {"id": 191}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 188, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 527}, "organization": {"id": 188}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 10}, "organization": {"id": 120}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"owner": {"id": 419}, "assignee": {"id": 553}, "organization": {"id": 607}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 36}, "organization": {"id": 167}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 532}, "organization": {"id": 637}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 54}, "organization": {"id": 146}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"owner": {"id": 474}, "assignee": {"id": 588}, "organization": {"id": 695}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 58}, "organization": {"id": 687}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 149, "owner": {"id": 254}, "user": {"role": null}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 526}, "organization": {"id": 656}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 61}, "organization": {"id": 670}, "user": {"num_resources": 1}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 531}, "organization": {"id": 129}, "user": {"num_resources": 0}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 28}, "organization": {"id": 680}, "user": {"num_resources": 3}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"owner": {"id": 442}, "assignee": {"id": 598}, "organization": {"id": 195}, "user": {"num_resources": 1}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 82}, "organization": {"id": 663}, "user": {"num_resources": 10}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"owner": {"id": 429}, "assignee": {"id": 557}, "organization": {"id": 148}, "user": {"num_resources": 3}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 492}, "assignee": {"id": 99}, "organization": {"id": 140}, "user": {"num_resources": 0}}} } -test_scope_CREATE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 160, "owner": {"id": 277}, "user": {"role": null}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 539}, "organization": {"id": 160}, "user": {"num_resources": 10}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 19}, "organization": {"id": 158}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": null}, "resource": {"id": 381, "owner": {"id": 78}, "assignee": {"id": 575}, "organization": {"id": 691}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 14}, "organization": {"id": 106}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 91, "privilege": "business"}, "organization": null}, "resource": {"id": 317, "owner": {"id": 91}, "assignee": {"id": 574}, "organization": {"id": 663}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 476}, "assignee": {"id": 84}, "organization": {"id": 160}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": null}, "resource": {"id": 370, "owner": {"id": 15}, "assignee": {"id": 513}, "organization": {"id": 697}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 84}, "organization": {"id": 659}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": null}, "resource": {"id": 323, "owner": {"id": 89}, "assignee": {"id": 526}, "organization": {"id": 613}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"owner": {"id": 434}, "assignee": {"id": 30}, "organization": {"id": 693}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": null}, "resource": {"id": 369, "owner": {"id": 28}, "assignee": {"id": 560}, "organization": {"id": 602}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 254}, "user": {"role": null}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 38}, "organization": {"id": 661}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": null}, "resource": {"id": 397, "owner": {"id": 470}, "assignee": {"id": 42}, "organization": {"id": 601}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 254}, "user": {"role": null}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 8}, "organization": {"id": 654}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": null}, "resource": {"id": 382, "owner": {"id": 450}, "assignee": {"id": 55}, "organization": {"id": 696}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 70}, "organization": {"id": 173}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 22, "privilege": "user"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 465}, "assignee": {"id": 22}, "organization": {"id": 672}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"owner": {"id": 454}, "assignee": {"id": 48}, "organization": {"id": 172}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": null}, "resource": {"id": 345, "owner": {"id": 485}, "assignee": {"id": 88}, "organization": {"id": 682}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 127, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"owner": {"id": 404}, "assignee": {"id": 31}, "organization": {"id": 127}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": null}, "resource": {"id": 317, "owner": {"id": 481}, "assignee": {"id": 96}, "organization": {"id": 676}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 204}, "user": {"role": null}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 71}, "organization": {"id": 152}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": null}, "resource": {"id": 385, "owner": {"id": 456}, "assignee": {"id": 525}, "organization": {"id": 621}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 192, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 36}, "organization": {"id": 655}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": null}, "resource": {"id": 356, "owner": {"id": 411}, "assignee": {"id": 589}, "organization": {"id": 609}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 18}, "organization": {"id": 615}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": null}, "resource": {"id": 330, "owner": {"id": 442}, "assignee": {"id": 530}, "organization": {"id": 669}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 95}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 95}, "organization": {"id": 604}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 12, "privilege": "worker"}, "organization": null}, "resource": {"id": 363, "owner": {"id": 468}, "assignee": {"id": 554}, "organization": {"id": 650}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 48}, "organization": {"id": 612}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": null}, "resource": {"id": 389, "owner": {"id": 492}, "assignee": {"id": 523}, "organization": {"id": 615}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 94}, "organization": {"id": 130}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"id": 311, "owner": {"id": 22}, "assignee": {"id": 550}, "organization": {"id": 658}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 35}, "organization": {"id": 184}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"id": 353, "owner": {"id": 82}, "assignee": {"id": 584}, "organization": {"id": 177}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 18}, "organization": {"id": 190}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 15, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"id": 345, "owner": {"id": 15}, "assignee": {"id": 549}, "organization": {"id": 658}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 131, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 30}, "organization": {"id": 131}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 18}, "assignee": {"id": 510}, "organization": {"id": 135}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 3}, "organization": {"id": 669}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"id": 362, "owner": {"id": 79}, "assignee": {"id": 555}, "organization": {"id": 650}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 63}, "organization": {"id": 676}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 27}, "assignee": {"id": 561}, "organization": {"id": 124}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 193, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 10}, "organization": {"id": 658}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 290}, "user": {"role": "worker"}}}, "resource": {"id": 366, "owner": {"id": 11}, "assignee": {"id": 523}, "organization": {"id": 661}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 18}, "organization": {"id": 619}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 60}, "assignee": {"id": 525}, "organization": {"id": 129}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 35}, "organization": {"id": 118}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 237}, "user": {"role": null}}}, "resource": {"id": 365, "owner": {"id": 35}, "assignee": {"id": 545}, "organization": {"id": 677}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 96}, "organization": {"id": 162}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 373, "owner": {"id": 42}, "assignee": {"id": 511}, "organization": {"id": 162}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 15}, "organization": {"id": 195}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 373, "owner": {"id": 44}, "assignee": {"id": 585}, "organization": {"id": 601}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 48}, "organization": {"id": 156}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 317, "owner": {"id": 62}, "assignee": {"id": 587}, "organization": {"id": 163}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 463}, "assignee": {"id": 37}, "organization": {"id": 631}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 297}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 44}, "assignee": {"id": 533}, "organization": {"id": 645}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 94}, "organization": {"id": 663}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 345, "owner": {"id": 77}, "assignee": {"id": 585}, "organization": {"id": 147}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 56}, "organization": {"id": 643}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 97}, "assignee": {"id": 592}, "organization": {"id": 642}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 424}, "assignee": {"id": 47}, "organization": {"id": 682}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 327, "owner": {"id": 92}, "assignee": {"id": 500}, "organization": {"id": 164}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 40}, "organization": {"id": 170}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"id": 395, "owner": {"id": 60}, "assignee": {"id": 534}, "organization": {"id": 637}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 49}, "organization": {"id": 121}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 31}, "assignee": {"id": 507}, "organization": {"id": 103}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 294}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 492}, "assignee": {"id": 66}, "organization": {"id": 109}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 31}, "assignee": {"id": 515}, "organization": {"id": 659}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 404}, "assignee": {"id": 18}, "organization": {"id": 173}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 322, "owner": {"id": 79}, "assignee": {"id": 533}, "organization": {"id": 145}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 244}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 41}, "organization": {"id": 686}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 323, "owner": {"id": 32}, "assignee": {"id": 520}, "organization": {"id": 698}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 83}, "organization": {"id": 601}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"id": 396, "owner": {"id": 71}, "assignee": {"id": 569}, "organization": {"id": 184}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 138, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 479}, "assignee": {"id": 10}, "organization": {"id": 659}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 270}, "user": {"role": "maintainer"}}}, "resource": {"id": 364, "owner": {"id": 42}, "assignee": {"id": 533}, "organization": {"id": 680}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 94}, "organization": {"id": 614}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 40}, "assignee": {"id": 544}, "organization": {"id": 129}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 456}, "assignee": {"id": 62}, "organization": {"id": 181}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 110, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"id": 389, "owner": {"id": 19}, "assignee": {"id": 543}, "organization": {"id": 624}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 463}, "assignee": {"id": 16}, "organization": {"id": 190}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 294}, "user": {"role": "supervisor"}}}, "resource": {"id": 314, "owner": {"id": 34}, "assignee": {"id": 557}, "organization": {"id": 162}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 440}, "assignee": {"id": 59}, "organization": {"id": 183}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 316, "owner": {"id": 83}, "assignee": {"id": 580}, "organization": {"id": 696}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 80}, "organization": {"id": 134}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 61}, "assignee": {"id": 501}, "organization": {"id": 161}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 214}, "user": {"role": null}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 79}, "organization": {"id": 620}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 396, "owner": {"id": 91}, "assignee": {"id": 538}, "organization": {"id": 671}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 19}, "organization": {"id": 641}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 71}, "assignee": {"id": 501}, "organization": {"id": 101}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 90, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 273}, "user": {"role": null}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 90}, "organization": {"id": 679}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 386, "owner": {"id": 70}, "assignee": {"id": 523}, "organization": {"id": 636}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 81, "privilege": "user"}, "organization": {"id": 122, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"owner": {"id": 428}, "assignee": {"id": 81}, "organization": {"id": 634}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 45}, "user": {"role": "owner"}}}, "resource": {"id": 322, "owner": {"id": 45}, "assignee": {"id": 518}, "organization": {"id": 123}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 57}, "organization": {"id": 199}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 78}, "assignee": {"id": 572}, "organization": {"id": 639}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 31}, "organization": {"id": 125}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 22}, "assignee": {"id": 528}, "organization": {"id": 114}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 67}, "organization": {"id": 136}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 200}, "user": {"role": "supervisor"}}}, "resource": {"id": 336, "owner": {"id": 18}, "assignee": {"id": 530}, "organization": {"id": 657}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 5}, "organization": {"id": 108}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 8}, "assignee": {"id": 574}, "organization": {"id": 171}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 56}, "organization": {"id": 664}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 12, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 12}, "assignee": {"id": 585}, "organization": {"id": 682}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 152, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 409}, "assignee": {"id": 71}, "organization": {"id": 606}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 245}, "user": {"role": "worker"}}}, "resource": {"id": 310, "owner": {"id": 49}, "assignee": {"id": 540}, "organization": {"id": 119}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 479}, "assignee": {"id": 79}, "organization": {"id": 642}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 399, "owner": {"id": 64}, "assignee": {"id": 551}, "organization": {"id": 647}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 492}, "assignee": {"id": 13}, "organization": {"id": 629}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 3, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 254}, "user": {"role": null}}}, "resource": {"id": 343, "owner": {"id": 3}, "assignee": {"id": 590}, "organization": {"id": 146}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 69}, "organization": {"id": 120}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 42}, "assignee": {"id": 508}, "organization": {"id": 673}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 8}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 476}, "assignee": {"id": 8}, "organization": {"id": 110}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 352, "owner": {"id": 73}, "assignee": {"id": 517}, "organization": {"id": 173}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 24}, "organization": {"id": 175}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 217}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 43}, "assignee": {"id": 502}, "organization": {"id": 647}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 434}, "assignee": {"id": 55}, "organization": {"id": 138}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 73}, "assignee": {"id": 553}, "organization": {"id": 198}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 456}, "assignee": {"id": 27}, "organization": {"id": 651}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 316, "owner": {"id": 87}, "assignee": {"id": 504}, "organization": {"id": 693}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 476}, "assignee": {"id": 53}, "organization": {"id": 665}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 74}, "assignee": {"id": 561}, "organization": {"id": 108}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 452}, "assignee": {"id": 58}, "organization": {"id": 667}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 324, "owner": {"id": 8}, "assignee": {"id": 579}, "organization": {"id": 697}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 424}, "assignee": {"id": 35}, "organization": {"id": 634}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 390, "owner": {"id": 71}, "assignee": {"id": 552}, "organization": {"id": 119}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 289}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 474}, "assignee": {"id": 88}, "organization": {"id": 140}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"id": 336, "owner": {"id": 50}, "assignee": {"id": 508}, "organization": {"id": 687}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 129, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 71}, "organization": {"id": 129}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": {"id": 188, "owner": {"id": 254}, "user": {"role": null}}}, "resource": {"id": 362, "owner": {"id": 88}, "assignee": {"id": 570}, "organization": {"id": 188}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 70}, "organization": {"id": 166}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"id": 300, "owner": {"id": 409}, "assignee": {"id": 47}, "organization": {"id": 689}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 76}, "organization": {"id": 143}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"id": 372, "owner": {"id": 401}, "assignee": {"id": 79}, "organization": {"id": 150}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 9}, "organization": {"id": 672}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 332, "owner": {"id": 493}, "assignee": {"id": 13}, "organization": {"id": 676}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 87}, "organization": {"id": 655}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"id": 366, "owner": {"id": 466}, "assignee": {"id": 93}, "organization": {"id": 175}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 442}, "assignee": {"id": 20}, "organization": {"id": 674}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"id": 393, "owner": {"id": 454}, "assignee": {"id": 56}, "organization": {"id": 676}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 83}, "organization": {"id": 628}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"id": 384, "owner": {"id": 487}, "assignee": {"id": 2}, "organization": {"id": 118}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 476}, "assignee": {"id": 19}, "organization": {"id": 102}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 482}, "assignee": {"id": 70}, "organization": {"id": 694}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 21}, "organization": {"id": 149}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 156, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"id": 320, "owner": {"id": 462}, "assignee": {"id": 41}, "organization": {"id": 156}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 264}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 463}, "assignee": {"id": 5}, "organization": {"id": 180}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 490}, "assignee": {"id": 8}, "organization": {"id": 664}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 95}, "organization": {"id": 180}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 224}, "user": {"role": null}}}, "resource": {"id": 302, "owner": {"id": 438}, "assignee": {"id": 73}, "organization": {"id": 108}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 46}, "organization": {"id": 681}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 303, "owner": {"id": 468}, "assignee": {"id": 32}, "organization": {"id": 655}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 463}, "assignee": {"id": 87}, "organization": {"id": 648}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 408}, "assignee": {"id": 24}, "organization": {"id": 164}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 440}, "assignee": {"id": 0}, "organization": {"id": 675}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 469}, "assignee": {"id": 39}, "organization": {"id": 686}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 84}, "organization": {"id": 698}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 471}, "assignee": {"id": 37}, "organization": {"id": 101}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 224}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 8}, "organization": {"id": 118}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 485}, "assignee": {"id": 0}, "organization": {"id": 680}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 59}, "organization": {"id": 140}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 420}, "assignee": {"id": 25}, "organization": {"id": 187}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 150, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 97}, "organization": {"id": 150}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 358, "owner": {"id": 474}, "assignee": {"id": 52}, "organization": {"id": 635}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 476}, "assignee": {"id": 89}, "organization": {"id": 144}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"id": 395, "owner": {"id": 482}, "assignee": {"id": 20}, "organization": {"id": 148}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 249}, "user": {"role": null}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 41}, "organization": {"id": 654}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"id": 362, "owner": {"id": 400}, "assignee": {"id": 15}, "organization": {"id": 613}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 210}, "user": {"role": null}}}, "resource": {"owner": {"id": 409}, "assignee": {"id": 33}, "organization": {"id": 617}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 391, "owner": {"id": 441}, "assignee": {"id": 72}, "organization": {"id": 163}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 26}, "organization": {"id": 646}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 353, "owner": {"id": 491}, "assignee": {"id": 86}, "organization": {"id": 631}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 40}, "organization": {"id": 690}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 72}, "user": {"role": "owner"}}}, "resource": {"id": 376, "owner": {"id": 413}, "assignee": {"id": 72}, "organization": {"id": 198}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"owner": {"id": 463}, "assignee": {"id": 20}, "organization": {"id": 189}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 128, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 466}, "assignee": {"id": 73}, "organization": {"id": 690}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 10}, "organization": {"id": 133}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 138, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 485}, "assignee": {"id": 31}, "organization": {"id": 138}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"owner": {"id": 492}, "assignee": {"id": 89}, "organization": {"id": 148}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"id": 353, "owner": {"id": 483}, "assignee": {"id": 77}, "organization": {"id": 699}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 29}, "organization": {"id": 125}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 11, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 310, "owner": {"id": 471}, "assignee": {"id": 11}, "organization": {"id": 180}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 41, "privilege": "none"}, "organization": {"id": 160, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 41}, "organization": {"id": 603}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 486}, "assignee": {"id": 73}, "organization": {"id": 648}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 2}, "organization": {"id": 671}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 139, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 398, "owner": {"id": 446}, "assignee": {"id": 41}, "organization": {"id": 139}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 45}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 45}, "organization": {"id": 634}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 462}, "assignee": {"id": 30}, "organization": {"id": 651}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 65}, "organization": {"id": 648}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 478}, "assignee": {"id": 28}, "organization": {"id": 111}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 485}, "assignee": {"id": 86}, "organization": {"id": 197}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"id": 383, "owner": {"id": 434}, "assignee": {"id": 26}, "organization": {"id": 632}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 13}, "organization": {"id": 172}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 95}, "user": {"role": "owner"}}}, "resource": {"id": 350, "owner": {"id": 403}, "assignee": {"id": 95}, "organization": {"id": 124}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 86}, "organization": {"id": 147}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"id": 349, "owner": {"id": 477}, "assignee": {"id": 94}, "organization": {"id": 641}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 190, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 481}, "assignee": {"id": 79}, "organization": {"id": 190}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"id": 323, "owner": {"id": 461}, "assignee": {"id": 73}, "organization": {"id": 180}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 188, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 96}, "organization": {"id": 603}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 362, "owner": {"id": 480}, "assignee": {"id": 62}, "organization": {"id": 685}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 80}, "organization": {"id": 601}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 12, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 465}, "assignee": {"id": 12}, "organization": {"id": 164}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 54}, "organization": {"id": 658}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"id": 374, "owner": {"id": 411}, "assignee": {"id": 87}, "organization": {"id": 625}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 19}, "organization": {"id": 645}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 100, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 321, "owner": {"id": 401}, "assignee": {"id": 57}, "organization": {"id": 100}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 11}, "organization": {"id": 144}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 497}, "assignee": {"id": 75}, "organization": {"id": 647}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 45}, "organization": {"id": 140}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 404}, "assignee": {"id": 37}, "organization": {"id": 130}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 83}, "organization": {"id": 153}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": {"id": 160, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 324, "owner": {"id": 436}, "assignee": {"id": 34}, "organization": {"id": 690}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 178, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 95}, "organization": {"id": 178}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 426}, "assignee": {"id": 55}, "organization": {"id": 141}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 44}, "organization": {"id": 666}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 479}, "assignee": {"id": 3}, "organization": {"id": 656}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 480}, "assignee": {"id": 46}, "organization": {"id": 624}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 160, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 434}, "assignee": {"id": 27}, "organization": {"id": 160}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 200}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 419}, "assignee": {"id": 33}, "organization": {"id": 652}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 107, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 307, "owner": {"id": 437}, "assignee": {"id": 74}, "organization": {"id": 630}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 17}, "organization": {"id": 662}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 210}, "user": {"role": "supervisor"}}}, "resource": {"id": 385, "owner": {"id": 489}, "assignee": {"id": 48}, "organization": {"id": 185}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 132, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 52}, "organization": {"id": 132}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"id": 374, "owner": {"id": 494}, "assignee": {"id": 95}, "organization": {"id": 603}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 41, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 41}, "organization": {"id": 195}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 423}, "assignee": {"id": 43}, "organization": {"id": 143}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 81}, "organization": {"id": 143}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 142, "owner": {"id": 273}, "user": {"role": null}}}, "resource": {"id": 343, "owner": {"id": 482}, "assignee": {"id": 93}, "organization": {"id": 644}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 434}, "assignee": {"id": 8}, "organization": {"id": 184}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 305, "owner": {"id": 441}, "assignee": {"id": 54}, "organization": {"id": 196}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 16}, "organization": {"id": 690}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 101, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"id": 321, "owner": {"id": 477}, "assignee": {"id": 521}, "organization": {"id": 610}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 429}, "assignee": {"id": 24}, "organization": {"id": 611}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"id": 321, "owner": {"id": 462}, "assignee": {"id": 557}, "organization": {"id": 115}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 94}, "organization": {"id": 619}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 270}, "user": {"role": "maintainer"}}}, "resource": {"id": 324, "owner": {"id": 458}, "assignee": {"id": 576}, "organization": {"id": 603}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 176, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 32}, "organization": {"id": 622}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 267}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 473}, "assignee": {"id": 578}, "organization": {"id": 142}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 23}, "organization": {"id": 148}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 210}, "user": {"role": "supervisor"}}}, "resource": {"id": 361, "owner": {"id": 474}, "assignee": {"id": 501}, "organization": {"id": 699}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 150, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 97}, "organization": {"id": 150}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 163, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"id": 323, "owner": {"id": 481}, "assignee": {"id": 581}, "organization": {"id": 163}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 244}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 11}, "organization": {"id": 145}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 156, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 377, "owner": {"id": 405}, "assignee": {"id": 542}, "organization": {"id": 616}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 477}, "assignee": {"id": 10}, "organization": {"id": 138}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"id": 388, "owner": {"id": 497}, "assignee": {"id": 599}, "organization": {"id": 147}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 95}, "organization": {"id": 633}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 160, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"id": 311, "owner": {"id": 434}, "assignee": {"id": 501}, "organization": {"id": 638}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 16}, "organization": {"id": 632}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 479}, "assignee": {"id": 513}, "organization": {"id": 178}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 22}, "organization": {"id": 675}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 326, "owner": {"id": 407}, "assignee": {"id": 506}, "organization": {"id": 683}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 254}, "user": {"role": null}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 85}, "organization": {"id": 643}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 318, "owner": {"id": 458}, "assignee": {"id": 575}, "organization": {"id": 141}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"owner": {"id": 483}, "assignee": {"id": 86}, "organization": {"id": 103}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 480}, "assignee": {"id": 541}, "organization": {"id": 666}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 37}, "organization": {"id": 141}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 433}, "assignee": {"id": 595}, "organization": {"id": 119}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"owner": {"id": 434}, "assignee": {"id": 98}, "organization": {"id": 180}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 189, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"id": 323, "owner": {"id": 470}, "assignee": {"id": 502}, "organization": {"id": 611}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 20}, "organization": {"id": 170}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"id": 348, "owner": {"id": 472}, "assignee": {"id": 514}, "organization": {"id": 150}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 557}, "organization": {"id": 684}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 442}, "assignee": {"id": 502}, "organization": {"id": 685}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 480}, "assignee": {"id": 552}, "organization": {"id": 632}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 312, "owner": {"id": 423}, "assignee": {"id": 546}, "organization": {"id": 111}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 518}, "organization": {"id": 616}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"id": 382, "owner": {"id": 487}, "assignee": {"id": 577}, "organization": {"id": 691}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 163, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 556}, "organization": {"id": 628}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 342, "owner": {"id": 436}, "assignee": {"id": 569}, "organization": {"id": 124}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 156, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 480}, "assignee": {"id": 555}, "organization": {"id": 156}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"id": 383, "owner": {"id": 462}, "assignee": {"id": 544}, "organization": {"id": 692}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 525}, "organization": {"id": 134}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 492}, "assignee": {"id": 516}, "organization": {"id": 190}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 502}, "organization": {"id": 142}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"id": 398, "owner": {"id": 401}, "assignee": {"id": 538}, "organization": {"id": 658}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 594}, "organization": {"id": 129}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"id": 389, "owner": {"id": 448}, "assignee": {"id": 521}, "organization": {"id": 162}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 473}, "assignee": {"id": 591}, "organization": {"id": 625}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 470}, "assignee": {"id": 533}, "organization": {"id": 654}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 574}, "organization": {"id": 690}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 414}, "assignee": {"id": 521}, "organization": {"id": 184}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 595}, "organization": {"id": 640}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 452}, "assignee": {"id": 578}, "organization": {"id": 664}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 578}, "organization": {"id": 639}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"id": 328, "owner": {"id": 407}, "assignee": {"id": 512}, "organization": {"id": 155}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 538}, "organization": {"id": 159}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 401}, "assignee": {"id": 598}, "organization": {"id": 627}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 545}, "organization": {"id": 153}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 68, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 394, "owner": {"id": 438}, "assignee": {"id": 503}, "organization": {"id": 125}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 442}, "assignee": {"id": 529}, "organization": {"id": 112}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 483}, "assignee": {"id": 586}, "organization": {"id": 684}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 521}, "organization": {"id": 105}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 376, "owner": {"id": 404}, "assignee": {"id": 598}, "organization": {"id": 138}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 502}, "organization": {"id": 695}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 408}, "assignee": {"id": 559}, "organization": {"id": 657}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 294}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 519}, "organization": {"id": 680}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 431}, "assignee": {"id": 512}, "organization": {"id": 155}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 540}, "organization": {"id": 676}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 208}, "user": {"role": "supervisor"}}}, "resource": {"id": 343, "owner": {"id": 412}, "assignee": {"id": 584}, "organization": {"id": 655}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 132, "owner": {"id": 216}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 424}, "assignee": {"id": 561}, "organization": {"id": 686}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 489}, "assignee": {"id": 588}, "organization": {"id": 115}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 472}, "assignee": {"id": 593}, "organization": {"id": 145}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 319, "owner": {"id": 457}, "assignee": {"id": 533}, "organization": {"id": 695}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": {"id": 190, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 541}, "organization": {"id": 190}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"id": 317, "owner": {"id": 450}, "assignee": {"id": 508}, "organization": {"id": 113}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 515}, "organization": {"id": 120}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"id": 305, "owner": {"id": 410}, "assignee": {"id": 527}, "organization": {"id": 672}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 248}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 517}, "organization": {"id": 128}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 442}, "assignee": {"id": 563}, "organization": {"id": 174}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 501}, "organization": {"id": 624}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 407}, "assignee": {"id": 506}, "organization": {"id": 671}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 452}, "assignee": {"id": 523}, "organization": {"id": 655}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"id": 311, "owner": {"id": 443}, "assignee": {"id": 544}, "organization": {"id": 174}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 534}, "organization": {"id": 600}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"id": 323, "owner": {"id": 454}, "assignee": {"id": 575}, "organization": {"id": 678}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 156, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 566}, "organization": {"id": 672}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 156, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"id": 312, "owner": {"id": 416}, "assignee": {"id": 573}, "organization": {"id": 156}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 556}, "organization": {"id": 179}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 370, "owner": {"id": 481}, "assignee": {"id": 575}, "organization": {"id": 614}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 501}, "organization": {"id": 187}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 320, "owner": {"id": 454}, "assignee": {"id": 533}, "organization": {"id": 161}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 214}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 514}, "organization": {"id": 168}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 245}, "user": {"role": "worker"}}}, "resource": {"id": 320, "owner": {"id": 458}, "assignee": {"id": 555}, "organization": {"id": 625}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 132, "owner": {"id": 250}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 505}, "organization": {"id": 132}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 328, "owner": {"id": 475}, "assignee": {"id": 520}, "organization": {"id": 109}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 210}, "user": {"role": null}}}, "resource": {"owner": {"id": 442}, "assignee": {"id": 502}, "organization": {"id": 674}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 415}, "assignee": {"id": 581}, "organization": {"id": 630}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 552}, "organization": {"id": 666}, "user": {"num_resources": 1}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 378, "owner": {"id": 405}, "assignee": {"id": 577}, "organization": {"id": 126}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 574}, "organization": {"id": 696}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": null}, "resource": {"id": 387, "owner": {"id": 66}, "assignee": {"id": 525}, "organization": {"id": 659}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"owner": {"id": 454}, "assignee": {"id": 531}, "organization": {"id": 613}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": null}, "resource": {"id": 362, "owner": {"id": 93}, "assignee": {"id": 525}, "organization": {"id": 623}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 595}, "organization": {"id": 105}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 9, "privilege": "user"}, "organization": null}, "resource": {"id": 398, "owner": {"id": 9}, "assignee": {"id": 503}, "organization": {"id": 612}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 568}, "organization": {"id": 157}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": null}, "resource": {"id": 348, "owner": {"id": 81}, "assignee": {"id": 567}, "organization": {"id": 659}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"owner": {"id": 452}, "assignee": {"id": 521}, "organization": {"id": 180}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": null}, "resource": {"id": 357, "owner": {"id": 83}, "assignee": {"id": 532}, "organization": {"id": 634}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 127, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 514}, "organization": {"id": 127}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": null}, "resource": {"id": 308, "owner": {"id": 425}, "assignee": {"id": 91}, "organization": {"id": 602}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 424}, "assignee": {"id": 574}, "organization": {"id": 602}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": null}, "resource": {"id": 395, "owner": {"id": 436}, "assignee": {"id": 50}, "organization": {"id": 622}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 426}, "assignee": {"id": 556}, "organization": {"id": 638}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": null}, "resource": {"id": 359, "owner": {"id": 413}, "assignee": {"id": 17}, "organization": {"id": 690}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 509}, "organization": {"id": 661}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": null}, "resource": {"id": 302, "owner": {"id": 492}, "assignee": {"id": 55}, "organization": {"id": 684}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 16, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 477}, "assignee": {"id": 522}, "organization": {"id": 690}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": null}, "resource": {"id": 360, "owner": {"id": 447}, "assignee": {"id": 23}, "organization": {"id": 678}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 542}, "organization": {"id": 183}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": null}, "resource": {"id": 347, "owner": {"id": 487}, "assignee": {"id": 507}, "organization": {"id": 657}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 45}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 553}, "organization": {"id": 161}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 414}, "assignee": {"id": 579}, "organization": {"id": 620}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 570}, "organization": {"id": 112}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": null}, "resource": {"id": 340, "owner": {"id": 498}, "assignee": {"id": 523}, "organization": {"id": 687}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 558}, "organization": {"id": 137}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": null}, "resource": {"id": 374, "owner": {"id": 478}, "assignee": {"id": 520}, "organization": {"id": 604}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 500}, "organization": {"id": 624}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": null}, "resource": {"id": 357, "owner": {"id": 492}, "assignee": {"id": 578}, "organization": {"id": 665}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 517}, "organization": {"id": 670}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 43}, "assignee": {"id": 512}, "organization": {"id": 629}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 544}, "organization": {"id": 670}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"id": 328, "owner": {"id": 23}, "assignee": {"id": 518}, "organization": {"id": 194}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 505}, "organization": {"id": 658}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 324, "owner": {"id": 75}, "assignee": {"id": 555}, "organization": {"id": 628}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 159, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 522}, "organization": {"id": 159}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 303, "owner": {"id": 43}, "assignee": {"id": 539}, "organization": {"id": 121}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 567}, "organization": {"id": 170}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 86}, "assignee": {"id": 534}, "organization": {"id": 624}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 276}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 581}, "organization": {"id": 106}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 76, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"id": 336, "owner": {"id": 76}, "assignee": {"id": 580}, "organization": {"id": 199}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 460}, "assignee": {"id": 514}, "organization": {"id": 144}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 361, "owner": {"id": 60}, "assignee": {"id": 575}, "organization": {"id": 628}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 294}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 581}, "organization": {"id": 606}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 55}, "assignee": {"id": 531}, "organization": {"id": 108}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 553}, "organization": {"id": 637}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 239}, "user": {"role": null}}}, "resource": {"id": 315, "owner": {"id": 67}, "assignee": {"id": 599}, "organization": {"id": 610}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 502}, "organization": {"id": 640}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 398, "owner": {"id": 78}, "assignee": {"id": 556}, "organization": {"id": 191}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 245}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 504}, "organization": {"id": 653}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 39}, "assignee": {"id": 592}, "organization": {"id": 635}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 200}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 511}, "organization": {"id": 158}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 349, "owner": {"id": 41}, "assignee": {"id": 505}, "organization": {"id": 182}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 586}, "organization": {"id": 111}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 361, "owner": {"id": 97}, "assignee": {"id": 545}, "organization": {"id": 686}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 64, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 584}, "organization": {"id": 146}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 52}, "assignee": {"id": 575}, "organization": {"id": 116}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 586}, "organization": {"id": 110}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 294}, "user": {"role": "supervisor"}}}, "resource": {"id": 336, "owner": {"id": 65}, "assignee": {"id": 553}, "organization": {"id": 639}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 139, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 569}, "organization": {"id": 684}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 245}, "user": {"role": "supervisor"}}}, "resource": {"id": 301, "owner": {"id": 67}, "assignee": {"id": 507}, "organization": {"id": 137}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 592}, "organization": {"id": 661}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 244}, "user": {"role": "worker"}}}, "resource": {"id": 370, "owner": {"id": 84}, "assignee": {"id": 538}, "organization": {"id": 650}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 214}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 523}, "organization": {"id": 674}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 166, "owner": {"id": 290}, "user": {"role": "worker"}}}, "resource": {"id": 303, "owner": {"id": 44}, "assignee": {"id": 536}, "organization": {"id": 166}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 535}, "organization": {"id": 627}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"id": 359, "owner": {"id": 93}, "assignee": {"id": 586}, "organization": {"id": 604}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 64, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 572}, "organization": {"id": 112}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 17}, "assignee": {"id": 538}, "organization": {"id": 156}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 520}, "organization": {"id": 158}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 128, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 32}, "assignee": {"id": 517}, "organization": {"id": 617}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 419}, "assignee": {"id": 521}, "organization": {"id": 138}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 88}, "assignee": {"id": 568}, "organization": {"id": 111}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 569}, "organization": {"id": 180}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"id": 350, "owner": {"id": 53}, "assignee": {"id": 506}, "organization": {"id": 642}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 553}, "organization": {"id": 667}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 300, "owner": {"id": 98}, "assignee": {"id": 540}, "organization": {"id": 127}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 523}, "organization": {"id": 624}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 293}, "user": {"role": "supervisor"}}}, "resource": {"id": 323, "owner": {"id": 86}, "assignee": {"id": 523}, "organization": {"id": 665}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 568}, "organization": {"id": 628}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 14, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 14}, "assignee": {"id": 579}, "organization": {"id": 120}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 545}, "organization": {"id": 609}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 40}, "assignee": {"id": 516}, "organization": {"id": 666}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 568}, "organization": {"id": 126}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 98}, "assignee": {"id": 523}, "organization": {"id": 196}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 529}, "organization": {"id": 117}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 80}, "assignee": {"id": 524}, "organization": {"id": 680}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"owner": {"id": 457}, "assignee": {"id": 533}, "organization": {"id": 125}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 172, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 325, "owner": {"id": 95}, "assignee": {"id": 548}, "organization": {"id": 172}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"owner": {"id": 440}, "assignee": {"id": 568}, "organization": {"id": 172}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 14}, "user": {"role": "owner"}}}, "resource": {"id": 357, "owner": {"id": 14}, "assignee": {"id": 529}, "organization": {"id": 683}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 592}, "organization": {"id": 605}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 82}, "assignee": {"id": 593}, "organization": {"id": 125}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 595}, "organization": {"id": 669}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"id": 343, "owner": {"id": 53}, "assignee": {"id": 523}, "organization": {"id": 641}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 552}, "organization": {"id": 689}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 12, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"id": 397, "owner": {"id": 12}, "assignee": {"id": 588}, "organization": {"id": 164}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 559}, "organization": {"id": 623}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"id": 361, "owner": {"id": 40}, "assignee": {"id": 556}, "organization": {"id": 617}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 81, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 594}, "organization": {"id": 103}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 56}, "assignee": {"id": 528}, "organization": {"id": 116}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 540}, "organization": {"id": 134}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 322, "owner": {"id": 93}, "assignee": {"id": 582}, "organization": {"id": 648}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 537}, "organization": {"id": 155}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"id": 305, "owner": {"id": 58}, "assignee": {"id": 510}, "organization": {"id": 162}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 544}, "organization": {"id": 111}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"id": 332, "owner": {"id": 16}, "assignee": {"id": 547}, "organization": {"id": 641}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 571}, "organization": {"id": 656}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 46}, "assignee": {"id": 575}, "organization": {"id": 111}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 599}, "organization": {"id": 665}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 10}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 10}, "assignee": {"id": 504}, "organization": {"id": 676}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 594}, "organization": {"id": 612}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 16}, "assignee": {"id": 542}, "organization": {"id": 133}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 596}, "organization": {"id": 630}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 43}, "assignee": {"id": 592}, "organization": {"id": 689}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 122, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 571}, "organization": {"id": 122}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"id": 343, "owner": {"id": 93}, "assignee": {"id": 507}, "organization": {"id": 180}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 90, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 527}, "organization": {"id": 121}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 338, "owner": {"id": 64}, "assignee": {"id": 544}, "organization": {"id": 608}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 514}, "organization": {"id": 124}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 245}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 96}, "assignee": {"id": 552}, "organization": {"id": 194}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 404}, "assignee": {"id": 532}, "organization": {"id": 156}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 38}, "assignee": {"id": 531}, "organization": {"id": 677}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 265}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 466}, "assignee": {"id": 501}, "organization": {"id": 670}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 22}, "assignee": {"id": 572}, "organization": {"id": 129}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 110, "owner": {"id": 248}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 591}, "organization": {"id": 662}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"id": 311, "owner": {"id": 36}, "assignee": {"id": 549}, "organization": {"id": 697}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 481}, "assignee": {"id": 500}, "organization": {"id": 619}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 149, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 28}, "assignee": {"id": 533}, "organization": {"id": 149}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 14, "privilege": "user"}, "organization": {"id": 172, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 524}, "organization": {"id": 633}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 311, "owner": {"id": 466}, "assignee": {"id": 11}, "organization": {"id": 679}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 515}, "organization": {"id": 153}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"id": 364, "owner": {"id": 410}, "assignee": {"id": 17}, "organization": {"id": 113}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + allow with input as {"scope": "import:backup", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 599}, "organization": {"id": 175}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"id": 358, "owner": {"id": 494}, "assignee": {"id": 26}, "organization": {"id": 652}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 428}, "assignee": {"id": 571}, "organization": {"id": 115}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"id": 327, "owner": {"id": 457}, "assignee": {"id": 80}, "organization": {"id": 121}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 579}, "organization": {"id": 147}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 205}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 437}, "assignee": {"id": 11}, "organization": {"id": 627}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 561}, "organization": {"id": 640}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 359, "owner": {"id": 438}, "assignee": {"id": 17}, "organization": {"id": 193}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 45, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 286}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 582}, "organization": {"id": 668}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 116, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 400}, "assignee": {"id": 97}, "organization": {"id": 602}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 224}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 509}, "organization": {"id": 634}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 99, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 343, "owner": {"id": 498}, "assignee": {"id": 99}, "organization": {"id": 194}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 543}, "organization": {"id": 642}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 484}, "assignee": {"id": 33}, "organization": {"id": 616}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 466}, "assignee": {"id": 517}, "organization": {"id": 121}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"id": 373, "owner": {"id": 421}, "assignee": {"id": 79}, "organization": {"id": 182}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 122, "owner": {"id": 245}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 482}, "assignee": {"id": 514}, "organization": {"id": 122}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 492}, "assignee": {"id": 25}, "organization": {"id": 651}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 511}, "organization": {"id": 141}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"id": 301, "owner": {"id": 436}, "assignee": {"id": 79}, "organization": {"id": 194}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 419}, "assignee": {"id": 547}, "organization": {"id": 135}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 364, "owner": {"id": 492}, "assignee": {"id": 0}, "organization": {"id": 668}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"owner": {"id": 424}, "assignee": {"id": 560}, "organization": {"id": 686}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 123, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 470}, "assignee": {"id": 8}, "organization": {"id": 123}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 506}, "organization": {"id": 636}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 301, "owner": {"id": 425}, "assignee": {"id": 63}, "organization": {"id": 685}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 507}, "organization": {"id": 653}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 363, "owner": {"id": 499}, "assignee": {"id": 49}, "organization": {"id": 187}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 68, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"owner": {"id": 461}, "assignee": {"id": 592}, "organization": {"id": 638}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"id": 342, "owner": {"id": 444}, "assignee": {"id": 52}, "organization": {"id": 609}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 123, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 572}, "organization": {"id": 123}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 290}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 408}, "assignee": {"id": 96}, "organization": {"id": 120}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 277}, "user": {"role": null}}}, "resource": {"owner": {"id": 485}, "assignee": {"id": 508}, "organization": {"id": 143}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 452}, "assignee": {"id": 77}, "organization": {"id": 645}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"owner": {"id": 409}, "assignee": {"id": 541}, "organization": {"id": 184}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 490}, "assignee": {"id": 44}, "organization": {"id": 103}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"owner": {"id": 492}, "assignee": {"id": 535}, "organization": {"id": 171}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 445}, "assignee": {"id": 65}, "organization": {"id": 663}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 48, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 532}, "organization": {"id": 602}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 319, "owner": {"id": 401}, "assignee": {"id": 74}, "organization": {"id": 133}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 544}, "organization": {"id": 607}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 420}, "assignee": {"id": 49}, "organization": {"id": 653}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 509}, "organization": {"id": 677}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 494}, "assignee": {"id": 69}, "organization": {"id": 103}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 20}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 419}, "assignee": {"id": 555}, "organization": {"id": 626}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 334, "owner": {"id": 452}, "assignee": {"id": 72}, "organization": {"id": 671}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 461}, "assignee": {"id": 582}, "organization": {"id": 181}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 489}, "assignee": {"id": 21}, "organization": {"id": 142}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 25, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 587}, "organization": {"id": 108}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 365, "owner": {"id": 408}, "assignee": {"id": 38}, "organization": {"id": 654}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 509}, "organization": {"id": 177}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 250}, "user": {"role": "worker"}}}, "resource": {"id": 390, "owner": {"id": 434}, "assignee": {"id": 26}, "organization": {"id": 109}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 532}, "organization": {"id": 121}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 345, "owner": {"id": 400}, "assignee": {"id": 55}, "organization": {"id": 630}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 596}, "organization": {"id": 659}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 68, "privilege": "user"}, "organization": {"id": 105, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 347, "owner": {"id": 463}, "assignee": {"id": 68}, "organization": {"id": 105}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 557}, "organization": {"id": 675}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 364, "owner": {"id": 457}, "assignee": {"id": 62}, "organization": {"id": 673}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 530}, "organization": {"id": 682}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 112, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 321, "owner": {"id": 411}, "assignee": {"id": 99}, "organization": {"id": 112}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 591}, "organization": {"id": 614}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 393, "owner": {"id": 432}, "assignee": {"id": 31}, "organization": {"id": 612}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 545}, "organization": {"id": 124}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 267}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 447}, "assignee": {"id": 35}, "organization": {"id": 116}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 25, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 593}, "organization": {"id": 169}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 429}, "assignee": {"id": 29}, "organization": {"id": 603}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 550}, "organization": {"id": 179}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 141, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 373, "owner": {"id": 471}, "assignee": {"id": 20}, "organization": {"id": 141}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 591}, "organization": {"id": 184}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 48, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 485}, "assignee": {"id": 48}, "organization": {"id": 671}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 481}, "assignee": {"id": 531}, "organization": {"id": 660}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"id": 398, "owner": {"id": 446}, "assignee": {"id": 44}, "organization": {"id": 173}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 576}, "organization": {"id": 603}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 103, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 424}, "assignee": {"id": 24}, "organization": {"id": 625}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 509}, "organization": {"id": 640}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 459}, "assignee": {"id": 43}, "organization": {"id": 133}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 218}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 598}, "organization": {"id": 601}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"id": 380, "owner": {"id": 481}, "assignee": {"id": 46}, "organization": {"id": 679}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 546}, "organization": {"id": 198}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 429}, "assignee": {"id": 81}, "organization": {"id": 167}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 103, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 511}, "organization": {"id": 103}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 451}, "assignee": {"id": 83}, "organization": {"id": 616}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 503}, "organization": {"id": 117}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 199, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 368, "owner": {"id": 499}, "assignee": {"id": 26}, "organization": {"id": 199}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 25, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 531}, "organization": {"id": 189}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"id": 399, "owner": {"id": 427}, "assignee": {"id": 60}, "organization": {"id": 661}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 567}, "organization": {"id": 687}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 339, "owner": {"id": 490}, "assignee": {"id": 32}, "organization": {"id": 112}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 129, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 587}, "organization": {"id": 655}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 492}, "assignee": {"id": 82}, "organization": {"id": 658}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 141, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 556}, "organization": {"id": 647}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": {"id": 156, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"id": 353, "owner": {"id": 491}, "assignee": {"id": 75}, "organization": {"id": 156}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 480}, "assignee": {"id": 547}, "organization": {"id": 620}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 355, "owner": {"id": 467}, "assignee": {"id": 61}, "organization": {"id": 670}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 51, "privilege": "worker"}, "organization": {"id": 135, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 548}, "organization": {"id": 135}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 391, "owner": {"id": 496}, "assignee": {"id": 16}, "organization": {"id": 186}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 524}, "organization": {"id": 168}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 80}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 452}, "assignee": {"id": 526}, "organization": {"id": 615}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 502}, "organization": {"id": 111}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 478}, "assignee": {"id": 528}, "organization": {"id": 147}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 454}, "assignee": {"id": 561}, "organization": {"id": 136}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 420}, "assignee": {"id": 510}, "organization": {"id": 628}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 522}, "organization": {"id": 691}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 432}, "assignee": {"id": 597}, "organization": {"id": 110}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 552}, "organization": {"id": 699}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 441}, "assignee": {"id": 593}, "organization": {"id": 658}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 222}, "user": {"role": null}}}, "resource": {"owner": {"id": 457}, "assignee": {"id": 558}, "organization": {"id": 632}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 345, "owner": {"id": 434}, "assignee": {"id": 539}, "organization": {"id": 177}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 254}, "user": {"role": null}}}, "resource": {"owner": {"id": 477}, "assignee": {"id": 542}, "organization": {"id": 648}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"id": 355, "owner": {"id": 405}, "assignee": {"id": 552}, "organization": {"id": 657}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 547}, "organization": {"id": 180}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 209}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 412}, "assignee": {"id": 539}, "organization": {"id": 104}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 556}, "organization": {"id": 160}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 355, "owner": {"id": 411}, "assignee": {"id": 569}, "organization": {"id": 638}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"owner": {"id": 482}, "assignee": {"id": 550}, "organization": {"id": 102}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 181, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 365, "owner": {"id": 469}, "assignee": {"id": 506}, "organization": {"id": 181}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 518}, "organization": {"id": 137}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 340, "owner": {"id": 462}, "assignee": {"id": 595}, "organization": {"id": 689}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 8}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 508}, "organization": {"id": 641}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 80}, "user": {"role": "owner"}}}, "resource": {"id": 306, "owner": {"id": 489}, "assignee": {"id": 519}, "organization": {"id": 193}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 550}, "organization": {"id": 678}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 474}, "assignee": {"id": 524}, "organization": {"id": 638}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 142, "owner": {"id": 95}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 474}, "assignee": {"id": 573}, "organization": {"id": 683}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 490}, "assignee": {"id": 539}, "organization": {"id": 185}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 527}, "organization": {"id": 662}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"id": 393, "owner": {"id": 429}, "assignee": {"id": 585}, "organization": {"id": 602}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 504}, "organization": {"id": 101}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 335, "owner": {"id": 406}, "assignee": {"id": 587}, "organization": {"id": 108}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 566}, "organization": {"id": 198}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 415}, "assignee": {"id": 547}, "organization": {"id": 655}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 409}, "assignee": {"id": 572}, "organization": {"id": 192}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 286}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 486}, "assignee": {"id": 594}, "organization": {"id": 193}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 132, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 501}, "organization": {"id": 132}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 127, "owner": {"id": 222}, "user": {"role": null}}}, "resource": {"id": 390, "owner": {"id": 493}, "assignee": {"id": 599}, "organization": {"id": 634}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 504}, "organization": {"id": 664}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"id": 381, "owner": {"id": 486}, "assignee": {"id": 564}, "organization": {"id": 176}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 524}, "organization": {"id": 696}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 68, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"id": 353, "owner": {"id": 467}, "assignee": {"id": 504}, "organization": {"id": 698}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 552}, "organization": {"id": 625}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"id": 364, "owner": {"id": 498}, "assignee": {"id": 566}, "organization": {"id": 152}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 585}, "organization": {"id": 679}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 437}, "assignee": {"id": 570}, "organization": {"id": 600}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 530}, "organization": {"id": 175}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 174, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 486}, "assignee": {"id": 590}, "organization": {"id": 174}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 581}, "organization": {"id": 123}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 372, "owner": {"id": 436}, "assignee": {"id": 549}, "organization": {"id": 639}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 529}, "organization": {"id": 128}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 414}, "assignee": {"id": 526}, "organization": {"id": 181}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 588}, "organization": {"id": 198}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 457}, "assignee": {"id": 556}, "organization": {"id": 608}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 160, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 492}, "assignee": {"id": 588}, "organization": {"id": 648}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 390, "owner": {"id": 439}, "assignee": {"id": 593}, "organization": {"id": 117}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 429}, "assignee": {"id": 529}, "organization": {"id": 604}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 464}, "assignee": {"id": 597}, "organization": {"id": 608}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 142, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 452}, "assignee": {"id": 557}, "organization": {"id": 698}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 391, "owner": {"id": 410}, "assignee": {"id": 589}, "organization": {"id": 185}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 568}, "organization": {"id": 633}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 10}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 473}, "assignee": {"id": 549}, "organization": {"id": 637}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 587}, "organization": {"id": 138}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 14}, "user": {"role": "owner"}}}, "resource": {"id": 398, "owner": {"id": 410}, "assignee": {"id": 503}, "organization": {"id": 170}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 238}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 534}, "organization": {"id": 191}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 495}, "assignee": {"id": 548}, "organization": {"id": 672}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 500}, "organization": {"id": 128}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 100, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 410}, "assignee": {"id": 558}, "organization": {"id": 100}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 59, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 509}, "organization": {"id": 102}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 411}, "assignee": {"id": 503}, "organization": {"id": 668}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 578}, "organization": {"id": 625}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 320, "owner": {"id": 424}, "assignee": {"id": 577}, "organization": {"id": 105}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 504}, "organization": {"id": 600}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 496}, "assignee": {"id": 547}, "organization": {"id": 627}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 568}, "organization": {"id": 691}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 217}, "user": {"role": "worker"}}}, "resource": {"id": 368, "owner": {"id": 413}, "assignee": {"id": 533}, "organization": {"id": 184}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 548}, "organization": {"id": 678}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 188, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 345, "owner": {"id": 498}, "assignee": {"id": 543}, "organization": {"id": 647}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 199, "owner": {"id": 244}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 501}, "organization": {"id": 199}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 469}, "assignee": {"id": 579}, "organization": {"id": 119}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 545}, "organization": {"id": 113}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 316, "owner": {"id": 471}, "assignee": {"id": 585}, "organization": {"id": 600}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 594}, "organization": {"id": 151}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 432}, "assignee": {"id": 564}, "organization": {"id": 111}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": {"id": 188, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 592}, "organization": {"id": 188}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 389, "owner": {"id": 472}, "assignee": {"id": 564}, "organization": {"id": 654}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 550}, "organization": {"id": 688}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 328, "owner": {"id": 481}, "assignee": {"id": 583}, "organization": {"id": 125}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 566}, "organization": {"id": 610}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 190, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 492}, "assignee": {"id": 572}, "organization": {"id": 605}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 204}, "user": {"role": null}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 530}, "organization": {"id": 676}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"id": 351, "owner": {"id": 413}, "assignee": {"id": 526}, "organization": {"id": 166}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"owner": {"id": 457}, "assignee": {"id": 597}, "organization": {"id": 630}, "user": {"num_resources": 10}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 366, "owner": {"id": 464}, "assignee": {"id": 579}, "organization": {"id": 612}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 118, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"owner": {"id": 457}, "assignee": {"id": 531}, "organization": {"id": 118}, "user": {"num_resources": 0}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 496}, "assignee": {"id": 585}, "organization": {"id": 138}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_1_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"owner": {"id": 492}, "assignee": {"id": 570}, "organization": {"id": 193}, "user": {"num_resources": 1}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 315, "owner": {"id": 473}, "assignee": {"id": 528}, "organization": {"id": 657}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 598}, "organization": {"id": 187}, "user": {"num_resources": 3}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 188, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"id": 360, "owner": {"id": 419}, "assignee": {"id": 533}, "organization": {"id": 188}}} +test_scope_IMPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "import:backup", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"owner": {"id": 424}, "assignee": {"id": 502}, "organization": {"id": 177}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": null}, "resource": {"id": 386, "owner": {"id": 73}, "assignee": {"id": 526}, "organization": {"id": 692}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": null}, "resource": {"id": 338, "owner": {"id": 1}, "assignee": {"id": 518}, "organization": {"id": 646}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": null}, "resource": {"id": 336, "owner": {"id": 11}, "assignee": {"id": 584}, "organization": {"id": 667}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": null}, "resource": {"id": 304, "owner": {"id": 29}, "assignee": {"id": 559}, "organization": {"id": 609}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": null}, "resource": {"id": 320, "owner": {"id": 79}, "assignee": {"id": 531}, "organization": {"id": 649}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": null}, "resource": {"id": 301, "owner": {"id": 67}, "assignee": {"id": 538}, "organization": {"id": 613}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": null}, "resource": {"id": 395, "owner": {"id": 58}, "assignee": {"id": 552}, "organization": {"id": 619}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": null}, "resource": {"id": 332, "owner": {"id": 74}, "assignee": {"id": 547}, "organization": {"id": 662}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": null}, "resource": {"id": 320, "owner": {"id": 99}, "assignee": {"id": 525}, "organization": {"id": 680}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": null}, "resource": {"id": 372, "owner": {"id": 92}, "assignee": {"id": 598}, "organization": {"id": 683}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": null}, "resource": {"id": 335, "owner": {"id": 461}, "assignee": {"id": 59}, "organization": {"id": 631}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": null}, "resource": {"id": 361, "owner": {"id": 456}, "assignee": {"id": 31}, "organization": {"id": 634}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": null}, "resource": {"id": 333, "owner": {"id": 493}, "assignee": {"id": 30}, "organization": {"id": 602}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": null}, "resource": {"id": 321, "owner": {"id": 430}, "assignee": {"id": 59}, "organization": {"id": 677}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": null}, "resource": {"id": 336, "owner": {"id": 479}, "assignee": {"id": 33}, "organization": {"id": 628}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 20, "privilege": "user"}, "organization": null}, "resource": {"id": 367, "owner": {"id": 465}, "assignee": {"id": 20}, "organization": {"id": 651}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": null}, "resource": {"id": 327, "owner": {"id": 405}, "assignee": {"id": 29}, "organization": {"id": 654}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": null}, "resource": {"id": 351, "owner": {"id": 452}, "assignee": {"id": 77}, "organization": {"id": 632}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": null}, "resource": {"id": 351, "owner": {"id": 449}, "assignee": {"id": 4}, "organization": {"id": 688}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": null}, "resource": {"id": 326, "owner": {"id": 435}, "assignee": {"id": 53}, "organization": {"id": 625}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": null}, "resource": {"id": 367, "owner": {"id": 490}, "assignee": {"id": 548}, "organization": {"id": 670}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": null}, "resource": {"id": 351, "owner": {"id": 451}, "assignee": {"id": 583}, "organization": {"id": 699}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": null}, "resource": {"id": 352, "owner": {"id": 423}, "assignee": {"id": 587}, "organization": {"id": 664}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": null}, "resource": {"id": 394, "owner": {"id": 489}, "assignee": {"id": 584}, "organization": {"id": 670}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": null}, "resource": {"id": 306, "owner": {"id": 490}, "assignee": {"id": 524}, "organization": {"id": 624}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": null}, "resource": {"id": 335, "owner": {"id": 471}, "assignee": {"id": 545}, "organization": {"id": 689}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": null}, "resource": {"id": 303, "owner": {"id": 404}, "assignee": {"id": 588}, "organization": {"id": 621}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": null}, "resource": {"id": 388, "owner": {"id": 417}, "assignee": {"id": 546}, "organization": {"id": 609}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": null}, "resource": {"id": 319, "owner": {"id": 417}, "assignee": {"id": 512}, "organization": {"id": 616}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": null}, "resource": {"id": 371, "owner": {"id": 448}, "assignee": {"id": 521}, "organization": {"id": 622}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 132, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 79}, "assignee": {"id": 506}, "organization": {"id": 606}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"id": 307, "owner": {"id": 23}, "assignee": {"id": 554}, "organization": {"id": 655}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 399, "owner": {"id": 27}, "assignee": {"id": 550}, "organization": {"id": 179}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"id": 337, "owner": {"id": 12}, "assignee": {"id": 595}, "organization": {"id": 122}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 7, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 7}, "assignee": {"id": 537}, "organization": {"id": 602}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 77}, "assignee": {"id": 563}, "organization": {"id": 641}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 20}, "assignee": {"id": 507}, "organization": {"id": 177}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"id": 336, "owner": {"id": 45}, "assignee": {"id": 587}, "organization": {"id": 166}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 218}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 38}, "assignee": {"id": 544}, "organization": {"id": 639}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 36}, "assignee": {"id": 592}, "organization": {"id": 654}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 78}, "assignee": {"id": 562}, "organization": {"id": 167}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"id": 369, "owner": {"id": 24}, "assignee": {"id": 532}, "organization": {"id": 150}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"id": 328, "owner": {"id": 8}, "assignee": {"id": 552}, "organization": {"id": 681}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 65}, "assignee": {"id": 516}, "organization": {"id": 630}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 28}, "assignee": {"id": 513}, "organization": {"id": 164}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 137, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 11}, "assignee": {"id": 593}, "organization": {"id": 137}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 60}, "assignee": {"id": 596}, "organization": {"id": 635}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 264}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 77}, "assignee": {"id": 598}, "organization": {"id": 654}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 95}, "assignee": {"id": 593}, "organization": {"id": 148}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 62}, "assignee": {"id": 506}, "organization": {"id": 175}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 73}, "assignee": {"id": 557}, "organization": {"id": 672}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 0}, "assignee": {"id": 548}, "organization": {"id": 691}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 59}, "user": {"role": "owner"}}}, "resource": {"id": 327, "owner": {"id": 59}, "assignee": {"id": 521}, "organization": {"id": 120}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 86}, "assignee": {"id": 580}, "organization": {"id": 105}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 20}, "assignee": {"id": 557}, "organization": {"id": 696}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 317, "owner": {"id": 70}, "assignee": {"id": 594}, "organization": {"id": 676}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 62}, "assignee": {"id": 529}, "organization": {"id": 105}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"id": 332, "owner": {"id": 29}, "assignee": {"id": 582}, "organization": {"id": 116}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 123, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 61}, "assignee": {"id": 576}, "organization": {"id": 633}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 189, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 346, "owner": {"id": 60}, "assignee": {"id": 553}, "organization": {"id": 650}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"id": 325, "owner": {"id": 33}, "assignee": {"id": 593}, "organization": {"id": 103}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 277}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 58}, "assignee": {"id": 576}, "organization": {"id": 142}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 50}, "assignee": {"id": 559}, "organization": {"id": 639}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 85}, "assignee": {"id": 568}, "organization": {"id": 654}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 334, "owner": {"id": 33}, "assignee": {"id": 581}, "organization": {"id": 133}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 91, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"id": 377, "owner": {"id": 91}, "assignee": {"id": 583}, "organization": {"id": 197}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"id": 356, "owner": {"id": 61}, "assignee": {"id": 509}, "organization": {"id": 622}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"id": 360, "owner": {"id": 23}, "assignee": {"id": 598}, "organization": {"id": 651}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 68}, "assignee": {"id": 547}, "organization": {"id": 179}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 317, "owner": {"id": 40}, "assignee": {"id": 514}, "organization": {"id": 153}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 139, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 397, "owner": {"id": 32}, "assignee": {"id": 560}, "organization": {"id": 602}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 72}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 72}, "assignee": {"id": 552}, "organization": {"id": 659}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 391, "owner": {"id": 39}, "assignee": {"id": 517}, "organization": {"id": 142}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 145, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 333, "owner": {"id": 65}, "assignee": {"id": 501}, "organization": {"id": 145}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 281}, "user": {"role": "maintainer"}}}, "resource": {"id": 398, "owner": {"id": 44}, "assignee": {"id": 558}, "organization": {"id": 638}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 110, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"id": 332, "owner": {"id": 18}, "assignee": {"id": 578}, "organization": {"id": 640}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 72}, "assignee": {"id": 570}, "organization": {"id": 152}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 9, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 323, "owner": {"id": 9}, "assignee": {"id": 566}, "organization": {"id": 125}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 337, "owner": {"id": 32}, "assignee": {"id": 548}, "organization": {"id": 652}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 78}, "assignee": {"id": 594}, "organization": {"id": 665}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 78}, "assignee": {"id": 574}, "organization": {"id": 166}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"id": 321, "owner": {"id": 92}, "assignee": {"id": 586}, "organization": {"id": 199}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 45, "privilege": "user"}, "organization": {"id": 150, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 333, "owner": {"id": 45}, "assignee": {"id": 538}, "organization": {"id": 612}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"id": 342, "owner": {"id": 52}, "assignee": {"id": 568}, "organization": {"id": 635}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 5}, "assignee": {"id": 511}, "organization": {"id": 186}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"id": 381, "owner": {"id": 10}, "assignee": {"id": 566}, "organization": {"id": 136}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 14, "privilege": "user"}, "organization": {"id": 149, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 14}, "assignee": {"id": 517}, "organization": {"id": 632}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 68, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 68}, "assignee": {"id": 584}, "organization": {"id": 655}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 66}, "assignee": {"id": 596}, "organization": {"id": 191}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 88}, "assignee": {"id": 555}, "organization": {"id": 156}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"id": 387, "owner": {"id": 31}, "assignee": {"id": 579}, "organization": {"id": 639}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 77}, "user": {"role": "owner"}}}, "resource": {"id": 301, "owner": {"id": 77}, "assignee": {"id": 511}, "organization": {"id": 642}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 45}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 45}, "assignee": {"id": 525}, "organization": {"id": 164}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 100, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 44}, "assignee": {"id": 532}, "organization": {"id": 100}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 41}, "assignee": {"id": 567}, "organization": {"id": 697}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": {"id": 193, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 18}, "assignee": {"id": 550}, "organization": {"id": 653}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 8}, "assignee": {"id": 549}, "organization": {"id": 177}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 325, "owner": {"id": 44}, "assignee": {"id": 512}, "organization": {"id": 194}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 51, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 51}, "assignee": {"id": 546}, "organization": {"id": 683}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 308, "owner": {"id": 92}, "assignee": {"id": 563}, "organization": {"id": 623}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"id": 348, "owner": {"id": 97}, "assignee": {"id": 548}, "organization": {"id": 149}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 76}, "assignee": {"id": 539}, "organization": {"id": 118}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 42}, "assignee": {"id": 527}, "organization": {"id": 650}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 58}, "assignee": {"id": 533}, "organization": {"id": 683}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 0}, "assignee": {"id": 539}, "organization": {"id": 109}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"id": 326, "owner": {"id": 69}, "assignee": {"id": 542}, "organization": {"id": 145}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 266}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 15}, "assignee": {"id": 513}, "organization": {"id": 680}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 7}, "assignee": {"id": 543}, "organization": {"id": 617}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"id": 359, "owner": {"id": 32}, "assignee": {"id": 575}, "organization": {"id": 123}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 14}, "assignee": {"id": 505}, "organization": {"id": 157}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"id": 317, "owner": {"id": 12}, "assignee": {"id": 584}, "organization": {"id": 634}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 60}, "assignee": {"id": 595}, "organization": {"id": 666}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"id": 315, "owner": {"id": 46}, "assignee": {"id": 516}, "organization": {"id": 148}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"id": 386, "owner": {"id": 17}, "assignee": {"id": 557}, "organization": {"id": 185}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 278}, "user": {"role": "maintainer"}}}, "resource": {"id": 381, "owner": {"id": 72}, "assignee": {"id": 533}, "organization": {"id": 682}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"id": 368, "owner": {"id": 58}, "assignee": {"id": 505}, "organization": {"id": 617}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 366, "owner": {"id": 65}, "assignee": {"id": 549}, "organization": {"id": 195}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"id": 376, "owner": {"id": 6}, "assignee": {"id": 501}, "organization": {"id": 168}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 373, "owner": {"id": 34}, "assignee": {"id": 594}, "organization": {"id": 653}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 96}, "assignee": {"id": 529}, "organization": {"id": 659}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"id": 367, "owner": {"id": 25}, "assignee": {"id": 584}, "organization": {"id": 124}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 33}, "assignee": {"id": 561}, "organization": {"id": 165}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"id": 320, "owner": {"id": 2}, "assignee": {"id": 506}, "organization": {"id": 695}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"id": 398, "owner": {"id": 7}, "assignee": {"id": 506}, "organization": {"id": 647}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"id": 317, "owner": {"id": 31}, "assignee": {"id": 564}, "organization": {"id": 148}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"id": 312, "owner": {"id": 48}, "assignee": {"id": 548}, "organization": {"id": 137}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 33}, "assignee": {"id": 593}, "organization": {"id": 670}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"id": 365, "owner": {"id": 81}, "assignee": {"id": 544}, "organization": {"id": 646}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"id": 365, "owner": {"id": 7}, "assignee": {"id": 560}, "organization": {"id": 198}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 61}, "assignee": {"id": 565}, "organization": {"id": 117}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 456}, "assignee": {"id": 94}, "organization": {"id": 627}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"id": 333, "owner": {"id": 474}, "assignee": {"id": 87}, "organization": {"id": 683}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 14}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 438}, "assignee": {"id": 14}, "organization": {"id": 151}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 451}, "assignee": {"id": 55}, "organization": {"id": 113}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 297}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 413}, "assignee": {"id": 30}, "organization": {"id": 679}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"id": 383, "owner": {"id": 489}, "assignee": {"id": 68}, "organization": {"id": 669}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 149, "owner": {"id": 290}, "user": {"role": "maintainer"}}}, "resource": {"id": 317, "owner": {"id": 418}, "assignee": {"id": 28}, "organization": {"id": 149}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"id": 399, "owner": {"id": 463}, "assignee": {"id": 83}, "organization": {"id": 140}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 303, "owner": {"id": 417}, "assignee": {"id": 47}, "organization": {"id": 687}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"id": 329, "owner": {"id": 473}, "assignee": {"id": 17}, "organization": {"id": 668}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"id": 384, "owner": {"id": 400}, "assignee": {"id": 23}, "organization": {"id": 140}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 200}, "user": {"role": "supervisor"}}}, "resource": {"id": 345, "owner": {"id": 464}, "assignee": {"id": 2}, "organization": {"id": 141}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"id": 318, "owner": {"id": 417}, "assignee": {"id": 44}, "organization": {"id": 619}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 404}, "assignee": {"id": 73}, "organization": {"id": 688}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"id": 373, "owner": {"id": 461}, "assignee": {"id": 41}, "organization": {"id": 140}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 214}, "user": {"role": "worker"}}}, "resource": {"id": 355, "owner": {"id": 444}, "assignee": {"id": 45}, "organization": {"id": 176}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 412}, "assignee": {"id": 90}, "organization": {"id": 653}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 286}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 494}, "assignee": {"id": 63}, "organization": {"id": 683}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 340, "owner": {"id": 466}, "assignee": {"id": 49}, "organization": {"id": 105}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"id": 334, "owner": {"id": 471}, "assignee": {"id": 57}, "organization": {"id": 154}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 350, "owner": {"id": 483}, "assignee": {"id": 74}, "organization": {"id": 640}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 113, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"id": 371, "owner": {"id": 427}, "assignee": {"id": 98}, "organization": {"id": 610}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 316, "owner": {"id": 411}, "assignee": {"id": 27}, "organization": {"id": 122}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 453}, "assignee": {"id": 9}, "organization": {"id": 190}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 464}, "assignee": {"id": 44}, "organization": {"id": 683}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 401}, "assignee": {"id": 55}, "organization": {"id": 670}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 482}, "assignee": {"id": 48}, "organization": {"id": 179}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 461}, "assignee": {"id": 90}, "organization": {"id": 188}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 471}, "assignee": {"id": 33}, "organization": {"id": 636}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 482}, "assignee": {"id": 48}, "organization": {"id": 603}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 496}, "assignee": {"id": 33}, "organization": {"id": 102}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 331, "owner": {"id": 422}, "assignee": {"id": 63}, "organization": {"id": 101}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 338, "owner": {"id": 499}, "assignee": {"id": 90}, "organization": {"id": 660}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"id": 394, "owner": {"id": 487}, "assignee": {"id": 51}, "organization": {"id": 676}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"id": 312, "owner": {"id": 408}, "assignee": {"id": 7}, "organization": {"id": 148}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 430}, "assignee": {"id": 9}, "organization": {"id": 183}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 492}, "assignee": {"id": 48}, "organization": {"id": 693}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 478}, "assignee": {"id": 44}, "organization": {"id": 660}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 459}, "assignee": {"id": 57}, "organization": {"id": 167}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 199, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"id": 364, "owner": {"id": 420}, "assignee": {"id": 34}, "organization": {"id": 199}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 364, "owner": {"id": 403}, "assignee": {"id": 63}, "organization": {"id": 642}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 343, "owner": {"id": 452}, "assignee": {"id": 54}, "organization": {"id": 684}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 145, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 438}, "assignee": {"id": 83}, "organization": {"id": 145}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 458}, "assignee": {"id": 52}, "organization": {"id": 181}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 81, "privilege": "user"}, "organization": {"id": 182, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 324, "owner": {"id": 419}, "assignee": {"id": 81}, "organization": {"id": 658}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 409}, "assignee": {"id": 2}, "organization": {"id": 660}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 488}, "assignee": {"id": 50}, "organization": {"id": 171}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 384, "owner": {"id": 407}, "assignee": {"id": 85}, "organization": {"id": 170}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 11, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"id": 350, "owner": {"id": 441}, "assignee": {"id": 11}, "organization": {"id": 604}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"id": 398, "owner": {"id": 464}, "assignee": {"id": 85}, "organization": {"id": 607}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 319, "owner": {"id": 403}, "assignee": {"id": 80}, "organization": {"id": 124}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 110, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 370, "owner": {"id": 404}, "assignee": {"id": 54}, "organization": {"id": 110}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 401}, "assignee": {"id": 43}, "organization": {"id": 607}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 420}, "assignee": {"id": 3}, "organization": {"id": 657}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"id": 383, "owner": {"id": 426}, "assignee": {"id": 94}, "organization": {"id": 124}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 22, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 431}, "assignee": {"id": 22}, "organization": {"id": 160}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 366, "owner": {"id": 419}, "assignee": {"id": 91}, "organization": {"id": 661}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 150, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 482}, "assignee": {"id": 97}, "organization": {"id": 641}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 474}, "assignee": {"id": 37}, "organization": {"id": 153}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 302, "owner": {"id": 414}, "assignee": {"id": 0}, "organization": {"id": 117}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 45}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 412}, "assignee": {"id": 45}, "organization": {"id": 659}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"id": 383, "owner": {"id": 414}, "assignee": {"id": 68}, "organization": {"id": 648}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 15}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 466}, "assignee": {"id": 15}, "organization": {"id": 180}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 474}, "assignee": {"id": 13}, "organization": {"id": 144}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 396, "owner": {"id": 487}, "assignee": {"id": 88}, "organization": {"id": 665}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 332, "owner": {"id": 444}, "assignee": {"id": 88}, "organization": {"id": 652}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 488}, "assignee": {"id": 26}, "organization": {"id": 137}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 103, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 411}, "assignee": {"id": 33}, "organization": {"id": 103}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 103, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 325, "owner": {"id": 412}, "assignee": {"id": 54}, "organization": {"id": 677}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 188, "owner": {"id": 242}, "user": {"role": "supervisor"}}}, "resource": {"id": 339, "owner": {"id": 464}, "assignee": {"id": 74}, "organization": {"id": 660}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"id": 351, "owner": {"id": 447}, "assignee": {"id": 77}, "organization": {"id": 134}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"id": 370, "owner": {"id": 430}, "assignee": {"id": 74}, "organization": {"id": 105}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 484}, "assignee": {"id": 91}, "organization": {"id": 672}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 258}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 440}, "assignee": {"id": 65}, "organization": {"id": 616}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 199, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"id": 339, "owner": {"id": 485}, "assignee": {"id": 1}, "organization": {"id": 199}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 100, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 422}, "assignee": {"id": 9}, "organization": {"id": 100}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"id": 336, "owner": {"id": 431}, "assignee": {"id": 89}, "organization": {"id": 649}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"id": 305, "owner": {"id": 496}, "assignee": {"id": 62}, "organization": {"id": 650}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 317, "owner": {"id": 401}, "assignee": {"id": 35}, "organization": {"id": 198}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 328, "owner": {"id": 461}, "assignee": {"id": 32}, "organization": {"id": 194}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 188, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 414}, "assignee": {"id": 9}, "organization": {"id": 688}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 188, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"id": 327, "owner": {"id": 433}, "assignee": {"id": 43}, "organization": {"id": 640}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": {"id": 178, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 452}, "assignee": {"id": 6}, "organization": {"id": 178}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 59, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 59}, "user": {"role": "owner"}}}, "resource": {"id": 326, "owner": {"id": 457}, "assignee": {"id": 59}, "organization": {"id": 148}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 116, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 473}, "assignee": {"id": 21}, "organization": {"id": 694}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 227}, "user": {"role": "maintainer"}}}, "resource": {"id": 379, "owner": {"id": 464}, "assignee": {"id": 89}, "organization": {"id": 668}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 421}, "assignee": {"id": 79}, "organization": {"id": 192}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 178, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 303, "owner": {"id": 466}, "assignee": {"id": 87}, "organization": {"id": 178}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 283}, "user": {"role": "supervisor"}}}, "resource": {"id": 366, "owner": {"id": 455}, "assignee": {"id": 72}, "organization": {"id": 621}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 319, "owner": {"id": 429}, "assignee": {"id": 26}, "organization": {"id": 617}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 352, "owner": {"id": 402}, "assignee": {"id": 91}, "organization": {"id": 194}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 242}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 428}, "assignee": {"id": 16}, "organization": {"id": 131}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 431}, "assignee": {"id": 55}, "organization": {"id": 642}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 417}, "assignee": {"id": 31}, "organization": {"id": 656}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 338, "owner": {"id": 421}, "assignee": {"id": 96}, "organization": {"id": 104}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 405}, "assignee": {"id": 16}, "organization": {"id": 106}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"id": 345, "owner": {"id": 439}, "assignee": {"id": 20}, "organization": {"id": 634}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 355, "owner": {"id": 461}, "assignee": {"id": 52}, "organization": {"id": 622}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"id": 398, "owner": {"id": 450}, "assignee": {"id": 3}, "organization": {"id": 181}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 393, "owner": {"id": 404}, "assignee": {"id": 80}, "organization": {"id": 134}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"id": 317, "owner": {"id": 428}, "assignee": {"id": 599}, "organization": {"id": 695}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 357, "owner": {"id": 440}, "assignee": {"id": 543}, "organization": {"id": 657}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 345, "owner": {"id": 469}, "assignee": {"id": 503}, "organization": {"id": 114}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 417}, "assignee": {"id": 575}, "organization": {"id": 195}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 365, "owner": {"id": 418}, "assignee": {"id": 515}, "organization": {"id": 639}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 466}, "assignee": {"id": 596}, "organization": {"id": 602}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 81, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 444}, "assignee": {"id": 538}, "organization": {"id": 104}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 404}, "assignee": {"id": 587}, "organization": {"id": 138}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 328, "owner": {"id": 449}, "assignee": {"id": 500}, "organization": {"id": 677}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 327, "owner": {"id": 496}, "assignee": {"id": 533}, "organization": {"id": 632}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"id": 372, "owner": {"id": 435}, "assignee": {"id": 594}, "organization": {"id": 191}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 371, "owner": {"id": 429}, "assignee": {"id": 536}, "organization": {"id": 113}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 403}, "assignee": {"id": 566}, "organization": {"id": 666}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 395, "owner": {"id": 491}, "assignee": {"id": 571}, "organization": {"id": 635}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 37, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 482}, "assignee": {"id": 532}, "organization": {"id": 107}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 190, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 427}, "assignee": {"id": 597}, "organization": {"id": 190}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"id": 322, "owner": {"id": 473}, "assignee": {"id": 509}, "organization": {"id": 632}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 233}, "user": {"role": null}}}, "resource": {"id": 394, "owner": {"id": 445}, "assignee": {"id": 568}, "organization": {"id": 690}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 189, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 410}, "assignee": {"id": 501}, "organization": {"id": 189}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 359, "owner": {"id": 410}, "assignee": {"id": 523}, "organization": {"id": 168}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 174, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 429}, "assignee": {"id": 502}, "organization": {"id": 620}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"id": 349, "owner": {"id": 457}, "assignee": {"id": 514}, "organization": {"id": 692}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 91, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 468}, "assignee": {"id": 508}, "organization": {"id": 116}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"id": 382, "owner": {"id": 477}, "assignee": {"id": 548}, "organization": {"id": 121}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 477}, "assignee": {"id": 543}, "organization": {"id": 609}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 329, "owner": {"id": 446}, "assignee": {"id": 511}, "organization": {"id": 676}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 481}, "assignee": {"id": 584}, "organization": {"id": 185}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"id": 362, "owner": {"id": 420}, "assignee": {"id": 522}, "organization": {"id": 108}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 491}, "assignee": {"id": 580}, "organization": {"id": 692}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 496}, "assignee": {"id": 512}, "organization": {"id": 682}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 238}, "user": {"role": "supervisor"}}}, "resource": {"id": 346, "owner": {"id": 415}, "assignee": {"id": 567}, "organization": {"id": 132}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"id": 356, "owner": {"id": 484}, "assignee": {"id": 583}, "organization": {"id": 111}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 196, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 303, "owner": {"id": 421}, "assignee": {"id": 535}, "organization": {"id": 612}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 127, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"id": 316, "owner": {"id": 422}, "assignee": {"id": 538}, "organization": {"id": 631}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 281}, "user": {"role": "worker"}}}, "resource": {"id": 314, "owner": {"id": 494}, "assignee": {"id": 593}, "organization": {"id": 161}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 281}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 432}, "assignee": {"id": 596}, "organization": {"id": 142}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 397, "owner": {"id": 457}, "assignee": {"id": 568}, "organization": {"id": 609}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 455}, "assignee": {"id": 595}, "organization": {"id": 661}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 333, "owner": {"id": 435}, "assignee": {"id": 595}, "organization": {"id": 156}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 414}, "assignee": {"id": 585}, "organization": {"id": 195}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"id": 395, "owner": {"id": 400}, "assignee": {"id": 541}, "organization": {"id": 612}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 365, "owner": {"id": 474}, "assignee": {"id": 567}, "organization": {"id": 627}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 476}, "assignee": {"id": 540}, "organization": {"id": 181}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 491}, "assignee": {"id": 596}, "organization": {"id": 184}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 138, "owner": {"id": 227}, "user": {"role": "maintainer"}}}, "resource": {"id": 318, "owner": {"id": 460}, "assignee": {"id": 540}, "organization": {"id": 665}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 470}, "assignee": {"id": 598}, "organization": {"id": 684}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 417}, "assignee": {"id": 538}, "organization": {"id": 107}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 128, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 393, "owner": {"id": 457}, "assignee": {"id": 514}, "organization": {"id": 128}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 470}, "assignee": {"id": 524}, "organization": {"id": 621}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 454}, "assignee": {"id": 592}, "organization": {"id": 693}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 123, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"id": 373, "owner": {"id": 460}, "assignee": {"id": 554}, "organization": {"id": 123}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"id": 398, "owner": {"id": 480}, "assignee": {"id": 513}, "organization": {"id": 191}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 283}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 439}, "assignee": {"id": 561}, "organization": {"id": 629}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 457}, "assignee": {"id": 581}, "organization": {"id": 699}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 105, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 466}, "assignee": {"id": 598}, "organization": {"id": 105}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 174, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 485}, "assignee": {"id": 591}, "organization": {"id": 174}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 428}, "assignee": {"id": 533}, "organization": {"id": 644}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 468}, "assignee": {"id": 595}, "organization": {"id": 619}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 472}, "assignee": {"id": 560}, "organization": {"id": 126}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 145, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 404}, "assignee": {"id": 585}, "organization": {"id": 145}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 373, "owner": {"id": 481}, "assignee": {"id": 596}, "organization": {"id": 646}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 12, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 460}, "assignee": {"id": 595}, "organization": {"id": 636}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 432}, "assignee": {"id": 547}, "organization": {"id": 158}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 51, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 436}, "assignee": {"id": 590}, "organization": {"id": 171}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 270}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 410}, "assignee": {"id": 528}, "organization": {"id": 601}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 223}, "user": {"role": "maintainer"}}}, "resource": {"id": 327, "owner": {"id": 467}, "assignee": {"id": 527}, "organization": {"id": 611}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 430}, "assignee": {"id": 536}, "organization": {"id": 104}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 270}, "user": {"role": "maintainer"}}}, "resource": {"id": 361, "owner": {"id": 429}, "assignee": {"id": 528}, "organization": {"id": 148}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"id": 300, "owner": {"id": 471}, "assignee": {"id": 569}, "organization": {"id": 687}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"id": 397, "owner": {"id": 458}, "assignee": {"id": 558}, "organization": {"id": 611}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 293}, "user": {"role": "supervisor"}}}, "resource": {"id": 303, "owner": {"id": 462}, "assignee": {"id": 538}, "organization": {"id": 109}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 475}, "assignee": {"id": 509}, "organization": {"id": 194}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 135, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 389, "owner": {"id": 482}, "assignee": {"id": 544}, "organization": {"id": 664}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 195, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"id": 355, "owner": {"id": 404}, "assignee": {"id": 505}, "organization": {"id": 668}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 328, "owner": {"id": 463}, "assignee": {"id": 519}, "organization": {"id": 108}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 374, "owner": {"id": 486}, "assignee": {"id": 593}, "organization": {"id": 160}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 195, "owner": {"id": 270}, "user": {"role": null}}}, "resource": {"id": 331, "owner": {"id": 444}, "assignee": {"id": 533}, "organization": {"id": 666}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"id": 363, "owner": {"id": 412}, "assignee": {"id": 555}, "organization": {"id": 650}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"id": 311, "owner": {"id": 409}, "assignee": {"id": 549}, "organization": {"id": 146}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 244}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 446}, "assignee": {"id": 561}, "organization": {"id": 140}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 414}, "assignee": {"id": 533}, "organization": {"id": 628}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 313, "owner": {"id": 421}, "assignee": {"id": 544}, "organization": {"id": 608}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 41, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 398, "owner": {"id": 483}, "assignee": {"id": 561}, "organization": {"id": 148}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 397, "owner": {"id": 475}, "assignee": {"id": 581}, "organization": {"id": 123}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 455}, "assignee": {"id": 567}, "organization": {"id": 646}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"id": 393, "owner": {"id": 492}, "assignee": {"id": 554}, "organization": {"id": 675}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 41, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 348, "owner": {"id": 478}, "assignee": {"id": 506}, "organization": {"id": 100}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"id": 384, "owner": {"id": 481}, "assignee": {"id": 541}, "organization": {"id": 189}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"id": 350, "owner": {"id": 402}, "assignee": {"id": 503}, "organization": {"id": 624}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 264}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 423}, "assignee": {"id": 504}, "organization": {"id": 612}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 481}, "assignee": {"id": 540}, "organization": {"id": 191}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 356, "owner": {"id": 455}, "assignee": {"id": 555}, "organization": {"id": 168}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"id": 365, "owner": {"id": 455}, "assignee": {"id": 584}, "organization": {"id": 659}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 188, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"id": 331, "owner": {"id": 454}, "assignee": {"id": 518}, "organization": {"id": 685}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 319, "owner": {"id": 444}, "assignee": {"id": 549}, "organization": {"id": 140}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"id": 397, "owner": {"id": 430}, "assignee": {"id": 537}, "organization": {"id": 143}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 222}, "user": {"role": null}}}, "resource": {"id": 317, "owner": {"id": 483}, "assignee": {"id": 569}, "organization": {"id": 621}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 470}, "assignee": {"id": 513}, "organization": {"id": 645}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 204}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 411}, "assignee": {"id": 513}, "organization": {"id": 172}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 463}, "assignee": {"id": 574}, "organization": {"id": 182}}} } -test_scope_DELETE_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 99, "privilege": "admin"}, "organization": null}, "resource": {"id": 388, "owner": {"id": 99}, "assignee": {"id": 519}, "organization": {"id": 661}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": null}, "resource": {"id": 391, "owner": {"id": 44}, "assignee": {"id": 535}, "organization": {"id": 639}}} } -test_scope_DELETE_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": null}, "resource": {"id": 386, "owner": {"id": 10}, "assignee": {"id": 568}, "organization": {"id": 600}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": null}, "resource": {"id": 343, "owner": {"id": 92}, "assignee": {"id": 587}, "organization": {"id": 650}}} } -test_scope_DELETE_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": null}, "resource": {"id": 390, "owner": {"id": 3}, "assignee": {"id": 580}, "organization": {"id": 663}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": null}, "resource": {"id": 329, "owner": {"id": 36}, "assignee": {"id": 507}, "organization": {"id": 604}}} } -test_scope_DELETE_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": null}, "resource": {"id": 353, "owner": {"id": 10}, "assignee": {"id": 598}, "organization": {"id": 678}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": null}, "resource": {"id": 397, "owner": {"id": 89}, "assignee": {"id": 539}, "organization": {"id": 689}}} } -test_scope_DELETE_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": null}, "resource": {"id": 313, "owner": {"id": 80}, "assignee": {"id": 525}, "organization": {"id": 620}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": null}, "resource": {"id": 366, "owner": {"id": 10}, "assignee": {"id": 598}, "organization": {"id": 672}}} } -test_scope_DELETE_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": null}, "resource": {"id": 354, "owner": {"id": 449}, "assignee": {"id": 97}, "organization": {"id": 686}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": null}, "resource": {"id": 335, "owner": {"id": 437}, "assignee": {"id": 46}, "organization": {"id": 622}}} } -test_scope_DELETE_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": null}, "resource": {"id": 322, "owner": {"id": 415}, "assignee": {"id": 68}, "organization": {"id": 606}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": null}, "resource": {"id": 302, "owner": {"id": 474}, "assignee": {"id": 68}, "organization": {"id": 602}}} } -test_scope_DELETE_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": null}, "resource": {"id": 311, "owner": {"id": 486}, "assignee": {"id": 49}, "organization": {"id": 674}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": null}, "resource": {"id": 304, "owner": {"id": 445}, "assignee": {"id": 24}, "organization": {"id": 690}}} } -test_scope_DELETE_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": null}, "resource": {"id": 395, "owner": {"id": 492}, "assignee": {"id": 68}, "organization": {"id": 636}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": null}, "resource": {"id": 353, "owner": {"id": 431}, "assignee": {"id": 69}, "organization": {"id": 654}}} } -test_scope_DELETE_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": null}, "resource": {"id": 354, "owner": {"id": 458}, "assignee": {"id": 36}, "organization": {"id": 688}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 418}, "assignee": {"id": 88}, "organization": {"id": 604}}} } -test_scope_DELETE_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": null}, "resource": {"id": 342, "owner": {"id": 463}, "assignee": {"id": 569}, "organization": {"id": 691}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": null}, "resource": {"id": 394, "owner": {"id": 444}, "assignee": {"id": 567}, "organization": {"id": 601}}} } -test_scope_DELETE_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": null}, "resource": {"id": 307, "owner": {"id": 413}, "assignee": {"id": 557}, "organization": {"id": 670}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": null}, "resource": {"id": 364, "owner": {"id": 457}, "assignee": {"id": 548}, "organization": {"id": 660}}} } -test_scope_DELETE_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": null}, "resource": {"id": 362, "owner": {"id": 459}, "assignee": {"id": 568}, "organization": {"id": 628}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": null}, "resource": {"id": 325, "owner": {"id": 474}, "assignee": {"id": 519}, "organization": {"id": 665}}} } -test_scope_DELETE_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": null}, "resource": {"id": 311, "owner": {"id": 453}, "assignee": {"id": 553}, "organization": {"id": 653}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": null}, "resource": {"id": 350, "owner": {"id": 481}, "assignee": {"id": 575}, "organization": {"id": 691}}} } -test_scope_DELETE_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": null}, "resource": {"id": 332, "owner": {"id": 454}, "assignee": {"id": 522}, "organization": {"id": 618}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": null}, "resource": {"id": 391, "owner": {"id": 418}, "assignee": {"id": 527}, "organization": {"id": 657}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 97}, "assignee": {"id": 531}, "organization": {"id": 688}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 35}, "assignee": {"id": 565}, "organization": {"id": 642}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 7, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 7}, "assignee": {"id": 541}, "organization": {"id": 152}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 75}, "assignee": {"id": 532}, "organization": {"id": 166}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 31}, "assignee": {"id": 528}, "organization": {"id": 638}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 75}, "assignee": {"id": 576}, "organization": {"id": 665}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 301, "owner": {"id": 86}, "assignee": {"id": 559}, "organization": {"id": 142}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 379, "owner": {"id": 78}, "assignee": {"id": 554}, "organization": {"id": 147}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 39}, "assignee": {"id": 597}, "organization": {"id": 670}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 119, "owner": {"id": 283}, "user": {"role": "supervisor"}}}, "resource": {"id": 397, "owner": {"id": 66}, "assignee": {"id": 580}, "organization": {"id": 678}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"id": 321, "owner": {"id": 57}, "assignee": {"id": 525}, "organization": {"id": 141}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 26}, "assignee": {"id": 553}, "organization": {"id": 167}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 26}, "assignee": {"id": 529}, "organization": {"id": 650}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"id": 314, "owner": {"id": 17}, "assignee": {"id": 545}, "organization": {"id": 662}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 52}, "assignee": {"id": 514}, "organization": {"id": 179}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 46}, "assignee": {"id": 517}, "organization": {"id": 105}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 312, "owner": {"id": 74}, "assignee": {"id": 550}, "organization": {"id": 642}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 119, "owner": {"id": 266}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 68}, "assignee": {"id": 539}, "organization": {"id": 669}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 54}, "assignee": {"id": 584}, "organization": {"id": 165}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 83}, "assignee": {"id": 560}, "organization": {"id": 158}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"id": 363, "owner": {"id": 83}, "assignee": {"id": 554}, "organization": {"id": 662}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 86}, "assignee": {"id": 595}, "organization": {"id": 664}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 196, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 60}, "assignee": {"id": 550}, "organization": {"id": 196}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 127, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"id": 396, "owner": {"id": 1}, "assignee": {"id": 561}, "organization": {"id": 127}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 324, "owner": {"id": 98}, "assignee": {"id": 591}, "organization": {"id": 625}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 77}, "assignee": {"id": 557}, "organization": {"id": 656}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 92}, "assignee": {"id": 529}, "organization": {"id": 198}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 11}, "assignee": {"id": 558}, "organization": {"id": 190}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 361, "owner": {"id": 92}, "assignee": {"id": 562}, "organization": {"id": 674}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 25}, "assignee": {"id": 597}, "organization": {"id": 667}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 58}, "assignee": {"id": 560}, "organization": {"id": 108}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 350, "owner": {"id": 53}, "assignee": {"id": 540}, "organization": {"id": 179}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 310, "owner": {"id": 86}, "assignee": {"id": 583}, "organization": {"id": 646}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": {"id": 166, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"id": 373, "owner": {"id": 80}, "assignee": {"id": 570}, "organization": {"id": 602}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 214}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 97}, "assignee": {"id": 544}, "organization": {"id": 192}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 83}, "assignee": {"id": 557}, "organization": {"id": 111}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 123, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"id": 331, "owner": {"id": 23}, "assignee": {"id": 505}, "organization": {"id": 632}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 31}, "assignee": {"id": 520}, "organization": {"id": 619}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 312, "owner": {"id": 92}, "assignee": {"id": 569}, "organization": {"id": 162}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"id": 320, "owner": {"id": 56}, "assignee": {"id": 535}, "organization": {"id": 155}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"id": 321, "owner": {"id": 85}, "assignee": {"id": 558}, "organization": {"id": 604}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 337, "owner": {"id": 24}, "assignee": {"id": 571}, "organization": {"id": 613}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 306, "owner": {"id": 97}, "assignee": {"id": 541}, "organization": {"id": 111}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 36}, "assignee": {"id": 501}, "organization": {"id": 111}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 69}, "assignee": {"id": 581}, "organization": {"id": 664}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 217}, "user": {"role": "maintainer"}}}, "resource": {"id": 398, "owner": {"id": 7}, "assignee": {"id": 538}, "organization": {"id": 636}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 83}, "assignee": {"id": 596}, "organization": {"id": 103}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"id": 348, "owner": {"id": 43}, "assignee": {"id": 502}, "organization": {"id": 195}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 307, "owner": {"id": 80}, "assignee": {"id": 591}, "organization": {"id": 665}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 150, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 379, "owner": {"id": 40}, "assignee": {"id": 509}, "organization": {"id": 622}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 354, "owner": {"id": 15}, "assignee": {"id": 551}, "organization": {"id": 176}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 149, "owner": {"id": 295}, "user": {"role": "supervisor"}}}, "resource": {"id": 389, "owner": {"id": 10}, "assignee": {"id": 540}, "organization": {"id": 149}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 131, "owner": {"id": 288}, "user": {"role": "worker"}}}, "resource": {"id": 300, "owner": {"id": 49}, "assignee": {"id": 575}, "organization": {"id": 660}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 22, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 389, "owner": {"id": 22}, "assignee": {"id": 577}, "organization": {"id": 698}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"id": 357, "owner": {"id": 60}, "assignee": {"id": 528}, "organization": {"id": 168}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 87}, "assignee": {"id": 594}, "organization": {"id": 168}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": {"id": 105, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"id": 371, "owner": {"id": 82}, "assignee": {"id": 567}, "organization": {"id": 611}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"id": 325, "owner": {"id": 48}, "assignee": {"id": 506}, "organization": {"id": 638}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"id": 342, "owner": {"id": 29}, "assignee": {"id": 595}, "organization": {"id": 115}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 317, "owner": {"id": 88}, "assignee": {"id": 545}, "organization": {"id": 187}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"id": 386, "owner": {"id": 17}, "assignee": {"id": 537}, "organization": {"id": 664}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 188, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 61}, "assignee": {"id": 562}, "organization": {"id": 674}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 387, "owner": {"id": 99}, "assignee": {"id": 548}, "organization": {"id": 137}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 150, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 19}, "assignee": {"id": 597}, "organization": {"id": 150}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"id": 374, "owner": {"id": 27}, "assignee": {"id": 535}, "organization": {"id": 684}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"id": 348, "owner": {"id": 77}, "assignee": {"id": 565}, "organization": {"id": 670}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 336, "owner": {"id": 64}, "assignee": {"id": 592}, "organization": {"id": 173}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 16}, "assignee": {"id": 571}, "organization": {"id": 130}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 199, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"id": 395, "owner": {"id": 79}, "assignee": {"id": 598}, "organization": {"id": 682}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 77}, "assignee": {"id": 543}, "organization": {"id": 605}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 7}, "assignee": {"id": 589}, "organization": {"id": 175}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 389, "owner": {"id": 66}, "assignee": {"id": 565}, "organization": {"id": 182}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 13}, "assignee": {"id": 522}, "organization": {"id": 680}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 245}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 85}, "assignee": {"id": 560}, "organization": {"id": 686}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"id": 373, "owner": {"id": 17}, "assignee": {"id": 516}, "organization": {"id": 157}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 316, "owner": {"id": 53}, "assignee": {"id": 555}, "organization": {"id": 116}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 87}, "assignee": {"id": 534}, "organization": {"id": 699}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"id": 305, "owner": {"id": 74}, "assignee": {"id": 505}, "organization": {"id": 644}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"id": 374, "owner": {"id": 52}, "assignee": {"id": 545}, "organization": {"id": 192}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"id": 391, "owner": {"id": 56}, "assignee": {"id": 510}, "organization": {"id": 192}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 380, "owner": {"id": 78}, "assignee": {"id": 532}, "organization": {"id": 607}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": {"id": 190, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 66}, "assignee": {"id": 504}, "organization": {"id": 616}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 326, "owner": {"id": 13}, "assignee": {"id": 565}, "organization": {"id": 134}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 379, "owner": {"id": 29}, "assignee": {"id": 531}, "organization": {"id": 133}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 25}, "assignee": {"id": 543}, "organization": {"id": 641}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 64}, "assignee": {"id": 556}, "organization": {"id": 681}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 49}, "assignee": {"id": 540}, "organization": {"id": 126}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 367, "owner": {"id": 93}, "assignee": {"id": 516}, "organization": {"id": 127}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 330, "owner": {"id": 89}, "assignee": {"id": 540}, "organization": {"id": 619}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"id": 305, "owner": {"id": 5}, "assignee": {"id": 519}, "organization": {"id": 606}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 178, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 32}, "assignee": {"id": 598}, "organization": {"id": 178}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 322, "owner": {"id": 35}, "assignee": {"id": 567}, "organization": {"id": 137}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 48}, "assignee": {"id": 505}, "organization": {"id": 644}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 250}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 19}, "assignee": {"id": 565}, "organization": {"id": 616}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 22}, "assignee": {"id": 557}, "organization": {"id": 159}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 209}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 23}, "assignee": {"id": 566}, "organization": {"id": 168}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"id": 332, "owner": {"id": 16}, "assignee": {"id": 592}, "organization": {"id": 611}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 334, "owner": {"id": 89}, "assignee": {"id": 569}, "organization": {"id": 620}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 99}, "assignee": {"id": 542}, "organization": {"id": 164}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 357, "owner": {"id": 55}, "assignee": {"id": 516}, "organization": {"id": 105}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"id": 391, "owner": {"id": 437}, "assignee": {"id": 87}, "organization": {"id": 656}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 486}, "assignee": {"id": 47}, "organization": {"id": 637}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 429}, "assignee": {"id": 19}, "organization": {"id": 165}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 450}, "assignee": {"id": 1}, "organization": {"id": 105}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 317, "owner": {"id": 402}, "assignee": {"id": 89}, "organization": {"id": 609}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 466}, "assignee": {"id": 53}, "organization": {"id": 684}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"id": 378, "owner": {"id": 468}, "assignee": {"id": 10}, "organization": {"id": 159}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 488}, "assignee": {"id": 69}, "organization": {"id": 113}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 248}, "user": {"role": "supervisor"}}}, "resource": {"id": 398, "owner": {"id": 465}, "assignee": {"id": 5}, "organization": {"id": 691}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 245}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 492}, "assignee": {"id": 72}, "organization": {"id": 686}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 467}, "assignee": {"id": 10}, "organization": {"id": 178}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"id": 384, "owner": {"id": 440}, "assignee": {"id": 34}, "organization": {"id": 198}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 334, "owner": {"id": 486}, "assignee": {"id": 55}, "organization": {"id": 665}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 409}, "assignee": {"id": 66}, "organization": {"id": 685}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"id": 380, "owner": {"id": 421}, "assignee": {"id": 2}, "organization": {"id": 121}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 485}, "assignee": {"id": 60}, "organization": {"id": 138}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 466}, "assignee": {"id": 33}, "organization": {"id": 688}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"id": 361, "owner": {"id": 426}, "assignee": {"id": 25}, "organization": {"id": 600}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"id": 387, "owner": {"id": 413}, "assignee": {"id": 54}, "organization": {"id": 168}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 336, "owner": {"id": 455}, "assignee": {"id": 92}, "organization": {"id": 178}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 450}, "assignee": {"id": 5}, "organization": {"id": 643}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"id": 386, "owner": {"id": 417}, "assignee": {"id": 66}, "organization": {"id": 681}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 411}, "assignee": {"id": 54}, "organization": {"id": 183}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"id": 306, "owner": {"id": 481}, "assignee": {"id": 69}, "organization": {"id": 114}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 312, "owner": {"id": 474}, "assignee": {"id": 13}, "organization": {"id": 617}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 368, "owner": {"id": 481}, "assignee": {"id": 33}, "organization": {"id": 674}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 330, "owner": {"id": 418}, "assignee": {"id": 39}, "organization": {"id": 182}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 327, "owner": {"id": 450}, "assignee": {"id": 0}, "organization": {"id": 114}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 376, "owner": {"id": 449}, "assignee": {"id": 4}, "organization": {"id": 671}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 378, "owner": {"id": 405}, "assignee": {"id": 66}, "organization": {"id": 605}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"id": 362, "owner": {"id": 418}, "assignee": {"id": 88}, "organization": {"id": 121}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"id": 345, "owner": {"id": 488}, "assignee": {"id": 12}, "organization": {"id": 187}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 338, "owner": {"id": 409}, "assignee": {"id": 17}, "organization": {"id": 632}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"id": 351, "owner": {"id": 455}, "assignee": {"id": 18}, "organization": {"id": 614}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"id": 318, "owner": {"id": 476}, "assignee": {"id": 23}, "organization": {"id": 112}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"id": 381, "owner": {"id": 491}, "assignee": {"id": 77}, "organization": {"id": 135}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 472}, "assignee": {"id": 50}, "organization": {"id": 627}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 445}, "assignee": {"id": 30}, "organization": {"id": 680}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"id": 367, "owner": {"id": 458}, "assignee": {"id": 72}, "organization": {"id": 121}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 396, "owner": {"id": 487}, "assignee": {"id": 82}, "organization": {"id": 106}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 11, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 311, "owner": {"id": 450}, "assignee": {"id": 11}, "organization": {"id": 626}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 413}, "assignee": {"id": 84}, "organization": {"id": 629}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 417}, "assignee": {"id": 26}, "organization": {"id": 112}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 499}, "assignee": {"id": 78}, "organization": {"id": 191}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 172, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"id": 346, "owner": {"id": 452}, "assignee": {"id": 53}, "organization": {"id": 662}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 154, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"id": 364, "owner": {"id": 425}, "assignee": {"id": 89}, "organization": {"id": 626}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 255}, "user": {"role": "maintainer"}}}, "resource": {"id": 382, "owner": {"id": 478}, "assignee": {"id": 10}, "organization": {"id": 162}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 165, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"id": 328, "owner": {"id": 445}, "assignee": {"id": 50}, "organization": {"id": 165}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 384, "owner": {"id": 461}, "assignee": {"id": 86}, "organization": {"id": 604}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 264}, "user": {"role": "supervisor"}}}, "resource": {"id": 394, "owner": {"id": 432}, "assignee": {"id": 28}, "organization": {"id": 630}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 149, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"id": 300, "owner": {"id": 496}, "assignee": {"id": 44}, "organization": {"id": 149}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 154, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 416}, "assignee": {"id": 27}, "organization": {"id": 154}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 172, "owner": {"id": 292}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 442}, "assignee": {"id": 85}, "organization": {"id": 666}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 128, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"id": 319, "owner": {"id": 420}, "assignee": {"id": 44}, "organization": {"id": 652}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 262}, "user": {"role": "worker"}}}, "resource": {"id": 324, "owner": {"id": 469}, "assignee": {"id": 51}, "organization": {"id": 171}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 390, "owner": {"id": 440}, "assignee": {"id": 74}, "organization": {"id": 180}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"id": 362, "owner": {"id": 438}, "assignee": {"id": 60}, "organization": {"id": 618}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 361, "owner": {"id": 418}, "assignee": {"id": 56}, "organization": {"id": 653}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 320, "owner": {"id": 449}, "assignee": {"id": 33}, "organization": {"id": 140}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"id": 366, "owner": {"id": 483}, "assignee": {"id": 82}, "organization": {"id": 117}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 434}, "assignee": {"id": 34}, "organization": {"id": 602}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 152, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 470}, "assignee": {"id": 63}, "organization": {"id": 632}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"id": 349, "owner": {"id": 422}, "assignee": {"id": 16}, "organization": {"id": 158}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 100, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 367, "owner": {"id": 425}, "assignee": {"id": 37}, "organization": {"id": 100}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 103, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 310, "owner": {"id": 468}, "assignee": {"id": 58}, "organization": {"id": 610}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 276}, "user": {"role": "maintainer"}}}, "resource": {"id": 388, "owner": {"id": 471}, "assignee": {"id": 87}, "organization": {"id": 657}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 349, "owner": {"id": 485}, "assignee": {"id": 36}, "organization": {"id": 123}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 414}, "assignee": {"id": 60}, "organization": {"id": 172}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 384, "owner": {"id": 461}, "assignee": {"id": 81}, "organization": {"id": 639}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"id": 397, "owner": {"id": 457}, "assignee": {"id": 2}, "organization": {"id": 611}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 440}, "assignee": {"id": 6}, "organization": {"id": 111}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 264}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 452}, "assignee": {"id": 46}, "organization": {"id": 167}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 480}, "assignee": {"id": 63}, "organization": {"id": 643}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 258}, "user": {"role": "worker"}}}, "resource": {"id": 318, "owner": {"id": 429}, "assignee": {"id": 40}, "organization": {"id": 614}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"id": 330, "owner": {"id": 402}, "assignee": {"id": 99}, "organization": {"id": 169}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 397, "owner": {"id": 435}, "assignee": {"id": 0}, "organization": {"id": 164}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 409}, "assignee": {"id": 42}, "organization": {"id": 687}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 378, "owner": {"id": 402}, "assignee": {"id": 66}, "organization": {"id": 650}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 496}, "assignee": {"id": 13}, "organization": {"id": 184}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 415}, "assignee": {"id": 71}, "organization": {"id": 105}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": {"id": 156, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 336, "owner": {"id": 481}, "assignee": {"id": 51}, "organization": {"id": 688}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"id": 395, "owner": {"id": 422}, "assignee": {"id": 75}, "organization": {"id": 668}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 399, "owner": {"id": 425}, "assignee": {"id": 90}, "organization": {"id": 126}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 150, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 303, "owner": {"id": 403}, "assignee": {"id": 11}, "organization": {"id": 150}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 310, "owner": {"id": 455}, "assignee": {"id": 38}, "organization": {"id": 615}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 416}, "assignee": {"id": 3}, "organization": {"id": 630}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": {"id": 154, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 494}, "assignee": {"id": 53}, "organization": {"id": 154}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 345, "owner": {"id": 416}, "assignee": {"id": 46}, "organization": {"id": 164}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"id": 364, "owner": {"id": 405}, "assignee": {"id": 12}, "organization": {"id": 631}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"id": 359, "owner": {"id": 472}, "assignee": {"id": 62}, "organization": {"id": 665}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 322, "owner": {"id": 410}, "assignee": {"id": 80}, "organization": {"id": 114}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 426}, "assignee": {"id": 74}, "organization": {"id": 159}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 431}, "assignee": {"id": 4}, "organization": {"id": 660}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 459}, "assignee": {"id": 65}, "organization": {"id": 611}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 424}, "assignee": {"id": 54}, "organization": {"id": 198}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 460}, "assignee": {"id": 80}, "organization": {"id": 120}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 437}, "assignee": {"id": 56}, "organization": {"id": 651}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 356, "owner": {"id": 411}, "assignee": {"id": 9}, "organization": {"id": 641}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 433}, "assignee": {"id": 82}, "organization": {"id": 113}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 456}, "assignee": {"id": 92}, "organization": {"id": 131}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 384, "owner": {"id": 446}, "assignee": {"id": 583}, "organization": {"id": 662}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 137, "owner": {"id": 8}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 494}, "assignee": {"id": 579}, "organization": {"id": 698}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 425}, "assignee": {"id": 589}, "organization": {"id": 128}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 15, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 15}, "user": {"role": "owner"}}}, "resource": {"id": 308, "owner": {"id": 434}, "assignee": {"id": 552}, "organization": {"id": 167}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"id": 320, "owner": {"id": 422}, "assignee": {"id": 579}, "organization": {"id": 663}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 102, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 350, "owner": {"id": 476}, "assignee": {"id": 583}, "organization": {"id": 679}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 422}, "assignee": {"id": 592}, "organization": {"id": 193}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"id": 368, "owner": {"id": 468}, "assignee": {"id": 533}, "organization": {"id": 115}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 336, "owner": {"id": 488}, "assignee": {"id": 513}, "organization": {"id": 669}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 264}, "user": {"role": "supervisor"}}}, "resource": {"id": 357, "owner": {"id": 425}, "assignee": {"id": 597}, "organization": {"id": 653}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 440}, "assignee": {"id": 587}, "organization": {"id": 147}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 445}, "assignee": {"id": 520}, "organization": {"id": 159}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 397, "owner": {"id": 461}, "assignee": {"id": 587}, "organization": {"id": 699}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 250}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 481}, "assignee": {"id": 558}, "organization": {"id": 651}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"id": 310, "owner": {"id": 420}, "assignee": {"id": 541}, "organization": {"id": 146}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 81, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 320, "owner": {"id": 426}, "assignee": {"id": 523}, "organization": {"id": 106}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 132, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 459}, "assignee": {"id": 507}, "organization": {"id": 604}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"id": 322, "owner": {"id": 457}, "assignee": {"id": 528}, "organization": {"id": 631}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"id": 319, "owner": {"id": 492}, "assignee": {"id": 556}, "organization": {"id": 110}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 424}, "assignee": {"id": 593}, "organization": {"id": 124}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 38}, "user": {"role": "owner"}}}, "resource": {"id": 317, "owner": {"id": 495}, "assignee": {"id": 529}, "organization": {"id": 646}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 159, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"id": 361, "owner": {"id": 442}, "assignee": {"id": 559}, "organization": {"id": 610}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"id": 348, "owner": {"id": 439}, "assignee": {"id": 562}, "organization": {"id": 167}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 76}, "user": {"role": "owner"}}}, "resource": {"id": 306, "owner": {"id": 491}, "assignee": {"id": 585}, "organization": {"id": 114}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 174, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 396, "owner": {"id": 460}, "assignee": {"id": 546}, "organization": {"id": 600}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 397, "owner": {"id": 431}, "assignee": {"id": 516}, "organization": {"id": 697}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 473}, "assignee": {"id": 571}, "organization": {"id": 158}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 475}, "assignee": {"id": 544}, "organization": {"id": 119}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 130, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 393, "owner": {"id": 401}, "assignee": {"id": 562}, "organization": {"id": 698}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"id": 323, "owner": {"id": 407}, "assignee": {"id": 566}, "organization": {"id": 600}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 405}, "assignee": {"id": 589}, "organization": {"id": 151}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 338, "owner": {"id": 410}, "assignee": {"id": 557}, "organization": {"id": 194}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 400}, "assignee": {"id": 570}, "organization": {"id": 689}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 258}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 466}, "assignee": {"id": 508}, "organization": {"id": 676}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 471}, "assignee": {"id": 514}, "organization": {"id": 179}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 370, "owner": {"id": 477}, "assignee": {"id": 520}, "organization": {"id": 169}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 64, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"id": 397, "owner": {"id": 453}, "assignee": {"id": 576}, "organization": {"id": 670}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"id": 388, "owner": {"id": 402}, "assignee": {"id": 583}, "organization": {"id": 630}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"id": 309, "owner": {"id": 426}, "assignee": {"id": 514}, "organization": {"id": 191}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"id": 328, "owner": {"id": 484}, "assignee": {"id": 528}, "organization": {"id": 157}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 131, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 438}, "assignee": {"id": 512}, "organization": {"id": 623}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 480}, "assignee": {"id": 512}, "organization": {"id": 627}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 412}, "assignee": {"id": 577}, "organization": {"id": 135}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 399, "owner": {"id": 426}, "assignee": {"id": 522}, "organization": {"id": 111}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 172, "owner": {"id": 282}, "user": {"role": "maintainer"}}}, "resource": {"id": 377, "owner": {"id": 478}, "assignee": {"id": 533}, "organization": {"id": 690}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 297}, "user": {"role": "maintainer"}}}, "resource": {"id": 301, "owner": {"id": 411}, "assignee": {"id": 507}, "organization": {"id": 659}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 325, "owner": {"id": 463}, "assignee": {"id": 590}, "organization": {"id": 129}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 165, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"id": 318, "owner": {"id": 429}, "assignee": {"id": 559}, "organization": {"id": 165}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 264}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 424}, "assignee": {"id": 528}, "organization": {"id": 661}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"id": 364, "owner": {"id": 467}, "assignee": {"id": 550}, "organization": {"id": 619}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 145, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 343, "owner": {"id": 438}, "assignee": {"id": 528}, "organization": {"id": 145}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 309, "owner": {"id": 427}, "assignee": {"id": 547}, "organization": {"id": 132}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 149, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 332, "owner": {"id": 497}, "assignee": {"id": 566}, "organization": {"id": 678}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 131, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 415}, "assignee": {"id": 518}, "organization": {"id": 655}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 390, "owner": {"id": 403}, "assignee": {"id": 577}, "organization": {"id": 186}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 413}, "assignee": {"id": 554}, "organization": {"id": 167}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 497}, "assignee": {"id": 508}, "organization": {"id": 647}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 483}, "assignee": {"id": 509}, "organization": {"id": 606}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 225}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 432}, "assignee": {"id": 526}, "organization": {"id": 152}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"id": 386, "owner": {"id": 414}, "assignee": {"id": 525}, "organization": {"id": 107}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 488}, "assignee": {"id": 517}, "organization": {"id": 666}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 496}, "assignee": {"id": 568}, "organization": {"id": 613}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 188, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"id": 333, "owner": {"id": 495}, "assignee": {"id": 561}, "organization": {"id": 188}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"id": 386, "owner": {"id": 494}, "assignee": {"id": 506}, "organization": {"id": 166}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"id": 332, "owner": {"id": 422}, "assignee": {"id": 539}, "organization": {"id": 624}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 443}, "assignee": {"id": 544}, "organization": {"id": 668}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 321, "owner": {"id": 464}, "assignee": {"id": 582}, "organization": {"id": 172}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"id": 334, "owner": {"id": 485}, "assignee": {"id": 533}, "organization": {"id": 177}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 156, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 444}, "assignee": {"id": 573}, "organization": {"id": 606}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"id": 369, "owner": {"id": 484}, "assignee": {"id": 521}, "organization": {"id": 626}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 300, "owner": {"id": 467}, "assignee": {"id": 539}, "organization": {"id": 146}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 320, "owner": {"id": 466}, "assignee": {"id": 585}, "organization": {"id": 142}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 100, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 407}, "assignee": {"id": 528}, "organization": {"id": 626}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"id": 396, "owner": {"id": 460}, "assignee": {"id": 573}, "organization": {"id": 672}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 472}, "assignee": {"id": 586}, "organization": {"id": 151}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 427}, "assignee": {"id": 578}, "organization": {"id": 168}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 347, "owner": {"id": 472}, "assignee": {"id": 579}, "organization": {"id": 677}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 476}, "assignee": {"id": 571}, "organization": {"id": 654}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"id": 397, "owner": {"id": 444}, "assignee": {"id": 526}, "organization": {"id": 111}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 452}, "assignee": {"id": 512}, "organization": {"id": 147}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 451}, "assignee": {"id": 596}, "organization": {"id": 656}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"id": 379, "owner": {"id": 473}, "assignee": {"id": 582}, "organization": {"id": 627}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"id": 375, "owner": {"id": 410}, "assignee": {"id": 529}, "organization": {"id": 131}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 176, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 491}, "assignee": {"id": 566}, "organization": {"id": 176}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 421}, "assignee": {"id": 541}, "organization": {"id": 636}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 317, "owner": {"id": 457}, "assignee": {"id": 595}, "organization": {"id": 604}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"id": 393, "owner": {"id": 489}, "assignee": {"id": 542}, "organization": {"id": 131}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 459}, "assignee": {"id": 570}, "organization": {"id": 194}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 366, "owner": {"id": 427}, "assignee": {"id": 529}, "organization": {"id": 635}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 414}, "assignee": {"id": 592}, "organization": {"id": 682}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 439}, "assignee": {"id": 529}, "organization": {"id": 125}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 423}, "assignee": {"id": 531}, "organization": {"id": 138}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 301, "owner": {"id": 433}, "assignee": {"id": 530}, "organization": {"id": 624}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 499}, "assignee": {"id": 565}, "organization": {"id": 676}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 489}, "assignee": {"id": 579}, "organization": {"id": 128}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 491}, "assignee": {"id": 545}, "organization": {"id": 192}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 154, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 483}, "assignee": {"id": 567}, "organization": {"id": 627}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 406}, "assignee": {"id": 557}, "organization": {"id": 629}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 254}, "user": {"role": null}}}, "resource": {"id": 309, "owner": {"id": 401}, "assignee": {"id": 518}, "organization": {"id": 145}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 371, "owner": {"id": 448}, "assignee": {"id": 599}, "organization": {"id": 103}}} } -test_scope_IMPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": null}, "resource": {"id": 389, "owner": {"id": 0}, "assignee": {"id": 510}, "organization": {"id": 602}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": null}, "resource": {"id": 380, "owner": {"id": 65}, "assignee": {"id": 567}, "organization": {"id": 670}}} } -test_scope_IMPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": null}, "resource": {"id": 363, "owner": {"id": 31}, "assignee": {"id": 563}, "organization": {"id": 626}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": null}, "resource": {"id": 349, "owner": {"id": 10}, "assignee": {"id": 538}, "organization": {"id": 601}}} } -test_scope_IMPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 9, "privilege": "user"}, "organization": null}, "resource": {"id": 343, "owner": {"id": 9}, "assignee": {"id": 585}, "organization": {"id": 673}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": null}, "resource": {"id": 377, "owner": {"id": 66}, "assignee": {"id": 514}, "organization": {"id": 614}}} } -test_scope_IMPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": null}, "resource": {"id": 322, "owner": {"id": 6}, "assignee": {"id": 596}, "organization": {"id": 673}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": null}, "resource": {"id": 313, "owner": {"id": 9}, "assignee": {"id": 516}, "organization": {"id": 625}}} } -test_scope_IMPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": null}, "resource": {"id": 399, "owner": {"id": 48}, "assignee": {"id": 546}, "organization": {"id": 640}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": null}, "resource": {"id": 373, "owner": {"id": 2}, "assignee": {"id": 560}, "organization": {"id": 654}}} } -test_scope_IMPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": null}, "resource": {"id": 316, "owner": {"id": 492}, "assignee": {"id": 6}, "organization": {"id": 668}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": null}, "resource": {"id": 362, "owner": {"id": 419}, "assignee": {"id": 28}, "organization": {"id": 650}}} } -test_scope_IMPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": null}, "resource": {"id": 361, "owner": {"id": 455}, "assignee": {"id": 45}, "organization": {"id": 697}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": null}, "resource": {"id": 336, "owner": {"id": 448}, "assignee": {"id": 32}, "organization": {"id": 614}}} } -test_scope_IMPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": null}, "resource": {"id": 389, "owner": {"id": 431}, "assignee": {"id": 72}, "organization": {"id": 654}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": null}, "resource": {"id": 347, "owner": {"id": 456}, "assignee": {"id": 38}, "organization": {"id": 693}}} } -test_scope_IMPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": null}, "resource": {"id": 347, "owner": {"id": 495}, "assignee": {"id": 47}, "organization": {"id": 600}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": null}, "resource": {"id": 369, "owner": {"id": 458}, "assignee": {"id": 52}, "organization": {"id": 691}}} } -test_scope_IMPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": null}, "resource": {"id": 316, "owner": {"id": 434}, "assignee": {"id": 0}, "organization": {"id": 625}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": null}, "resource": {"id": 302, "owner": {"id": 499}, "assignee": {"id": 46}, "organization": {"id": 604}}} } -test_scope_IMPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": null}, "resource": {"id": 316, "owner": {"id": 410}, "assignee": {"id": 559}, "organization": {"id": 676}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": null}, "resource": {"id": 379, "owner": {"id": 402}, "assignee": {"id": 561}, "organization": {"id": 671}}} } -test_scope_IMPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": null}, "resource": {"id": 303, "owner": {"id": 455}, "assignee": {"id": 501}, "organization": {"id": 696}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": null}, "resource": {"id": 309, "owner": {"id": 400}, "assignee": {"id": 526}, "organization": {"id": 698}}} } -test_scope_IMPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": null}, "resource": {"id": 371, "owner": {"id": 447}, "assignee": {"id": 544}, "organization": {"id": 671}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": null}, "resource": {"id": 314, "owner": {"id": 402}, "assignee": {"id": 550}, "organization": {"id": 627}}} } -test_scope_IMPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": null}, "resource": {"id": 325, "owner": {"id": 411}, "assignee": {"id": 532}, "organization": {"id": 687}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": null}, "resource": {"id": 356, "owner": {"id": 423}, "assignee": {"id": 592}, "organization": {"id": 616}}} } -test_scope_IMPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": null}, "resource": {"id": 361, "owner": {"id": 420}, "assignee": {"id": 586}, "organization": {"id": 692}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": null}, "resource": {"id": 318, "owner": {"id": 455}, "assignee": {"id": 524}, "organization": {"id": 692}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 320, "owner": {"id": 39}, "assignee": {"id": 553}, "organization": {"id": 680}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 29}, "assignee": {"id": 518}, "organization": {"id": 638}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 26}, "assignee": {"id": 563}, "organization": {"id": 129}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 399, "owner": {"id": 65}, "assignee": {"id": 502}, "organization": {"id": 126}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 387, "owner": {"id": 0}, "assignee": {"id": 530}, "organization": {"id": 689}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 325, "owner": {"id": 24}, "assignee": {"id": 551}, "organization": {"id": 683}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 205}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 66}, "assignee": {"id": 575}, "organization": {"id": 138}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 300, "owner": {"id": 96}, "assignee": {"id": 557}, "organization": {"id": 140}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 398, "owner": {"id": 77}, "assignee": {"id": 572}, "organization": {"id": 600}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 370, "owner": {"id": 29}, "assignee": {"id": 540}, "organization": {"id": 695}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"id": 340, "owner": {"id": 23}, "assignee": {"id": 563}, "organization": {"id": 118}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 384, "owner": {"id": 8}, "assignee": {"id": 545}, "organization": {"id": 151}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 170, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"id": 309, "owner": {"id": 68}, "assignee": {"id": 596}, "organization": {"id": 671}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 54}, "assignee": {"id": 533}, "organization": {"id": 675}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 288}, "user": {"role": "worker"}}}, "resource": {"id": 396, "owner": {"id": 28}, "assignee": {"id": 549}, "organization": {"id": 122}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 60}, "assignee": {"id": 509}, "organization": {"id": 186}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"id": 328, "owner": {"id": 17}, "assignee": {"id": 514}, "organization": {"id": 676}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 340, "owner": {"id": 40}, "assignee": {"id": 531}, "organization": {"id": 639}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 5}, "assignee": {"id": 507}, "organization": {"id": 174}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": {"id": 123, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 67}, "assignee": {"id": 541}, "organization": {"id": 123}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 51}, "assignee": {"id": 575}, "organization": {"id": 641}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 51}, "assignee": {"id": 593}, "organization": {"id": 625}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 159, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 3}, "assignee": {"id": 535}, "organization": {"id": 159}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 336, "owner": {"id": 40}, "assignee": {"id": 513}, "organization": {"id": 100}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 73}, "assignee": {"id": 536}, "organization": {"id": 639}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 223}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 45}, "assignee": {"id": 572}, "organization": {"id": 605}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 220}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 68}, "assignee": {"id": 516}, "organization": {"id": 111}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 16, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 16}, "assignee": {"id": 585}, "organization": {"id": 161}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 346, "owner": {"id": 73}, "assignee": {"id": 586}, "organization": {"id": 698}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"id": 300, "owner": {"id": 48}, "assignee": {"id": 515}, "organization": {"id": 643}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 84}, "assignee": {"id": 536}, "organization": {"id": 135}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 69}, "assignee": {"id": 556}, "organization": {"id": 108}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 139, "owner": {"id": 228}, "user": {"role": "worker"}}}, "resource": {"id": 332, "owner": {"id": 32}, "assignee": {"id": 506}, "organization": {"id": 605}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 281}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 29}, "assignee": {"id": 508}, "organization": {"id": 608}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 20}, "assignee": {"id": 534}, "organization": {"id": 102}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 51}, "assignee": {"id": 576}, "organization": {"id": 118}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 84}, "assignee": {"id": 521}, "organization": {"id": 679}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 264}, "user": {"role": null}}}, "resource": {"id": 393, "owner": {"id": 32}, "assignee": {"id": 576}, "organization": {"id": 686}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 223}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 14}, "assignee": {"id": 513}, "organization": {"id": 193}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 214}, "user": {"role": null}}}, "resource": {"id": 366, "owner": {"id": 99}, "assignee": {"id": 595}, "organization": {"id": 183}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 53}, "assignee": {"id": 582}, "organization": {"id": 607}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 110, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 318, "owner": {"id": 97}, "assignee": {"id": 562}, "organization": {"id": 605}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 52}, "assignee": {"id": 583}, "organization": {"id": 191}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 165, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 53}, "assignee": {"id": 584}, "organization": {"id": 165}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 59}, "assignee": {"id": 569}, "organization": {"id": 651}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 267}, "user": {"role": "maintainer"}}}, "resource": {"id": 331, "owner": {"id": 46}, "assignee": {"id": 576}, "organization": {"id": 657}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 350, "owner": {"id": 79}, "assignee": {"id": 500}, "organization": {"id": 152}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 145, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"id": 329, "owner": {"id": 83}, "assignee": {"id": 563}, "organization": {"id": 145}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 356, "owner": {"id": 59}, "assignee": {"id": 596}, "organization": {"id": 679}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 38}, "assignee": {"id": 579}, "organization": {"id": 696}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 85}, "assignee": {"id": 542}, "organization": {"id": 106}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 22, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 22}, "assignee": {"id": 594}, "organization": {"id": 180}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"id": 335, "owner": {"id": 74}, "assignee": {"id": 504}, "organization": {"id": 636}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 250}, "user": {"role": "worker"}}}, "resource": {"id": 327, "owner": {"id": 27}, "assignee": {"id": 511}, "organization": {"id": 685}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 312, "owner": {"id": 25}, "assignee": {"id": 552}, "organization": {"id": 124}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 383, "owner": {"id": 26}, "assignee": {"id": 575}, "organization": {"id": 199}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 237}, "user": {"role": null}}}, "resource": {"id": 357, "owner": {"id": 64}, "assignee": {"id": 523}, "organization": {"id": 696}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 73}, "assignee": {"id": 594}, "organization": {"id": 634}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 61}, "assignee": {"id": 536}, "organization": {"id": 185}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"id": 305, "owner": {"id": 41}, "assignee": {"id": 502}, "organization": {"id": 109}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 324, "owner": {"id": 65}, "assignee": {"id": 538}, "organization": {"id": 666}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 373, "owner": {"id": 74}, "assignee": {"id": 501}, "organization": {"id": 696}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 328, "owner": {"id": 90}, "assignee": {"id": 507}, "organization": {"id": 137}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 97}, "assignee": {"id": 598}, "organization": {"id": 134}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 150, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 398, "owner": {"id": 63}, "assignee": {"id": 520}, "organization": {"id": 673}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 4}, "assignee": {"id": 520}, "organization": {"id": 600}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 397, "owner": {"id": 43}, "assignee": {"id": 590}, "organization": {"id": 175}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 51, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 297}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 51}, "assignee": {"id": 528}, "organization": {"id": 110}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 303, "owner": {"id": 49}, "assignee": {"id": 587}, "organization": {"id": 604}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 89}, "assignee": {"id": 525}, "organization": {"id": 668}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 376, "owner": {"id": 97}, "assignee": {"id": 592}, "organization": {"id": 146}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"id": 308, "owner": {"id": 88}, "assignee": {"id": 544}, "organization": {"id": 106}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 262}, "user": {"role": "worker"}}}, "resource": {"id": 389, "owner": {"id": 22}, "assignee": {"id": 591}, "organization": {"id": 665}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 319, "owner": {"id": 64}, "assignee": {"id": 533}, "organization": {"id": 611}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 209}, "user": {"role": "worker"}}}, "resource": {"id": 314, "owner": {"id": 42}, "assignee": {"id": 561}, "organization": {"id": 168}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 77}, "assignee": {"id": 551}, "organization": {"id": 102}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 273}, "user": {"role": null}}}, "resource": {"id": 388, "owner": {"id": 5}, "assignee": {"id": 563}, "organization": {"id": 691}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": {"id": 152, "owner": {"id": 254}, "user": {"role": null}}}, "resource": {"id": 325, "owner": {"id": 36}, "assignee": {"id": 583}, "organization": {"id": 661}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 307, "owner": {"id": 80}, "assignee": {"id": 583}, "organization": {"id": 144}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"id": 365, "owner": {"id": 21}, "assignee": {"id": 552}, "organization": {"id": 154}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 78}, "assignee": {"id": 596}, "organization": {"id": 653}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"id": 372, "owner": {"id": 4}, "assignee": {"id": 558}, "organization": {"id": 648}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"id": 319, "owner": {"id": 93}, "assignee": {"id": 538}, "organization": {"id": 197}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 68}, "assignee": {"id": 532}, "organization": {"id": 140}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"id": 396, "owner": {"id": 55}, "assignee": {"id": 554}, "organization": {"id": 685}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 70}, "assignee": {"id": 531}, "organization": {"id": 676}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"id": 384, "owner": {"id": 74}, "assignee": {"id": 511}, "organization": {"id": 184}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 373, "owner": {"id": 35}, "assignee": {"id": 549}, "organization": {"id": 182}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 15}, "assignee": {"id": 501}, "organization": {"id": 630}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 385, "owner": {"id": 79}, "assignee": {"id": 524}, "organization": {"id": 639}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 35}, "assignee": {"id": 512}, "organization": {"id": 147}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"id": 300, "owner": {"id": 46}, "assignee": {"id": 563}, "organization": {"id": 111}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"id": 328, "owner": {"id": 55}, "assignee": {"id": 572}, "organization": {"id": 617}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 48}, "assignee": {"id": 546}, "organization": {"id": 606}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 59, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"id": 321, "owner": {"id": 59}, "assignee": {"id": 533}, "organization": {"id": 145}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 356, "owner": {"id": 21}, "assignee": {"id": 513}, "organization": {"id": 152}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 24}, "assignee": {"id": 531}, "organization": {"id": 665}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"id": 334, "owner": {"id": 24}, "assignee": {"id": 537}, "organization": {"id": 634}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"id": 364, "owner": {"id": 21}, "assignee": {"id": 524}, "organization": {"id": 197}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"id": 313, "owner": {"id": 40}, "assignee": {"id": 582}, "organization": {"id": 162}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 28}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 437}, "assignee": {"id": 28}, "organization": {"id": 626}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"id": 393, "owner": {"id": 483}, "assignee": {"id": 57}, "organization": {"id": 618}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 393, "owner": {"id": 491}, "assignee": {"id": 51}, "organization": {"id": 153}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"id": 352, "owner": {"id": 445}, "assignee": {"id": 4}, "organization": {"id": 188}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 469}, "assignee": {"id": 86}, "organization": {"id": 645}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 137, "owner": {"id": 220}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 464}, "assignee": {"id": 56}, "organization": {"id": 646}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 197, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 452}, "assignee": {"id": 46}, "organization": {"id": 197}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"id": 382, "owner": {"id": 463}, "assignee": {"id": 45}, "organization": {"id": 139}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 218}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 428}, "assignee": {"id": 19}, "organization": {"id": 629}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"id": 378, "owner": {"id": 486}, "assignee": {"id": 75}, "organization": {"id": 617}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"id": 376, "owner": {"id": 408}, "assignee": {"id": 33}, "organization": {"id": 169}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 216}, "user": {"role": "supervisor"}}}, "resource": {"id": 310, "owner": {"id": 426}, "assignee": {"id": 65}, "organization": {"id": 176}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 117, "owner": {"id": 286}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 483}, "assignee": {"id": 36}, "organization": {"id": 677}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"id": 305, "owner": {"id": 497}, "assignee": {"id": 86}, "organization": {"id": 636}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 438}, "assignee": {"id": 61}, "organization": {"id": 128}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 480}, "assignee": {"id": 64}, "organization": {"id": 122}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 317, "owner": {"id": 476}, "assignee": {"id": 78}, "organization": {"id": 617}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 419}, "assignee": {"id": 21}, "organization": {"id": 603}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 447}, "assignee": {"id": 2}, "organization": {"id": 121}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 487}, "assignee": {"id": 86}, "organization": {"id": 136}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 159, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 365, "owner": {"id": 468}, "assignee": {"id": 51}, "organization": {"id": 643}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"id": 337, "owner": {"id": 443}, "assignee": {"id": 61}, "organization": {"id": 693}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 472}, "assignee": {"id": 50}, "organization": {"id": 182}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 325, "owner": {"id": 494}, "assignee": {"id": 24}, "organization": {"id": 171}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 445}, "assignee": {"id": 63}, "organization": {"id": 647}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 388, "owner": {"id": 476}, "assignee": {"id": 44}, "organization": {"id": 645}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 458}, "assignee": {"id": 58}, "organization": {"id": 176}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 401}, "assignee": {"id": 58}, "organization": {"id": 132}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"id": 346, "owner": {"id": 450}, "assignee": {"id": 74}, "organization": {"id": 614}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"id": 334, "owner": {"id": 442}, "assignee": {"id": 65}, "organization": {"id": 660}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 479}, "assignee": {"id": 48}, "organization": {"id": 112}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 444}, "assignee": {"id": 84}, "organization": {"id": 187}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"id": 356, "owner": {"id": 489}, "assignee": {"id": 40}, "organization": {"id": 657}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 335, "owner": {"id": 476}, "assignee": {"id": 75}, "organization": {"id": 643}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 463}, "assignee": {"id": 52}, "organization": {"id": 141}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 410}, "assignee": {"id": 22}, "organization": {"id": 124}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"id": 312, "owner": {"id": 496}, "assignee": {"id": 12}, "organization": {"id": 658}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 372, "owner": {"id": 475}, "assignee": {"id": 26}, "organization": {"id": 618}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 397, "owner": {"id": 405}, "assignee": {"id": 27}, "organization": {"id": 193}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 328, "owner": {"id": 409}, "assignee": {"id": 36}, "organization": {"id": 114}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"id": 309, "owner": {"id": 456}, "assignee": {"id": 1}, "organization": {"id": 638}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 474}, "assignee": {"id": 74}, "organization": {"id": 611}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 22, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 475}, "assignee": {"id": 22}, "organization": {"id": 109}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 405}, "assignee": {"id": 60}, "organization": {"id": 151}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 446}, "assignee": {"id": 74}, "organization": {"id": 602}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 20, "privilege": "user"}, "organization": {"id": 149, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 482}, "assignee": {"id": 20}, "organization": {"id": 678}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"id": 383, "owner": {"id": 438}, "assignee": {"id": 80}, "organization": {"id": 117}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 422}, "assignee": {"id": 51}, "organization": {"id": 106}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 437}, "assignee": {"id": 66}, "organization": {"id": 629}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"id": 340, "owner": {"id": 404}, "assignee": {"id": 61}, "organization": {"id": 657}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 460}, "assignee": {"id": 71}, "organization": {"id": 159}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 309, "owner": {"id": 466}, "assignee": {"id": 2}, "organization": {"id": 124}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 432}, "assignee": {"id": 97}, "organization": {"id": 683}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 163, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 331, "owner": {"id": 473}, "assignee": {"id": 85}, "organization": {"id": 642}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 498}, "assignee": {"id": 28}, "organization": {"id": 168}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"id": 307, "owner": {"id": 448}, "assignee": {"id": 91}, "organization": {"id": 179}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"id": 354, "owner": {"id": 471}, "assignee": {"id": 51}, "organization": {"id": 688}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 226}, "user": {"role": null}}}, "resource": {"id": 394, "owner": {"id": 435}, "assignee": {"id": 49}, "organization": {"id": 660}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 45, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 408}, "assignee": {"id": 45}, "organization": {"id": 118}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"id": 347, "owner": {"id": 401}, "assignee": {"id": 19}, "organization": {"id": 119}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 440}, "assignee": {"id": 0}, "organization": {"id": 650}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 349, "owner": {"id": 416}, "assignee": {"id": 67}, "organization": {"id": 603}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"id": 361, "owner": {"id": 478}, "assignee": {"id": 68}, "organization": {"id": 187}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 432}, "assignee": {"id": 32}, "organization": {"id": 140}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 103, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 421}, "assignee": {"id": 27}, "organization": {"id": 608}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 317, "owner": {"id": 403}, "assignee": {"id": 5}, "organization": {"id": 648}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 186, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 414}, "assignee": {"id": 39}, "organization": {"id": 186}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 393, "owner": {"id": 449}, "assignee": {"id": 79}, "organization": {"id": 117}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"id": 316, "owner": {"id": 455}, "assignee": {"id": 54}, "organization": {"id": 693}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 216}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 479}, "assignee": {"id": 49}, "organization": {"id": 600}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"id": 390, "owner": {"id": 400}, "assignee": {"id": 34}, "organization": {"id": 139}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 406}, "assignee": {"id": 60}, "organization": {"id": 180}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"id": 331, "owner": {"id": 441}, "assignee": {"id": 4}, "organization": {"id": 632}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"id": 309, "owner": {"id": 400}, "assignee": {"id": 22}, "organization": {"id": 659}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 465}, "assignee": {"id": 79}, "organization": {"id": 108}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 361, "owner": {"id": 438}, "assignee": {"id": 36}, "organization": {"id": 128}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 342, "owner": {"id": 450}, "assignee": {"id": 17}, "organization": {"id": 671}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 418}, "assignee": {"id": 52}, "organization": {"id": 650}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 355, "owner": {"id": 485}, "assignee": {"id": 70}, "organization": {"id": 110}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 451}, "assignee": {"id": 5}, "organization": {"id": 182}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 320, "owner": {"id": 479}, "assignee": {"id": 70}, "organization": {"id": 640}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 322, "owner": {"id": 484}, "assignee": {"id": 27}, "organization": {"id": 643}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"id": 318, "owner": {"id": 454}, "assignee": {"id": 52}, "organization": {"id": 111}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 132, "owner": {"id": 33}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 478}, "assignee": {"id": 33}, "organization": {"id": 132}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"id": 362, "owner": {"id": 455}, "assignee": {"id": 55}, "organization": {"id": 675}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 107, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"id": 393, "owner": {"id": 495}, "assignee": {"id": 85}, "organization": {"id": 620}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 384, "owner": {"id": 409}, "assignee": {"id": 34}, "organization": {"id": 165}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 414}, "assignee": {"id": 84}, "organization": {"id": 100}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 339, "owner": {"id": 470}, "assignee": {"id": 72}, "organization": {"id": 678}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 142, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 389, "owner": {"id": 444}, "assignee": {"id": 93}, "organization": {"id": 607}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 421}, "assignee": {"id": 78}, "organization": {"id": 180}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 415}, "assignee": {"id": 24}, "organization": {"id": 197}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 156, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 491}, "assignee": {"id": 96}, "organization": {"id": 673}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 438}, "assignee": {"id": 23}, "organization": {"id": 615}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 324, "owner": {"id": 490}, "assignee": {"id": 80}, "organization": {"id": 136}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 429}, "assignee": {"id": 82}, "organization": {"id": 196}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 286}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 454}, "assignee": {"id": 22}, "organization": {"id": 622}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"id": 365, "owner": {"id": 419}, "assignee": {"id": 87}, "organization": {"id": 615}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"id": 383, "owner": {"id": 491}, "assignee": {"id": 52}, "organization": {"id": 198}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 381, "owner": {"id": 461}, "assignee": {"id": 79}, "organization": {"id": 131}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 379, "owner": {"id": 440}, "assignee": {"id": 595}, "organization": {"id": 699}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 28}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 447}, "assignee": {"id": 577}, "organization": {"id": 627}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 437}, "assignee": {"id": 545}, "organization": {"id": 154}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 189, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 315, "owner": {"id": 412}, "assignee": {"id": 505}, "organization": {"id": 189}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 132, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 324, "owner": {"id": 487}, "assignee": {"id": 542}, "organization": {"id": 663}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"id": 396, "owner": {"id": 485}, "assignee": {"id": 542}, "organization": {"id": 674}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 406}, "assignee": {"id": 533}, "organization": {"id": 125}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 334, "owner": {"id": 476}, "assignee": {"id": 562}, "organization": {"id": 105}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 451}, "assignee": {"id": 533}, "organization": {"id": 614}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"id": 308, "owner": {"id": 440}, "assignee": {"id": 509}, "organization": {"id": 616}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 238}, "user": {"role": "supervisor"}}}, "resource": {"id": 303, "owner": {"id": 447}, "assignee": {"id": 531}, "organization": {"id": 106}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 353, "owner": {"id": 441}, "assignee": {"id": 534}, "organization": {"id": 152}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 228}, "user": {"role": "worker"}}}, "resource": {"id": 343, "owner": {"id": 450}, "assignee": {"id": 502}, "organization": {"id": 628}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 418}, "assignee": {"id": 562}, "organization": {"id": 662}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 491}, "assignee": {"id": 564}, "organization": {"id": 159}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 117, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 487}, "assignee": {"id": 526}, "organization": {"id": 117}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 491}, "assignee": {"id": 593}, "organization": {"id": 694}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 273}, "user": {"role": null}}}, "resource": {"id": 349, "owner": {"id": 488}, "assignee": {"id": 551}, "organization": {"id": 637}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"id": 345, "owner": {"id": 489}, "assignee": {"id": 532}, "organization": {"id": 154}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"id": 326, "owner": {"id": 414}, "assignee": {"id": 590}, "organization": {"id": 114}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 91, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"id": 322, "owner": {"id": 471}, "assignee": {"id": 569}, "organization": {"id": 604}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"id": 315, "owner": {"id": 472}, "assignee": {"id": 555}, "organization": {"id": 629}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 166, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"id": 325, "owner": {"id": 434}, "assignee": {"id": 569}, "organization": {"id": 166}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 444}, "assignee": {"id": 505}, "organization": {"id": 148}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 445}, "assignee": {"id": 571}, "organization": {"id": 616}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 382, "owner": {"id": 439}, "assignee": {"id": 539}, "organization": {"id": 625}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 413}, "assignee": {"id": 574}, "organization": {"id": 140}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 402}, "assignee": {"id": 516}, "organization": {"id": 177}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"id": 354, "owner": {"id": 495}, "assignee": {"id": 537}, "organization": {"id": 607}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 200}, "user": {"role": "supervisor"}}}, "resource": {"id": 337, "owner": {"id": 484}, "assignee": {"id": 535}, "organization": {"id": 693}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 139, "owner": {"id": 282}, "user": {"role": "supervisor"}}}, "resource": {"id": 322, "owner": {"id": 403}, "assignee": {"id": 565}, "organization": {"id": 139}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"id": 374, "owner": {"id": 494}, "assignee": {"id": 552}, "organization": {"id": 107}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 327, "owner": {"id": 480}, "assignee": {"id": 554}, "organization": {"id": 617}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 435}, "assignee": {"id": 508}, "organization": {"id": 659}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 214}, "user": {"role": "worker"}}}, "resource": {"id": 391, "owner": {"id": 496}, "assignee": {"id": 500}, "organization": {"id": 181}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 396, "owner": {"id": 420}, "assignee": {"id": 583}, "organization": {"id": 156}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 130, "owner": {"id": 249}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 475}, "assignee": {"id": 510}, "organization": {"id": 626}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 174, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 439}, "assignee": {"id": 573}, "organization": {"id": 677}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"id": 371, "owner": {"id": 499}, "assignee": {"id": 581}, "organization": {"id": 167}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 373, "owner": {"id": 490}, "assignee": {"id": 575}, "organization": {"id": 187}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 33}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 467}, "assignee": {"id": 543}, "organization": {"id": 612}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"id": 397, "owner": {"id": 431}, "assignee": {"id": 563}, "organization": {"id": 680}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 149, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 417}, "assignee": {"id": 544}, "organization": {"id": 149}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 373, "owner": {"id": 482}, "assignee": {"id": 588}, "organization": {"id": 106}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"id": 300, "owner": {"id": 482}, "assignee": {"id": 596}, "organization": {"id": 650}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 444}, "assignee": {"id": 577}, "organization": {"id": 670}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 68, "privilege": "user"}, "organization": {"id": 139, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 358, "owner": {"id": 461}, "assignee": {"id": 543}, "organization": {"id": 139}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 427}, "assignee": {"id": 573}, "organization": {"id": 108}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 282}, "user": {"role": "supervisor"}}}, "resource": {"id": 371, "owner": {"id": 434}, "assignee": {"id": 568}, "organization": {"id": 627}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 327, "owner": {"id": 483}, "assignee": {"id": 562}, "organization": {"id": 639}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 149, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 458}, "assignee": {"id": 500}, "organization": {"id": 149}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 248}, "user": {"role": "supervisor"}}}, "resource": {"id": 330, "owner": {"id": 420}, "assignee": {"id": 562}, "organization": {"id": 179}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 338, "owner": {"id": 457}, "assignee": {"id": 576}, "organization": {"id": 650}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 90, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"id": 398, "owner": {"id": 464}, "assignee": {"id": 560}, "organization": {"id": 692}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 370, "owner": {"id": 418}, "assignee": {"id": 520}, "organization": {"id": 147}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 20, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 209}, "user": {"role": "worker"}}}, "resource": {"id": 341, "owner": {"id": 479}, "assignee": {"id": 558}, "organization": {"id": 113}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 481}, "assignee": {"id": 584}, "organization": {"id": 654}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 243}, "user": {"role": null}}}, "resource": {"id": 317, "owner": {"id": 463}, "assignee": {"id": 586}, "organization": {"id": 636}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 491}, "assignee": {"id": 583}, "organization": {"id": 158}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 398, "owner": {"id": 414}, "assignee": {"id": 509}, "organization": {"id": 181}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 454}, "assignee": {"id": 581}, "organization": {"id": 656}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 186, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"id": 383, "owner": {"id": 485}, "assignee": {"id": 563}, "organization": {"id": 658}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 112, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 441}, "assignee": {"id": 552}, "organization": {"id": 112}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 363, "owner": {"id": 457}, "assignee": {"id": 507}, "organization": {"id": 169}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 361, "owner": {"id": 415}, "assignee": {"id": 587}, "organization": {"id": 686}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 449}, "assignee": {"id": 597}, "organization": {"id": 662}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 376, "owner": {"id": 496}, "assignee": {"id": 525}, "organization": {"id": 166}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 242}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 407}, "assignee": {"id": 592}, "organization": {"id": 116}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 51, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 248}, "user": {"role": "supervisor"}}}, "resource": {"id": 359, "owner": {"id": 463}, "assignee": {"id": 599}, "organization": {"id": 619}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"id": 305, "owner": {"id": 469}, "assignee": {"id": 539}, "organization": {"id": 625}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 414}, "assignee": {"id": 598}, "organization": {"id": 121}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"id": 350, "owner": {"id": 418}, "assignee": {"id": 578}, "organization": {"id": 125}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"id": 342, "owner": {"id": 488}, "assignee": {"id": 528}, "organization": {"id": 691}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 437}, "assignee": {"id": 561}, "organization": {"id": 670}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 327, "owner": {"id": 463}, "assignee": {"id": 572}, "organization": {"id": 157}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"id": 321, "owner": {"id": 485}, "assignee": {"id": 514}, "organization": {"id": 102}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 341, "owner": {"id": 420}, "assignee": {"id": 507}, "organization": {"id": 669}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 485}, "assignee": {"id": 584}, "organization": {"id": 672}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 271}, "user": {"role": null}}}, "resource": {"id": 336, "owner": {"id": 458}, "assignee": {"id": 596}, "organization": {"id": 174}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 354, "owner": {"id": 468}, "assignee": {"id": 510}, "organization": {"id": 174}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"id": 367, "owner": {"id": 431}, "assignee": {"id": 528}, "organization": {"id": 613}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 480}, "assignee": {"id": 501}, "organization": {"id": 696}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 357, "owner": {"id": 431}, "assignee": {"id": 543}, "organization": {"id": 182}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 142, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"id": 374, "owner": {"id": 455}, "assignee": {"id": 514}, "organization": {"id": 142}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 458}, "assignee": {"id": 547}, "organization": {"id": 672}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 416}, "assignee": {"id": 531}, "organization": {"id": 606}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 482}, "assignee": {"id": 558}, "organization": {"id": 189}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 429}, "assignee": {"id": 510}, "organization": {"id": 123}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 486}, "assignee": {"id": 502}, "organization": {"id": 691}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 264}, "user": {"role": "supervisor"}}}, "resource": {"id": 316, "owner": {"id": 431}, "assignee": {"id": 580}, "organization": {"id": 617}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 361, "owner": {"id": 439}, "assignee": {"id": 518}, "organization": {"id": 155}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"id": 348, "owner": {"id": 481}, "assignee": {"id": 537}, "organization": {"id": 103}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"id": 314, "owner": {"id": 443}, "assignee": {"id": 565}, "organization": {"id": 601}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 434}, "assignee": {"id": 573}, "organization": {"id": 677}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 328, "owner": {"id": 497}, "assignee": {"id": 566}, "organization": {"id": 114}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 59, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"id": 317, "owner": {"id": 477}, "assignee": {"id": 547}, "organization": {"id": 194}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"id": 307, "owner": {"id": 430}, "assignee": {"id": 589}, "organization": {"id": 626}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 395, "owner": {"id": 462}, "assignee": {"id": 570}, "organization": {"id": 639}}} } -test_scope_IMPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "import:dataset", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 363, "owner": {"id": 410}, "assignee": {"id": 532}, "organization": {"id": 144}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 307, "owner": {"id": 491}, "assignee": {"id": 554}, "organization": {"id": 123}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": null}, "resource": {"id": 361, "owner": {"id": 24}, "assignee": {"id": 502}, "organization": {"id": 675}}} +test_scope_VIEW_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": null}, "resource": {"id": 325, "owner": {"id": 45}, "assignee": {"id": 558}, "organization": {"id": 668}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": null}, "resource": {"id": 341, "owner": {"id": 80}, "assignee": {"id": 550}, "organization": {"id": 667}}} +test_scope_VIEW_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": null}, "resource": {"id": 379, "owner": {"id": 0}, "assignee": {"id": 598}, "organization": {"id": 607}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": null}, "resource": {"id": 332, "owner": {"id": 60}, "assignee": {"id": 519}, "organization": {"id": 651}}} +test_scope_VIEW_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": null}, "resource": {"id": 356, "owner": {"id": 78}, "assignee": {"id": 522}, "organization": {"id": 655}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": null}, "resource": {"id": 391, "owner": {"id": 2}, "assignee": {"id": 543}, "organization": {"id": 635}}} +test_scope_VIEW_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 51, "privilege": "worker"}, "organization": null}, "resource": {"id": 300, "owner": {"id": 51}, "assignee": {"id": 597}, "organization": {"id": 614}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 5}, "assignee": {"id": 502}, "organization": {"id": 652}}} +test_scope_VIEW_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": null}, "resource": {"id": 397, "owner": {"id": 50}, "assignee": {"id": 589}, "organization": {"id": 626}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": null}, "resource": {"id": 355, "owner": {"id": 401}, "assignee": {"id": 66}, "organization": {"id": 676}}} +test_scope_VIEW_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": null}, "resource": {"id": 332, "owner": {"id": 415}, "assignee": {"id": 35}, "organization": {"id": 650}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": null}, "resource": {"id": 386, "owner": {"id": 495}, "assignee": {"id": 81}, "organization": {"id": 669}}} +test_scope_VIEW_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": null}, "resource": {"id": 319, "owner": {"id": 495}, "assignee": {"id": 12}, "organization": {"id": 665}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": null}, "resource": {"id": 329, "owner": {"id": 464}, "assignee": {"id": 85}, "organization": {"id": 619}}} +test_scope_VIEW_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": null}, "resource": {"id": 320, "owner": {"id": 417}, "assignee": {"id": 5}, "organization": {"id": 676}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": null}, "resource": {"id": 336, "owner": {"id": 441}, "assignee": {"id": 89}, "organization": {"id": 600}}} +test_scope_VIEW_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": null}, "resource": {"id": 313, "owner": {"id": 492}, "assignee": {"id": 74}, "organization": {"id": 624}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": null}, "resource": {"id": 337, "owner": {"id": 453}, "assignee": {"id": 62}, "organization": {"id": 642}}} +test_scope_VIEW_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": null}, "resource": {"id": 355, "owner": {"id": 428}, "assignee": {"id": 81}, "organization": {"id": 658}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": null}, "resource": {"id": 384, "owner": {"id": 489}, "assignee": {"id": 540}, "organization": {"id": 635}}} +test_scope_VIEW_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": null}, "resource": {"id": 344, "owner": {"id": 484}, "assignee": {"id": 559}, "organization": {"id": 685}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": null}, "resource": {"id": 339, "owner": {"id": 462}, "assignee": {"id": 562}, "organization": {"id": 607}}} +test_scope_VIEW_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": null}, "resource": {"id": 316, "owner": {"id": 414}, "assignee": {"id": 512}, "organization": {"id": 663}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": null}, "resource": {"id": 328, "owner": {"id": 427}, "assignee": {"id": 507}, "organization": {"id": 688}}} +test_scope_VIEW_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": null}, "resource": {"id": 306, "owner": {"id": 454}, "assignee": {"id": 516}, "organization": {"id": 616}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": null}, "resource": {"id": 324, "owner": {"id": 486}, "assignee": {"id": 535}, "organization": {"id": 638}}} +test_scope_VIEW_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": null}, "resource": {"id": 333, "owner": {"id": 469}, "assignee": {"id": 505}, "organization": {"id": 686}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": null}, "resource": {"id": 384, "owner": {"id": 456}, "assignee": {"id": 530}, "organization": {"id": 674}}} +test_scope_VIEW_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": null}, "resource": {"id": 381, "owner": {"id": 483}, "assignee": {"id": 550}, "organization": {"id": 656}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"id": 363, "owner": {"id": 26}, "assignee": {"id": 534}, "organization": {"id": 695}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"id": 382, "owner": {"id": 82}, "assignee": {"id": 599}, "organization": {"id": 600}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 43}, "assignee": {"id": 550}, "organization": {"id": 165}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 357, "owner": {"id": 21}, "assignee": {"id": 532}, "organization": {"id": 124}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 364, "owner": {"id": 95}, "assignee": {"id": 577}, "organization": {"id": 636}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 290}, "user": {"role": "maintainer"}}}, "resource": {"id": 333, "owner": {"id": 49}, "assignee": {"id": 569}, "organization": {"id": 620}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 54}, "assignee": {"id": 566}, "organization": {"id": 106}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 223}, "user": {"role": "maintainer"}}}, "resource": {"id": 361, "owner": {"id": 23}, "assignee": {"id": 550}, "organization": {"id": 120}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 364, "owner": {"id": 39}, "assignee": {"id": 578}, "organization": {"id": 634}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 132, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 77}, "assignee": {"id": 552}, "organization": {"id": 673}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 119, "owner": {"id": 200}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 0}, "assignee": {"id": 500}, "organization": {"id": 119}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 28}, "assignee": {"id": 541}, "organization": {"id": 154}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"id": 372, "owner": {"id": 6}, "assignee": {"id": 564}, "organization": {"id": 621}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 283}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 82}, "assignee": {"id": 559}, "organization": {"id": 638}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 23}, "assignee": {"id": 514}, "organization": {"id": 162}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"id": 365, "owner": {"id": 13}, "assignee": {"id": 520}, "organization": {"id": 108}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 76, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 313, "owner": {"id": 76}, "assignee": {"id": 567}, "organization": {"id": 639}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 330, "owner": {"id": 51}, "assignee": {"id": 500}, "organization": {"id": 646}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 84}, "assignee": {"id": 564}, "organization": {"id": 166}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 156, "owner": {"id": 277}, "user": {"role": null}}}, "resource": {"id": 313, "owner": {"id": 8}, "assignee": {"id": 544}, "organization": {"id": 156}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 113, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"id": 361, "owner": {"id": 35}, "assignee": {"id": 546}, "organization": {"id": 641}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 353, "owner": {"id": 65}, "assignee": {"id": 506}, "organization": {"id": 602}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 384, "owner": {"id": 9}, "assignee": {"id": 559}, "organization": {"id": 151}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"id": 327, "owner": {"id": 36}, "assignee": {"id": 578}, "organization": {"id": 167}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 199, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"id": 323, "owner": {"id": 45}, "assignee": {"id": 568}, "organization": {"id": 643}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 39}, "assignee": {"id": 553}, "organization": {"id": 641}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 91, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"id": 353, "owner": {"id": 91}, "assignee": {"id": 535}, "organization": {"id": 186}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 19}, "assignee": {"id": 587}, "organization": {"id": 168}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 53}, "assignee": {"id": 588}, "organization": {"id": 672}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"id": 371, "owner": {"id": 2}, "assignee": {"id": 530}, "organization": {"id": 681}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 339, "owner": {"id": 11}, "assignee": {"id": 555}, "organization": {"id": 176}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 384, "owner": {"id": 56}, "assignee": {"id": 544}, "organization": {"id": 107}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"id": 389, "owner": {"id": 63}, "assignee": {"id": 583}, "organization": {"id": 698}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"id": 305, "owner": {"id": 89}, "assignee": {"id": 599}, "organization": {"id": 664}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 8}, "assignee": {"id": 575}, "organization": {"id": 124}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"id": 398, "owner": {"id": 33}, "assignee": {"id": 583}, "organization": {"id": 183}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 347, "owner": {"id": 25}, "assignee": {"id": 531}, "organization": {"id": 626}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 52}, "assignee": {"id": 538}, "organization": {"id": 685}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"id": 312, "owner": {"id": 78}, "assignee": {"id": 510}, "organization": {"id": 183}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 214}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 59}, "assignee": {"id": 553}, "organization": {"id": 148}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 324, "owner": {"id": 39}, "assignee": {"id": 513}, "organization": {"id": 632}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 371, "owner": {"id": 70}, "assignee": {"id": 578}, "organization": {"id": 633}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 367, "owner": {"id": 39}, "assignee": {"id": 526}, "organization": {"id": 144}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 20, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 20}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 20}, "assignee": {"id": 518}, "organization": {"id": 148}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 10}, "assignee": {"id": 568}, "organization": {"id": 603}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 58}, "assignee": {"id": 566}, "organization": {"id": 679}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 84}, "assignee": {"id": 589}, "organization": {"id": 188}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 47}, "assignee": {"id": 577}, "organization": {"id": 190}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 359, "owner": {"id": 52}, "assignee": {"id": 596}, "organization": {"id": 625}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 128, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 303, "owner": {"id": 57}, "assignee": {"id": 512}, "organization": {"id": 612}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 320, "owner": {"id": 6}, "assignee": {"id": 539}, "organization": {"id": 159}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 391, "owner": {"id": 61}, "assignee": {"id": 563}, "organization": {"id": 166}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 88}, "assignee": {"id": 512}, "organization": {"id": 636}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 88}, "assignee": {"id": 579}, "organization": {"id": 645}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 67}, "assignee": {"id": 566}, "organization": {"id": 146}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 202}, "user": {"role": "worker"}}}, "resource": {"id": 303, "owner": {"id": 40}, "assignee": {"id": 524}, "organization": {"id": 180}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 53}, "assignee": {"id": 512}, "organization": {"id": 625}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 139, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 373, "owner": {"id": 28}, "assignee": {"id": 542}, "organization": {"id": 688}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"id": 386, "owner": {"id": 33}, "assignee": {"id": 501}, "organization": {"id": 152}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 359, "owner": {"id": 99}, "assignee": {"id": 553}, "organization": {"id": 169}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 81}, "assignee": {"id": 533}, "organization": {"id": 682}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 309, "owner": {"id": 89}, "assignee": {"id": 516}, "organization": {"id": 615}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 74}, "assignee": {"id": 579}, "organization": {"id": 161}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 93}, "assignee": {"id": 586}, "organization": {"id": 136}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 22}, "assignee": {"id": 558}, "organization": {"id": 614}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 70}, "assignee": {"id": 531}, "organization": {"id": 662}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"id": 311, "owner": {"id": 81}, "assignee": {"id": 557}, "organization": {"id": 134}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 336, "owner": {"id": 71}, "assignee": {"id": 599}, "organization": {"id": 110}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 393, "owner": {"id": 68}, "assignee": {"id": 547}, "organization": {"id": 670}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 350, "owner": {"id": 72}, "assignee": {"id": 555}, "organization": {"id": 641}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"id": 309, "owner": {"id": 82}, "assignee": {"id": 568}, "organization": {"id": 187}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 277}, "user": {"role": "supervisor"}}}, "resource": {"id": 378, "owner": {"id": 35}, "assignee": {"id": 551}, "organization": {"id": 184}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 90}, "assignee": {"id": 574}, "organization": {"id": 679}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 51, "privilege": "worker"}, "organization": {"id": 195, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 365, "owner": {"id": 51}, "assignee": {"id": 525}, "organization": {"id": 699}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 47}, "assignee": {"id": 558}, "organization": {"id": 133}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 56}, "assignee": {"id": 580}, "organization": {"id": 137}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 270}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 4}, "assignee": {"id": 509}, "organization": {"id": 645}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 254}, "user": {"role": null}}}, "resource": {"id": 359, "owner": {"id": 78}, "assignee": {"id": 588}, "organization": {"id": 606}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"id": 381, "owner": {"id": 77}, "assignee": {"id": 587}, "organization": {"id": 124}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 51, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 51}, "assignee": {"id": 554}, "organization": {"id": 172}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"id": 322, "owner": {"id": 23}, "assignee": {"id": 593}, "organization": {"id": 614}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"id": 340, "owner": {"id": 82}, "assignee": {"id": 556}, "organization": {"id": 633}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 50}, "assignee": {"id": 569}, "organization": {"id": 196}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 52}, "assignee": {"id": 511}, "organization": {"id": 163}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 37}, "assignee": {"id": 553}, "organization": {"id": 688}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 77}, "assignee": {"id": 500}, "organization": {"id": 626}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"id": 377, "owner": {"id": 22}, "assignee": {"id": 547}, "organization": {"id": 183}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 318, "owner": {"id": 62}, "assignee": {"id": 525}, "organization": {"id": 189}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 264}, "user": {"role": "supervisor"}}}, "resource": {"id": 367, "owner": {"id": 14}, "assignee": {"id": 531}, "organization": {"id": 622}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 330, "owner": {"id": 64}, "assignee": {"id": 544}, "organization": {"id": 664}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 325, "owner": {"id": 83}, "assignee": {"id": 563}, "organization": {"id": 127}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"id": 399, "owner": {"id": 1}, "assignee": {"id": 593}, "organization": {"id": 175}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 6}, "assignee": {"id": 528}, "organization": {"id": 656}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 370, "owner": {"id": 88}, "assignee": {"id": 530}, "organization": {"id": 660}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"id": 374, "owner": {"id": 56}, "assignee": {"id": 573}, "organization": {"id": 175}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 98}, "assignee": {"id": 566}, "organization": {"id": 128}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 319, "owner": {"id": 82}, "assignee": {"id": 523}, "organization": {"id": 668}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"id": 394, "owner": {"id": 10}, "assignee": {"id": 582}, "organization": {"id": 670}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 264}, "user": {"role": null}}}, "resource": {"id": 320, "owner": {"id": 30}, "assignee": {"id": 555}, "organization": {"id": 183}}} +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 322, "owner": {"id": 84}, "assignee": {"id": 558}, "organization": {"id": 115}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 327, "owner": {"id": 459}, "assignee": {"id": 51}, "organization": {"id": 606}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"id": 350, "owner": {"id": 481}, "assignee": {"id": 66}, "organization": {"id": 692}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 447}, "assignee": {"id": 4}, "organization": {"id": 142}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 64}, "user": {"role": "owner"}}}, "resource": {"id": 365, "owner": {"id": 468}, "assignee": {"id": 64}, "organization": {"id": 133}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 156, "owner": {"id": 270}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 435}, "assignee": {"id": 21}, "organization": {"id": 692}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 15, "privilege": "admin"}, "organization": {"id": 190, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 350, "owner": {"id": 407}, "assignee": {"id": 15}, "organization": {"id": 615}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 399, "owner": {"id": 433}, "assignee": {"id": 32}, "organization": {"id": 104}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 102, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 311, "owner": {"id": 460}, "assignee": {"id": 96}, "organization": {"id": 102}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 385, "owner": {"id": 426}, "assignee": {"id": 24}, "organization": {"id": 654}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 170, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 399, "owner": {"id": 416}, "assignee": {"id": 18}, "organization": {"id": 661}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 354, "owner": {"id": 486}, "assignee": {"id": 1}, "organization": {"id": 134}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"id": 301, "owner": {"id": 480}, "assignee": {"id": 94}, "organization": {"id": 193}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"id": 317, "owner": {"id": 429}, "assignee": {"id": 58}, "organization": {"id": 665}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 101, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 426}, "assignee": {"id": 73}, "organization": {"id": 626}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"id": 372, "owner": {"id": 415}, "assignee": {"id": 3}, "organization": {"id": 147}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 474}, "assignee": {"id": 20}, "organization": {"id": 104}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 320, "owner": {"id": 467}, "assignee": {"id": 58}, "organization": {"id": 612}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"id": 330, "owner": {"id": 412}, "assignee": {"id": 63}, "organization": {"id": 653}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 415}, "assignee": {"id": 17}, "organization": {"id": 104}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"id": 391, "owner": {"id": 470}, "assignee": {"id": 55}, "organization": {"id": 198}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": {"id": 196, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"id": 340, "owner": {"id": 478}, "assignee": {"id": 85}, "organization": {"id": 613}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 8}, "user": {"role": "owner"}}}, "resource": {"id": 330, "owner": {"id": 403}, "assignee": {"id": 8}, "organization": {"id": 663}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"id": 301, "owner": {"id": 420}, "assignee": {"id": 1}, "organization": {"id": 162}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 319, "owner": {"id": 446}, "assignee": {"id": 62}, "organization": {"id": 197}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 387, "owner": {"id": 473}, "assignee": {"id": 11}, "organization": {"id": 623}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 377, "owner": {"id": 433}, "assignee": {"id": 1}, "organization": {"id": 650}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 174, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"id": 361, "owner": {"id": 457}, "assignee": {"id": 47}, "organization": {"id": 174}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 330, "owner": {"id": 413}, "assignee": {"id": 88}, "organization": {"id": 140}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"id": 345, "owner": {"id": 464}, "assignee": {"id": 59}, "organization": {"id": 632}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 282}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 463}, "assignee": {"id": 25}, "organization": {"id": 699}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 449}, "assignee": {"id": 51}, "organization": {"id": 191}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 293}, "user": {"role": "supervisor"}}}, "resource": {"id": 391, "owner": {"id": 498}, "assignee": {"id": 20}, "organization": {"id": 101}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 113, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 457}, "assignee": {"id": 34}, "organization": {"id": 651}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"id": 372, "owner": {"id": 475}, "assignee": {"id": 42}, "organization": {"id": 637}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 463}, "assignee": {"id": 99}, "organization": {"id": 119}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 214}, "user": {"role": "worker"}}}, "resource": {"id": 368, "owner": {"id": 455}, "assignee": {"id": 75}, "organization": {"id": 138}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 361, "owner": {"id": 496}, "assignee": {"id": 55}, "organization": {"id": 616}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 307, "owner": {"id": 431}, "assignee": {"id": 67}, "organization": {"id": 636}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"id": 301, "owner": {"id": 499}, "assignee": {"id": 72}, "organization": {"id": 114}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"id": 301, "owner": {"id": 416}, "assignee": {"id": 42}, "organization": {"id": 110}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 391, "owner": {"id": 497}, "assignee": {"id": 7}, "organization": {"id": 698}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 182, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"id": 383, "owner": {"id": 451}, "assignee": {"id": 18}, "organization": {"id": 650}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"id": 374, "owner": {"id": 475}, "assignee": {"id": 50}, "organization": {"id": 162}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 489}, "assignee": {"id": 62}, "organization": {"id": 191}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 14, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 410}, "assignee": {"id": 14}, "organization": {"id": 666}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 449}, "assignee": {"id": 2}, "organization": {"id": 692}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 389, "owner": {"id": 410}, "assignee": {"id": 26}, "organization": {"id": 116}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"id": 367, "owner": {"id": 439}, "assignee": {"id": 76}, "organization": {"id": 109}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 395, "owner": {"id": 469}, "assignee": {"id": 72}, "organization": {"id": 690}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"id": 354, "owner": {"id": 461}, "assignee": {"id": 35}, "organization": {"id": 653}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"id": 376, "owner": {"id": 423}, "assignee": {"id": 43}, "organization": {"id": 178}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 139, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 310, "owner": {"id": 478}, "assignee": {"id": 94}, "organization": {"id": 139}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 327, "owner": {"id": 410}, "assignee": {"id": 79}, "organization": {"id": 609}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"id": 327, "owner": {"id": 413}, "assignee": {"id": 57}, "organization": {"id": 669}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 258}, "user": {"role": "worker"}}}, "resource": {"id": 333, "owner": {"id": 458}, "assignee": {"id": 95}, "organization": {"id": 135}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"id": 310, "owner": {"id": 443}, "assignee": {"id": 1}, "organization": {"id": 136}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 439}, "assignee": {"id": 57}, "organization": {"id": 671}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 357, "owner": {"id": 471}, "assignee": {"id": 2}, "organization": {"id": 654}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 9, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"id": 334, "owner": {"id": 432}, "assignee": {"id": 9}, "organization": {"id": 194}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 105, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"id": 331, "owner": {"id": 451}, "assignee": {"id": 15}, "organization": {"id": 105}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": {"id": 135, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"id": 398, "owner": {"id": 459}, "assignee": {"id": 75}, "organization": {"id": 696}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 353, "owner": {"id": 480}, "assignee": {"id": 78}, "organization": {"id": 688}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"id": 363, "owner": {"id": 482}, "assignee": {"id": 69}, "organization": {"id": 153}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 107, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 457}, "assignee": {"id": 65}, "organization": {"id": 107}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 199, "owner": {"id": 281}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 433}, "assignee": {"id": 94}, "organization": {"id": 617}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 323, "owner": {"id": 409}, "assignee": {"id": 60}, "organization": {"id": 601}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 328, "owner": {"id": 422}, "assignee": {"id": 89}, "organization": {"id": 122}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 451}, "assignee": {"id": 11}, "organization": {"id": 142}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"id": 307, "owner": {"id": 452}, "assignee": {"id": 81}, "organization": {"id": 667}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 462}, "assignee": {"id": 72}, "organization": {"id": 610}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"id": 339, "owner": {"id": 424}, "assignee": {"id": 26}, "organization": {"id": 143}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 473}, "assignee": {"id": 90}, "organization": {"id": 109}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 338, "owner": {"id": 463}, "assignee": {"id": 54}, "organization": {"id": 664}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 464}, "assignee": {"id": 39}, "organization": {"id": 600}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 428}, "assignee": {"id": 50}, "organization": {"id": 157}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 51, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 462}, "assignee": {"id": 51}, "organization": {"id": 128}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 141, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"id": 302, "owner": {"id": 475}, "assignee": {"id": 33}, "organization": {"id": 624}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 498}, "assignee": {"id": 39}, "organization": {"id": 640}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 186, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 331, "owner": {"id": 419}, "assignee": {"id": 90}, "organization": {"id": 186}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 476}, "assignee": {"id": 1}, "organization": {"id": 165}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 470}, "assignee": {"id": 31}, "organization": {"id": 632}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 316, "owner": {"id": 470}, "assignee": {"id": 90}, "organization": {"id": 687}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 493}, "assignee": {"id": 82}, "organization": {"id": 128}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 41, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 458}, "assignee": {"id": 41}, "organization": {"id": 144}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"id": 381, "owner": {"id": 439}, "assignee": {"id": 63}, "organization": {"id": 663}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 330, "owner": {"id": 488}, "assignee": {"id": 34}, "organization": {"id": 693}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"id": 376, "owner": {"id": 416}, "assignee": {"id": 51}, "organization": {"id": 163}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 434}, "assignee": {"id": 52}, "organization": {"id": 158}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"id": 363, "owner": {"id": 443}, "assignee": {"id": 71}, "organization": {"id": 627}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 353, "owner": {"id": 404}, "assignee": {"id": 48}, "organization": {"id": 690}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 469}, "assignee": {"id": 60}, "organization": {"id": 187}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 218}, "user": {"role": "supervisor"}}}, "resource": {"id": 327, "owner": {"id": 479}, "assignee": {"id": 33}, "organization": {"id": 168}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 214}, "user": {"role": "worker"}}}, "resource": {"id": 398, "owner": {"id": 491}, "assignee": {"id": 68}, "organization": {"id": 651}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 381, "owner": {"id": 481}, "assignee": {"id": 70}, "organization": {"id": 675}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 245}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 461}, "assignee": {"id": 44}, "organization": {"id": 100}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 409}, "assignee": {"id": 2}, "organization": {"id": 143}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 449}, "assignee": {"id": 11}, "organization": {"id": 687}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 243}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 490}, "assignee": {"id": 33}, "organization": {"id": 663}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": {"id": 199, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 397, "owner": {"id": 406}, "assignee": {"id": 90}, "organization": {"id": 199}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 485}, "assignee": {"id": 8}, "organization": {"id": 146}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 181, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 379, "owner": {"id": 438}, "assignee": {"id": 504}, "organization": {"id": 624}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 156, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"id": 381, "owner": {"id": 412}, "assignee": {"id": 584}, "organization": {"id": 696}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 340, "owner": {"id": 463}, "assignee": {"id": 522}, "organization": {"id": 134}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"id": 301, "owner": {"id": 406}, "assignee": {"id": 579}, "organization": {"id": 125}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 50, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 407}, "assignee": {"id": 583}, "organization": {"id": 673}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 321, "owner": {"id": 455}, "assignee": {"id": 566}, "organization": {"id": 670}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 399, "owner": {"id": 490}, "assignee": {"id": 548}, "organization": {"id": 105}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 217}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 443}, "assignee": {"id": 554}, "organization": {"id": 186}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"id": 363, "owner": {"id": 490}, "assignee": {"id": 549}, "organization": {"id": 684}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 450}, "assignee": {"id": 598}, "organization": {"id": 615}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 308, "owner": {"id": 433}, "assignee": {"id": 540}, "organization": {"id": 167}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"id": 331, "owner": {"id": 424}, "assignee": {"id": 531}, "organization": {"id": 198}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"id": 324, "owner": {"id": 422}, "assignee": {"id": 573}, "organization": {"id": 661}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 281}, "user": {"role": "worker"}}}, "resource": {"id": 355, "owner": {"id": 425}, "assignee": {"id": 500}, "organization": {"id": 674}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 50, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 489}, "assignee": {"id": 553}, "organization": {"id": 134}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"id": 380, "owner": {"id": 482}, "assignee": {"id": 563}, "organization": {"id": 150}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"id": 360, "owner": {"id": 427}, "assignee": {"id": 558}, "organization": {"id": 687}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 271}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 461}, "assignee": {"id": 562}, "organization": {"id": 698}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"id": 347, "owner": {"id": 400}, "assignee": {"id": 541}, "organization": {"id": 177}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 456}, "assignee": {"id": 539}, "organization": {"id": 150}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"id": 371, "owner": {"id": 488}, "assignee": {"id": 511}, "organization": {"id": 638}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 449}, "assignee": {"id": 533}, "organization": {"id": 654}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 189, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 400}, "assignee": {"id": 586}, "organization": {"id": 189}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 384, "owner": {"id": 444}, "assignee": {"id": 530}, "organization": {"id": 122}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"id": 304, "owner": {"id": 428}, "assignee": {"id": 534}, "organization": {"id": 633}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"id": 387, "owner": {"id": 431}, "assignee": {"id": 501}, "organization": {"id": 624}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 174, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 441}, "assignee": {"id": 514}, "organization": {"id": 174}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 325, "owner": {"id": 468}, "assignee": {"id": 574}, "organization": {"id": 165}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 373, "owner": {"id": 477}, "assignee": {"id": 517}, "organization": {"id": 605}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 469}, "assignee": {"id": 594}, "organization": {"id": 691}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 113, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 322, "owner": {"id": 474}, "assignee": {"id": 507}, "organization": {"id": 113}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 196, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 320, "owner": {"id": 488}, "assignee": {"id": 523}, "organization": {"id": 196}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 434}, "assignee": {"id": 566}, "organization": {"id": 655}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 353, "owner": {"id": 448}, "assignee": {"id": 571}, "organization": {"id": 652}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 489}, "assignee": {"id": 598}, "organization": {"id": 195}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"id": 353, "owner": {"id": 434}, "assignee": {"id": 563}, "organization": {"id": 129}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 175, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 493}, "assignee": {"id": 549}, "organization": {"id": 617}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"id": 388, "owner": {"id": 430}, "assignee": {"id": 589}, "organization": {"id": 695}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 405}, "assignee": {"id": 516}, "organization": {"id": 155}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 330, "owner": {"id": 457}, "assignee": {"id": 596}, "organization": {"id": 195}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 90, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 484}, "assignee": {"id": 592}, "organization": {"id": 617}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 477}, "assignee": {"id": 560}, "organization": {"id": 690}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 131, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"id": 387, "owner": {"id": 447}, "assignee": {"id": 500}, "organization": {"id": 131}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"id": 348, "owner": {"id": 423}, "assignee": {"id": 591}, "organization": {"id": 144}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 165, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 404}, "assignee": {"id": 546}, "organization": {"id": 666}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 327, "owner": {"id": 411}, "assignee": {"id": 561}, "organization": {"id": 617}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 105, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 387, "owner": {"id": 460}, "assignee": {"id": 589}, "organization": {"id": 105}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 448}, "assignee": {"id": 577}, "organization": {"id": 134}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 451}, "assignee": {"id": 570}, "organization": {"id": 642}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 487}, "assignee": {"id": 594}, "organization": {"id": 610}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 174, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 389, "owner": {"id": 425}, "assignee": {"id": 538}, "organization": {"id": 174}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 369, "owner": {"id": 461}, "assignee": {"id": 506}, "organization": {"id": 135}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"id": 389, "owner": {"id": 403}, "assignee": {"id": 546}, "organization": {"id": 626}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 326, "owner": {"id": 410}, "assignee": {"id": 503}, "organization": {"id": 606}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 466}, "assignee": {"id": 558}, "organization": {"id": 198}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 327, "owner": {"id": 424}, "assignee": {"id": 599}, "organization": {"id": 116}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 493}, "assignee": {"id": 549}, "organization": {"id": 673}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 455}, "assignee": {"id": 571}, "organization": {"id": 636}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 463}, "assignee": {"id": 536}, "organization": {"id": 106}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 110, "owner": {"id": 210}, "user": {"role": null}}}, "resource": {"id": 312, "owner": {"id": 455}, "assignee": {"id": 509}, "organization": {"id": 110}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 112, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 357, "owner": {"id": 471}, "assignee": {"id": 543}, "organization": {"id": 664}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 462}, "assignee": {"id": 576}, "organization": {"id": 641}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 80}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 426}, "assignee": {"id": 565}, "organization": {"id": 190}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 300, "owner": {"id": 482}, "assignee": {"id": 567}, "organization": {"id": 121}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 497}, "assignee": {"id": 594}, "organization": {"id": 630}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 205}, "user": {"role": "maintainer"}}}, "resource": {"id": 340, "owner": {"id": 409}, "assignee": {"id": 567}, "organization": {"id": 676}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 431}, "assignee": {"id": 536}, "organization": {"id": 174}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"id": 303, "owner": {"id": 457}, "assignee": {"id": 540}, "organization": {"id": 104}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": {"id": 112, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"id": 309, "owner": {"id": 414}, "assignee": {"id": 558}, "organization": {"id": 633}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 487}, "assignee": {"id": 509}, "organization": {"id": 660}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 485}, "assignee": {"id": 514}, "organization": {"id": 170}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 482}, "assignee": {"id": 574}, "organization": {"id": 167}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 423}, "assignee": {"id": 564}, "organization": {"id": 693}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 411}, "assignee": {"id": 522}, "organization": {"id": 632}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 290}, "user": {"role": "worker"}}}, "resource": {"id": 301, "owner": {"id": 458}, "assignee": {"id": 531}, "organization": {"id": 172}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 424}, "assignee": {"id": 597}, "organization": {"id": 125}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"id": 365, "owner": {"id": 410}, "assignee": {"id": 557}, "organization": {"id": 650}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 479}, "assignee": {"id": 577}, "organization": {"id": 670}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 51, "privilege": "worker"}, "organization": {"id": 100, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 479}, "assignee": {"id": 582}, "organization": {"id": 100}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 150, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"id": 330, "owner": {"id": 469}, "assignee": {"id": 503}, "organization": {"id": 150}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 156, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"id": 395, "owner": {"id": 491}, "assignee": {"id": 549}, "organization": {"id": 652}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 395, "owner": {"id": 403}, "assignee": {"id": 582}, "organization": {"id": 699}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 92}, "user": {"role": "owner"}}}, "resource": {"id": 322, "owner": {"id": 472}, "assignee": {"id": 511}, "organization": {"id": 144}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 20}, "user": {"role": "owner"}}}, "resource": {"id": 330, "owner": {"id": 413}, "assignee": {"id": 552}, "organization": {"id": 177}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 276}, "user": {"role": "maintainer"}}}, "resource": {"id": 318, "owner": {"id": 400}, "assignee": {"id": 540}, "organization": {"id": 611}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 437}, "assignee": {"id": 538}, "organization": {"id": 638}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 468}, "assignee": {"id": 582}, "organization": {"id": 138}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 311, "owner": {"id": 431}, "assignee": {"id": 575}, "organization": {"id": 177}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 476}, "assignee": {"id": 513}, "organization": {"id": 684}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 459}, "assignee": {"id": 586}, "organization": {"id": 661}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 406}, "assignee": {"id": 556}, "organization": {"id": 193}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 363, "owner": {"id": 468}, "assignee": {"id": 502}, "organization": {"id": 196}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 424}, "assignee": {"id": 545}, "organization": {"id": 602}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 217}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 460}, "assignee": {"id": 500}, "organization": {"id": 683}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 406}, "assignee": {"id": 518}, "organization": {"id": 135}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"id": 321, "owner": {"id": 482}, "assignee": {"id": 521}, "organization": {"id": 101}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 107, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"id": 395, "owner": {"id": 469}, "assignee": {"id": 595}, "organization": {"id": 614}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 378, "owner": {"id": 478}, "assignee": {"id": 532}, "organization": {"id": 650}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 485}, "assignee": {"id": 570}, "organization": {"id": 151}}} +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 453}, "assignee": {"id": 594}, "organization": {"id": 191}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": null}, "resource": {"id": 326, "owner": {"id": 31}, "assignee": {"id": 550}, "organization": {"id": 682}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": null}, "resource": {"id": 368, "owner": {"id": 77}, "assignee": {"id": 529}, "organization": {"id": 659}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": null}, "resource": {"id": 363, "owner": {"id": 79}, "assignee": {"id": 552}, "organization": {"id": 689}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": null}, "resource": {"id": 366, "owner": {"id": 81}, "assignee": {"id": 514}, "organization": {"id": 654}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": null}, "resource": {"id": 312, "owner": {"id": 66}, "assignee": {"id": 537}, "organization": {"id": 665}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": null}, "resource": {"id": 380, "owner": {"id": 96}, "assignee": {"id": 587}, "organization": {"id": 648}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": null}, "resource": {"id": 339, "owner": {"id": 6}, "assignee": {"id": 566}, "organization": {"id": 647}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": null}, "resource": {"id": 334, "owner": {"id": 57}, "assignee": {"id": 589}, "organization": {"id": 603}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": null}, "resource": {"id": 390, "owner": {"id": 84}, "assignee": {"id": 525}, "organization": {"id": 645}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": null}, "resource": {"id": 339, "owner": {"id": 21}, "assignee": {"id": 545}, "organization": {"id": 665}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": null}, "resource": {"id": 365, "owner": {"id": 481}, "assignee": {"id": 66}, "organization": {"id": 672}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": null}, "resource": {"id": 391, "owner": {"id": 426}, "assignee": {"id": 68}, "organization": {"id": 673}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": null}, "resource": {"id": 362, "owner": {"id": 452}, "assignee": {"id": 37}, "organization": {"id": 645}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": null}, "resource": {"id": 397, "owner": {"id": 463}, "assignee": {"id": 62}, "organization": {"id": 657}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": null}, "resource": {"id": 340, "owner": {"id": 410}, "assignee": {"id": 5}, "organization": {"id": 632}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": null}, "resource": {"id": 307, "owner": {"id": 432}, "assignee": {"id": 38}, "organization": {"id": 605}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": null}, "resource": {"id": 348, "owner": {"id": 422}, "assignee": {"id": 90}, "organization": {"id": 664}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": null}, "resource": {"id": 339, "owner": {"id": 450}, "assignee": {"id": 50}, "organization": {"id": 683}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": null}, "resource": {"id": 390, "owner": {"id": 486}, "assignee": {"id": 86}, "organization": {"id": 615}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": null}, "resource": {"id": 397, "owner": {"id": 456}, "assignee": {"id": 76}, "organization": {"id": 617}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": null}, "resource": {"id": 376, "owner": {"id": 463}, "assignee": {"id": 552}, "organization": {"id": 658}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": null}, "resource": {"id": 373, "owner": {"id": 444}, "assignee": {"id": 520}, "organization": {"id": 689}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": null}, "resource": {"id": 346, "owner": {"id": 486}, "assignee": {"id": 586}, "organization": {"id": 601}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": null}, "resource": {"id": 395, "owner": {"id": 441}, "assignee": {"id": 547}, "organization": {"id": 659}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": null}, "resource": {"id": 369, "owner": {"id": 453}, "assignee": {"id": 592}, "organization": {"id": 698}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": null}, "resource": {"id": 398, "owner": {"id": 416}, "assignee": {"id": 546}, "organization": {"id": 628}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": null}, "resource": {"id": 384, "owner": {"id": 466}, "assignee": {"id": 571}, "organization": {"id": 628}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": null}, "resource": {"id": 348, "owner": {"id": 478}, "assignee": {"id": 576}, "organization": {"id": 636}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": null}, "resource": {"id": 352, "owner": {"id": 432}, "assignee": {"id": 509}, "organization": {"id": 676}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": null}, "resource": {"id": 307, "owner": {"id": 497}, "assignee": {"id": 553}, "organization": {"id": 637}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 300, "owner": {"id": 30}, "assignee": {"id": 538}, "organization": {"id": 631}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 323, "owner": {"id": 90}, "assignee": {"id": 581}, "organization": {"id": 607}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"id": 381, "owner": {"id": 23}, "assignee": {"id": 543}, "organization": {"id": 187}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 132, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 1}, "assignee": {"id": 568}, "organization": {"id": 132}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 87}, "assignee": {"id": 517}, "organization": {"id": 679}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 99, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 99}, "assignee": {"id": 597}, "organization": {"id": 631}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 55}, "assignee": {"id": 577}, "organization": {"id": 166}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 365, "owner": {"id": 64}, "assignee": {"id": 516}, "organization": {"id": 121}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 189, "owner": {"id": 282}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 44}, "assignee": {"id": 510}, "organization": {"id": 611}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 346, "owner": {"id": 95}, "assignee": {"id": 509}, "organization": {"id": 601}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 90}, "assignee": {"id": 591}, "organization": {"id": 100}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"id": 364, "owner": {"id": 28}, "assignee": {"id": 523}, "organization": {"id": 186}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"id": 378, "owner": {"id": 78}, "assignee": {"id": 580}, "organization": {"id": 602}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"id": 322, "owner": {"id": 32}, "assignee": {"id": 524}, "organization": {"id": 623}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 12}, "assignee": {"id": 576}, "organization": {"id": 196}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"id": 321, "owner": {"id": 56}, "assignee": {"id": 543}, "organization": {"id": 178}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"id": 315, "owner": {"id": 32}, "assignee": {"id": 583}, "organization": {"id": 659}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 103, "owner": {"id": 244}, "user": {"role": null}}}, "resource": {"id": 374, "owner": {"id": 9}, "assignee": {"id": 593}, "organization": {"id": 694}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 127, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 42}, "assignee": {"id": 543}, "organization": {"id": 127}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 69}, "assignee": {"id": 539}, "organization": {"id": 157}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 53}, "assignee": {"id": 557}, "organization": {"id": 662}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 175, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 364, "owner": {"id": 39}, "assignee": {"id": 549}, "organization": {"id": 602}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 58}, "assignee": {"id": 503}, "organization": {"id": 133}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 345, "owner": {"id": 21}, "assignee": {"id": 515}, "organization": {"id": 137}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 64, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 255}, "user": {"role": "maintainer"}}}, "resource": {"id": 334, "owner": {"id": 64}, "assignee": {"id": 528}, "organization": {"id": 614}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 217}, "user": {"role": "maintainer"}}}, "resource": {"id": 328, "owner": {"id": 33}, "assignee": {"id": 514}, "organization": {"id": 690}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"id": 388, "owner": {"id": 56}, "assignee": {"id": 587}, "organization": {"id": 108}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 43}, "assignee": {"id": 576}, "organization": {"id": 135}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 199, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 76}, "assignee": {"id": 550}, "organization": {"id": 629}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 52}, "assignee": {"id": 531}, "organization": {"id": 639}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 210}, "user": {"role": "supervisor"}}}, "resource": {"id": 337, "owner": {"id": 36}, "assignee": {"id": 558}, "organization": {"id": 124}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 363, "owner": {"id": 34}, "assignee": {"id": 525}, "organization": {"id": 105}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 389, "owner": {"id": 54}, "assignee": {"id": 599}, "organization": {"id": 653}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 44}, "assignee": {"id": 549}, "organization": {"id": 631}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 290}, "user": {"role": "worker"}}}, "resource": {"id": 305, "owner": {"id": 79}, "assignee": {"id": 590}, "organization": {"id": 148}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 382, "owner": {"id": 6}, "assignee": {"id": 508}, "organization": {"id": 170}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 127, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"id": 393, "owner": {"id": 87}, "assignee": {"id": 504}, "organization": {"id": 646}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"id": 364, "owner": {"id": 4}, "assignee": {"id": 511}, "organization": {"id": 641}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"id": 340, "owner": {"id": 10}, "assignee": {"id": 577}, "organization": {"id": 135}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 10}, "assignee": {"id": 543}, "organization": {"id": 124}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 123, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 379, "owner": {"id": 96}, "assignee": {"id": 501}, "organization": {"id": 656}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"id": 313, "owner": {"id": 12}, "assignee": {"id": 514}, "organization": {"id": 694}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 26}, "assignee": {"id": 598}, "organization": {"id": 117}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 26}, "assignee": {"id": 533}, "organization": {"id": 180}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 278}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 85}, "assignee": {"id": 519}, "organization": {"id": 633}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 323, "owner": {"id": 28}, "assignee": {"id": 584}, "organization": {"id": 678}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 383, "owner": {"id": 94}, "assignee": {"id": 544}, "organization": {"id": 151}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"id": 390, "owner": {"id": 16}, "assignee": {"id": 564}, "organization": {"id": 160}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 345, "owner": {"id": 1}, "assignee": {"id": 555}, "organization": {"id": 690}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 300, "owner": {"id": 26}, "assignee": {"id": 580}, "organization": {"id": 688}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 295}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 4}, "assignee": {"id": 572}, "organization": {"id": 178}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 4}, "assignee": {"id": 553}, "organization": {"id": 106}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"id": 383, "owner": {"id": 29}, "assignee": {"id": 514}, "organization": {"id": 681}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 138, "owner": {"id": 288}, "user": {"role": "worker"}}}, "resource": {"id": 381, "owner": {"id": 30}, "assignee": {"id": 510}, "organization": {"id": 606}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 288}, "user": {"role": "worker"}}}, "resource": {"id": 326, "owner": {"id": 71}, "assignee": {"id": 537}, "organization": {"id": 170}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 351, "owner": {"id": 52}, "assignee": {"id": 588}, "organization": {"id": 119}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"id": 326, "owner": {"id": 80}, "assignee": {"id": 538}, "organization": {"id": 627}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 84}, "assignee": {"id": 599}, "organization": {"id": 617}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 193, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"id": 330, "owner": {"id": 21}, "assignee": {"id": 551}, "organization": {"id": 193}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 16}, "assignee": {"id": 556}, "organization": {"id": 167}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 373, "owner": {"id": 74}, "assignee": {"id": 555}, "organization": {"id": 689}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 334, "owner": {"id": 40}, "assignee": {"id": 549}, "organization": {"id": 657}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 39}, "assignee": {"id": 509}, "organization": {"id": 122}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 363, "owner": {"id": 9}, "assignee": {"id": 559}, "organization": {"id": 111}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"id": 384, "owner": {"id": 21}, "assignee": {"id": 587}, "organization": {"id": 679}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 48, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"id": 317, "owner": {"id": 48}, "assignee": {"id": 586}, "organization": {"id": 692}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 282}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 7}, "assignee": {"id": 578}, "organization": {"id": 137}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 92}, "assignee": {"id": 524}, "organization": {"id": 121}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 310, "owner": {"id": 39}, "assignee": {"id": 571}, "organization": {"id": 693}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 156, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 348, "owner": {"id": 87}, "assignee": {"id": 560}, "organization": {"id": 658}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 62}, "assignee": {"id": 550}, "organization": {"id": 158}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 49}, "assignee": {"id": 518}, "organization": {"id": 142}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"id": 331, "owner": {"id": 52}, "assignee": {"id": 565}, "organization": {"id": 695}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 37}, "assignee": {"id": 575}, "organization": {"id": 699}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": {"id": 195, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"id": 382, "owner": {"id": 46}, "assignee": {"id": 538}, "organization": {"id": 195}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 300, "owner": {"id": 32}, "assignee": {"id": 548}, "organization": {"id": 149}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 210}, "user": {"role": null}}}, "resource": {"id": 369, "owner": {"id": 42}, "assignee": {"id": 598}, "organization": {"id": 679}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 243}, "user": {"role": null}}}, "resource": {"id": 325, "owner": {"id": 70}, "assignee": {"id": 527}, "organization": {"id": 677}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 313, "owner": {"id": 79}, "assignee": {"id": 545}, "organization": {"id": 177}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 382, "owner": {"id": 84}, "assignee": {"id": 537}, "organization": {"id": 127}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"id": 300, "owner": {"id": 69}, "assignee": {"id": 554}, "organization": {"id": 675}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 319, "owner": {"id": 29}, "assignee": {"id": 597}, "organization": {"id": 676}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 81}, "assignee": {"id": 579}, "organization": {"id": 138}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 89}, "assignee": {"id": 539}, "organization": {"id": 164}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 378, "owner": {"id": 46}, "assignee": {"id": 597}, "organization": {"id": 642}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 373, "owner": {"id": 25}, "assignee": {"id": 500}, "organization": {"id": 619}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 54}, "assignee": {"id": 508}, "organization": {"id": 165}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"id": 345, "owner": {"id": 1}, "assignee": {"id": 564}, "organization": {"id": 189}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 210}, "user": {"role": "supervisor"}}}, "resource": {"id": 372, "owner": {"id": 0}, "assignee": {"id": 594}, "organization": {"id": 655}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 374, "owner": {"id": 50}, "assignee": {"id": 516}, "organization": {"id": 677}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 88}, "assignee": {"id": 509}, "organization": {"id": 181}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"id": 354, "owner": {"id": 21}, "assignee": {"id": 506}, "organization": {"id": 134}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 390, "owner": {"id": 12}, "assignee": {"id": 565}, "organization": {"id": 678}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 365, "owner": {"id": 62}, "assignee": {"id": 570}, "organization": {"id": 612}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"id": 342, "owner": {"id": 61}, "assignee": {"id": 560}, "organization": {"id": 158}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 356, "owner": {"id": 38}, "assignee": {"id": 527}, "organization": {"id": 137}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 132, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"id": 366, "owner": {"id": 16}, "assignee": {"id": 570}, "organization": {"id": 686}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 54}, "assignee": {"id": 589}, "organization": {"id": 619}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 223}, "user": {"role": null}}}, "resource": {"id": 383, "owner": {"id": 44}, "assignee": {"id": 597}, "organization": {"id": 183}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 81}, "assignee": {"id": 589}, "organization": {"id": 194}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 479}, "assignee": {"id": 83}, "organization": {"id": 627}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 322, "owner": {"id": 493}, "assignee": {"id": 0}, "organization": {"id": 679}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 411}, "assignee": {"id": 55}, "organization": {"id": 168}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"id": 352, "owner": {"id": 487}, "assignee": {"id": 16}, "organization": {"id": 146}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"id": 301, "owner": {"id": 456}, "assignee": {"id": 89}, "organization": {"id": 675}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"id": 355, "owner": {"id": 420}, "assignee": {"id": 96}, "organization": {"id": 601}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 408}, "assignee": {"id": 3}, "organization": {"id": 122}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 304, "owner": {"id": 434}, "assignee": {"id": 82}, "organization": {"id": 168}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"id": 323, "owner": {"id": 495}, "assignee": {"id": 84}, "organization": {"id": 692}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 339, "owner": {"id": 493}, "assignee": {"id": 58}, "organization": {"id": 697}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"id": 303, "owner": {"id": 449}, "assignee": {"id": 72}, "organization": {"id": 136}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 460}, "assignee": {"id": 61}, "organization": {"id": 115}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 321, "owner": {"id": 401}, "assignee": {"id": 12}, "organization": {"id": 661}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 334, "owner": {"id": 494}, "assignee": {"id": 84}, "organization": {"id": 698}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 101, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 374, "owner": {"id": 433}, "assignee": {"id": 72}, "organization": {"id": 101}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 474}, "assignee": {"id": 1}, "organization": {"id": 180}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 305, "owner": {"id": 420}, "assignee": {"id": 83}, "organization": {"id": 651}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"id": 357, "owner": {"id": 456}, "assignee": {"id": 78}, "organization": {"id": 611}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 102, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 464}, "assignee": {"id": 18}, "organization": {"id": 102}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 197, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"id": 357, "owner": {"id": 425}, "assignee": {"id": 74}, "organization": {"id": 197}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 416}, "assignee": {"id": 34}, "organization": {"id": 626}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 427}, "assignee": {"id": 57}, "organization": {"id": 624}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 379, "owner": {"id": 424}, "assignee": {"id": 90}, "organization": {"id": 197}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"id": 381, "owner": {"id": 499}, "assignee": {"id": 42}, "organization": {"id": 186}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 255}, "user": {"role": "maintainer"}}}, "resource": {"id": 320, "owner": {"id": 458}, "assignee": {"id": 54}, "organization": {"id": 666}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 308, "owner": {"id": 436}, "assignee": {"id": 7}, "organization": {"id": 637}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"id": 329, "owner": {"id": 491}, "assignee": {"id": 53}, "organization": {"id": 150}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 476}, "assignee": {"id": 69}, "organization": {"id": 190}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"id": 354, "owner": {"id": 486}, "assignee": {"id": 25}, "organization": {"id": 684}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 371, "owner": {"id": 444}, "assignee": {"id": 55}, "organization": {"id": 616}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 479}, "assignee": {"id": 93}, "organization": {"id": 168}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 443}, "assignee": {"id": 80}, "organization": {"id": 197}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 333, "owner": {"id": 453}, "assignee": {"id": 69}, "organization": {"id": 607}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 494}, "assignee": {"id": 79}, "organization": {"id": 668}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"id": 381, "owner": {"id": 475}, "assignee": {"id": 15}, "organization": {"id": 122}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 113, "owner": {"id": 286}, "user": {"role": "worker"}}}, "resource": {"id": 389, "owner": {"id": 474}, "assignee": {"id": 94}, "organization": {"id": 113}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 365, "owner": {"id": 463}, "assignee": {"id": 35}, "organization": {"id": 670}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"id": 369, "owner": {"id": 454}, "assignee": {"id": 33}, "organization": {"id": 679}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 222}, "user": {"role": null}}}, "resource": {"id": 320, "owner": {"id": 401}, "assignee": {"id": 93}, "organization": {"id": 192}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 174, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 436}, "assignee": {"id": 69}, "organization": {"id": 174}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 324, "owner": {"id": 446}, "assignee": {"id": 7}, "organization": {"id": 691}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"id": 324, "owner": {"id": 401}, "assignee": {"id": 94}, "organization": {"id": 605}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 411}, "assignee": {"id": 54}, "organization": {"id": 166}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 492}, "assignee": {"id": 23}, "organization": {"id": 179}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 486}, "assignee": {"id": 17}, "organization": {"id": 674}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 165, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 310, "owner": {"id": 409}, "assignee": {"id": 54}, "organization": {"id": 678}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 165, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 484}, "assignee": {"id": 62}, "organization": {"id": 165}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 336, "owner": {"id": 466}, "assignee": {"id": 0}, "organization": {"id": 152}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 304, "owner": {"id": 480}, "assignee": {"id": 74}, "organization": {"id": 662}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 445}, "assignee": {"id": 6}, "organization": {"id": 613}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 265}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 477}, "assignee": {"id": 52}, "organization": {"id": 129}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 496}, "assignee": {"id": 58}, "organization": {"id": 116}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 262}, "user": {"role": "worker"}}}, "resource": {"id": 332, "owner": {"id": 419}, "assignee": {"id": 94}, "organization": {"id": 666}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 290}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 411}, "assignee": {"id": 91}, "organization": {"id": 697}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 11, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 290}, "user": {"role": "worker"}}}, "resource": {"id": 322, "owner": {"id": 405}, "assignee": {"id": 11}, "organization": {"id": 160}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 423}, "assignee": {"id": 8}, "organization": {"id": 170}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 362, "owner": {"id": 496}, "assignee": {"id": 41}, "organization": {"id": 642}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 264}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 451}, "assignee": {"id": 50}, "organization": {"id": 601}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 387, "owner": {"id": 447}, "assignee": {"id": 91}, "organization": {"id": 177}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"id": 341, "owner": {"id": 404}, "assignee": {"id": 41}, "organization": {"id": 125}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 464}, "assignee": {"id": 73}, "organization": {"id": 636}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 33}, "user": {"role": "owner"}}}, "resource": {"id": 323, "owner": {"id": 462}, "assignee": {"id": 33}, "organization": {"id": 627}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 480}, "assignee": {"id": 78}, "organization": {"id": 105}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 417}, "assignee": {"id": 34}, "organization": {"id": 122}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 491}, "assignee": {"id": 60}, "organization": {"id": 678}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 439}, "assignee": {"id": 40}, "organization": {"id": 685}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 276}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 453}, "assignee": {"id": 74}, "organization": {"id": 169}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 414}, "assignee": {"id": 31}, "organization": {"id": 140}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 351, "owner": {"id": 413}, "assignee": {"id": 20}, "organization": {"id": 627}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 210}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 499}, "assignee": {"id": 15}, "organization": {"id": 627}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 436}, "assignee": {"id": 36}, "organization": {"id": 198}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 3, "privilege": "worker"}, "organization": {"id": 152, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"id": 338, "owner": {"id": 412}, "assignee": {"id": 3}, "organization": {"id": 152}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"id": 322, "owner": {"id": 479}, "assignee": {"id": 36}, "organization": {"id": 622}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 135, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 481}, "assignee": {"id": 88}, "organization": {"id": 694}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"id": 331, "owner": {"id": 441}, "assignee": {"id": 7}, "organization": {"id": 101}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 442}, "assignee": {"id": 78}, "organization": {"id": 131}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"id": 366, "owner": {"id": 438}, "assignee": {"id": 39}, "organization": {"id": 611}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 427}, "assignee": {"id": 84}, "organization": {"id": 631}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 196, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 440}, "assignee": {"id": 66}, "organization": {"id": 196}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 332, "owner": {"id": 418}, "assignee": {"id": 32}, "organization": {"id": 128}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 414}, "assignee": {"id": 69}, "organization": {"id": 675}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 460}, "assignee": {"id": 18}, "organization": {"id": 693}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"id": 337, "owner": {"id": 486}, "assignee": {"id": 56}, "organization": {"id": 183}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 471}, "assignee": {"id": 88}, "organization": {"id": 141}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 41, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 373, "owner": {"id": 486}, "assignee": {"id": 41}, "organization": {"id": 605}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"id": 350, "owner": {"id": 458}, "assignee": {"id": 99}, "organization": {"id": 620}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 498}, "assignee": {"id": 53}, "organization": {"id": 151}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 393, "owner": {"id": 409}, "assignee": {"id": 70}, "organization": {"id": 165}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 367, "owner": {"id": 489}, "assignee": {"id": 61}, "organization": {"id": 641}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 307, "owner": {"id": 486}, "assignee": {"id": 43}, "organization": {"id": 633}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 413}, "assignee": {"id": 61}, "organization": {"id": 197}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 412}, "assignee": {"id": 68}, "organization": {"id": 182}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 406}, "assignee": {"id": 20}, "organization": {"id": 636}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 154, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 426}, "assignee": {"id": 18}, "organization": {"id": 608}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 438}, "assignee": {"id": 34}, "organization": {"id": 168}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 330, "owner": {"id": 481}, "assignee": {"id": 42}, "organization": {"id": 143}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 239}, "user": {"role": null}}}, "resource": {"id": 349, "owner": {"id": 401}, "assignee": {"id": 23}, "organization": {"id": 665}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 204}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 428}, "assignee": {"id": 54}, "organization": {"id": 683}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 378, "owner": {"id": 480}, "assignee": {"id": 61}, "organization": {"id": 140}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 271}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 437}, "assignee": {"id": 49}, "organization": {"id": 198}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"id": 318, "owner": {"id": 436}, "assignee": {"id": 502}, "organization": {"id": 633}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"id": 380, "owner": {"id": 445}, "assignee": {"id": 558}, "organization": {"id": 641}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 101, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 443}, "assignee": {"id": 530}, "organization": {"id": 101}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 437}, "assignee": {"id": 510}, "organization": {"id": 100}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 321, "owner": {"id": 403}, "assignee": {"id": 516}, "organization": {"id": 618}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 255}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 402}, "assignee": {"id": 529}, "organization": {"id": 630}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 389, "owner": {"id": 422}, "assignee": {"id": 528}, "organization": {"id": 161}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"id": 346, "owner": {"id": 430}, "assignee": {"id": 556}, "organization": {"id": 165}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 446}, "assignee": {"id": 533}, "organization": {"id": 699}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 301, "owner": {"id": 485}, "assignee": {"id": 552}, "organization": {"id": 665}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 494}, "assignee": {"id": 564}, "organization": {"id": 171}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 421}, "assignee": {"id": 580}, "organization": {"id": 169}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 457}, "assignee": {"id": 554}, "organization": {"id": 679}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 435}, "assignee": {"id": 544}, "organization": {"id": 604}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 322, "owner": {"id": 442}, "assignee": {"id": 508}, "organization": {"id": 107}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 103, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 439}, "assignee": {"id": 581}, "organization": {"id": 103}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"id": 311, "owner": {"id": 472}, "assignee": {"id": 540}, "organization": {"id": 607}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"id": 395, "owner": {"id": 424}, "assignee": {"id": 565}, "organization": {"id": 690}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 360, "owner": {"id": 498}, "assignee": {"id": 557}, "organization": {"id": 150}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 160, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 388, "owner": {"id": 467}, "assignee": {"id": 556}, "organization": {"id": 160}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 382, "owner": {"id": 401}, "assignee": {"id": 501}, "organization": {"id": 638}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 482}, "assignee": {"id": 516}, "organization": {"id": 617}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 350, "owner": {"id": 474}, "assignee": {"id": 566}, "organization": {"id": 140}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 123, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"id": 300, "owner": {"id": 493}, "assignee": {"id": 598}, "organization": {"id": 123}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"id": 333, "owner": {"id": 436}, "assignee": {"id": 541}, "organization": {"id": 698}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 189, "owner": {"id": 223}, "user": {"role": "maintainer"}}}, "resource": {"id": 396, "owner": {"id": 496}, "assignee": {"id": 584}, "organization": {"id": 641}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"id": 348, "owner": {"id": 409}, "assignee": {"id": 588}, "organization": {"id": 182}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"id": 311, "owner": {"id": 475}, "assignee": {"id": 577}, "organization": {"id": 131}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"id": 361, "owner": {"id": 495}, "assignee": {"id": 561}, "organization": {"id": 645}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 390, "owner": {"id": 407}, "assignee": {"id": 532}, "organization": {"id": 675}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 208}, "user": {"role": "supervisor"}}}, "resource": {"id": 353, "owner": {"id": 457}, "assignee": {"id": 512}, "organization": {"id": 180}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 159, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 335, "owner": {"id": 422}, "assignee": {"id": 571}, "organization": {"id": 159}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 467}, "assignee": {"id": 596}, "organization": {"id": 602}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 483}, "assignee": {"id": 525}, "organization": {"id": 637}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"id": 310, "owner": {"id": 421}, "assignee": {"id": 544}, "organization": {"id": 186}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 478}, "assignee": {"id": 526}, "organization": {"id": 112}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 412}, "assignee": {"id": 502}, "organization": {"id": 689}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 372, "owner": {"id": 401}, "assignee": {"id": 511}, "organization": {"id": 623}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 349, "owner": {"id": 422}, "assignee": {"id": 569}, "organization": {"id": 115}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 446}, "assignee": {"id": 556}, "organization": {"id": 176}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 92}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 413}, "assignee": {"id": 559}, "organization": {"id": 672}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 399, "owner": {"id": 443}, "assignee": {"id": 550}, "organization": {"id": 619}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 416}, "assignee": {"id": 574}, "organization": {"id": 159}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 477}, "assignee": {"id": 587}, "organization": {"id": 181}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 11, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"id": 383, "owner": {"id": 451}, "assignee": {"id": 508}, "organization": {"id": 667}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 439}, "assignee": {"id": 577}, "organization": {"id": 688}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 483}, "assignee": {"id": 574}, "organization": {"id": 151}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 93, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 365, "owner": {"id": 481}, "assignee": {"id": 518}, "organization": {"id": 129}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 163, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 494}, "assignee": {"id": 525}, "organization": {"id": 612}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 154, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"id": 394, "owner": {"id": 403}, "assignee": {"id": 568}, "organization": {"id": 603}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"id": 320, "owner": {"id": 469}, "assignee": {"id": 521}, "organization": {"id": 114}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 238}, "user": {"role": "supervisor"}}}, "resource": {"id": 330, "owner": {"id": 404}, "assignee": {"id": 556}, "organization": {"id": 130}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"id": 365, "owner": {"id": 443}, "assignee": {"id": 593}, "organization": {"id": 617}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 243}, "user": {"role": "worker"}}}, "resource": {"id": 357, "owner": {"id": 477}, "assignee": {"id": 512}, "organization": {"id": 655}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 451}, "assignee": {"id": 565}, "organization": {"id": 117}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 430}, "assignee": {"id": 519}, "organization": {"id": 160}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 396, "owner": {"id": 468}, "assignee": {"id": 524}, "organization": {"id": 686}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 479}, "assignee": {"id": 529}, "organization": {"id": 634}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 396, "owner": {"id": 486}, "assignee": {"id": 584}, "organization": {"id": 178}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 417}, "assignee": {"id": 522}, "organization": {"id": 170}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 343, "owner": {"id": 406}, "assignee": {"id": 574}, "organization": {"id": 684}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 152, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"id": 393, "owner": {"id": 418}, "assignee": {"id": 553}, "organization": {"id": 661}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 446}, "assignee": {"id": 555}, "organization": {"id": 194}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 188, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 431}, "assignee": {"id": 537}, "organization": {"id": 188}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 389, "owner": {"id": 446}, "assignee": {"id": 515}, "organization": {"id": 652}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"id": 383, "owner": {"id": 470}, "assignee": {"id": 560}, "organization": {"id": 692}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 472}, "assignee": {"id": 510}, "organization": {"id": 163}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 485}, "assignee": {"id": 510}, "organization": {"id": 187}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 464}, "assignee": {"id": 536}, "organization": {"id": 632}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 335, "owner": {"id": 469}, "assignee": {"id": 569}, "organization": {"id": 686}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 425}, "assignee": {"id": 594}, "organization": {"id": 183}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 216}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 422}, "assignee": {"id": 555}, "organization": {"id": 161}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 258}, "user": {"role": "worker"}}}, "resource": {"id": 357, "owner": {"id": 484}, "assignee": {"id": 500}, "organization": {"id": 687}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 30, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"id": 324, "owner": {"id": 404}, "assignee": {"id": 508}, "organization": {"id": 646}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"id": 398, "owner": {"id": 437}, "assignee": {"id": 543}, "organization": {"id": 194}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 30, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 370, "owner": {"id": 444}, "assignee": {"id": 587}, "organization": {"id": 133}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 96, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 340, "owner": {"id": 485}, "assignee": {"id": 504}, "organization": {"id": 628}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 266}, "user": {"role": null}}}, "resource": {"id": 354, "owner": {"id": 476}, "assignee": {"id": 523}, "organization": {"id": 646}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"id": 357, "owner": {"id": 446}, "assignee": {"id": 575}, "organization": {"id": 113}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 473}, "assignee": {"id": 545}, "organization": {"id": 175}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 469}, "assignee": {"id": 508}, "organization": {"id": 614}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 311, "owner": {"id": 432}, "assignee": {"id": 596}, "organization": {"id": 654}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"id": 322, "owner": {"id": 406}, "assignee": {"id": 556}, "organization": {"id": 158}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 406}, "assignee": {"id": 535}, "organization": {"id": 148}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"id": 345, "owner": {"id": 464}, "assignee": {"id": 565}, "organization": {"id": 629}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"id": 325, "owner": {"id": 410}, "assignee": {"id": 562}, "organization": {"id": 637}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 473}, "assignee": {"id": 507}, "organization": {"id": 195}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"id": 346, "owner": {"id": 442}, "assignee": {"id": 598}, "organization": {"id": 120}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 432}, "assignee": {"id": 573}, "organization": {"id": 601}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"id": 397, "owner": {"id": 409}, "assignee": {"id": 519}, "organization": {"id": 686}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 394, "owner": {"id": 447}, "assignee": {"id": 579}, "organization": {"id": 173}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"id": 335, "owner": {"id": 428}, "assignee": {"id": 509}, "organization": {"id": 195}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 496}, "assignee": {"id": 502}, "organization": {"id": 613}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"id": 319, "owner": {"id": 489}, "assignee": {"id": 506}, "organization": {"id": 685}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 394, "owner": {"id": 450}, "assignee": {"id": 551}, "organization": {"id": 170}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 178, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"id": 373, "owner": {"id": 439}, "assignee": {"id": 515}, "organization": {"id": 178}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"id": 343, "owner": {"id": 471}, "assignee": {"id": 515}, "organization": {"id": 644}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"id": 382, "owner": {"id": 421}, "assignee": {"id": 572}, "organization": {"id": 625}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 315, "owner": {"id": 454}, "assignee": {"id": 543}, "organization": {"id": 162}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 404}, "assignee": {"id": 533}, "organization": {"id": 121}}} } @@ -11465,3 +12125,7 @@ test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_me # export:backup,Project,Sandbox,"Owner, Assignee",,GET,/projects/{id}/backup,None,N/A # export:backup,Project,Organization,"Owner, Assignee",,GET,/projects/{id}/backup,None,Worker # export:backup,Project,Organization,None,,GET,/projects/{id}/backup,User,Maintainer +# update:organization,"Project, Organization",Sandbox,"None, Assignee",,PATCH,/projects/{id},Admin,N/A +# update:organization,"Project, Organization",Sandbox,Owner,,PATCH,/projects/{id},Worker,N/A +# update:organization,"Project, Organization",Organization,"None, Assignee",,PATCH,/projects/{id},User,Maintainer +# update:organization,"Project, Organization",Organization,Owner,,PATCH,/projects/{id},Worker,Worker \ No newline at end of file diff --git a/cvat/apps/iam/rules/tasks.csv b/cvat/apps/iam/rules/tasks.csv index 32219e787818..880d5899c081 100644 --- a/cvat/apps/iam/rules/tasks.csv +++ b/cvat/apps/iam/rules/tasks.csv @@ -75,4 +75,8 @@ export:annotations,Task,Organization,"Owner, Project:owner, Assignee, Project:as export:backup,Task,Sandbox,None,,GET,/tasks/{id}/backup,Admin,N/A export:backup,Task,Sandbox,"Owner, Project:owner, Assignee, Project:assignee",,GET,/tasks/{id}/backup,None,N/A export:backup,Task,Organization,None,,GET,/tasks/{id}/backup,User,Maintainer -export:backup,Task,Organization,"Owner, Project:owner, Assignee, Project:assignee",,GET,/tasks/{id}/backup,None,Worker \ No newline at end of file +export:backup,Task,Organization,"Owner, Project:owner, Assignee, Project:assignee",,GET,/tasks/{id}/backup,None,Worker +update:organization,"Task, Organization",Sandbox,"None, Assignee",,PATCH,/tasks/{id},Admin,N/A +update:organization,"Task, Organization",Sandbox,"Owner, Project:owner, Project:assignee",,PATCH,/tasks/{id},Worker,N/A +update:organization,"Task, Organization",Organization,"None, Assignee",,PATCH,/tasks/{id},User,Maintainer +update:organization,"Task, Organization",Organization,"Owner, Project:owner, Project:assignee",,PATCH,/tasks/{id},Worker,Worker diff --git a/cvat/apps/iam/rules/tasks.rego b/cvat/apps/iam/rules/tasks.rego index 14c356f6a8fb..ffa95aa25275 100644 --- a/cvat/apps/iam/rules/tasks.rego +++ b/cvat/apps/iam/rules/tasks.rego @@ -244,7 +244,7 @@ allow { allow { { utils.UPDATE_OWNER, utils.UPDATE_ASSIGNEE, utils.UPDATE_PROJECT, - utils.DELETE }[input.scope] + utils.DELETE, utils.UPDATE_ORG }[input.scope] utils.is_sandbox is_project_staff utils.has_perm(utils.WORKER) @@ -252,7 +252,7 @@ allow { allow { { utils.UPDATE_OWNER, utils.UPDATE_ASSIGNEE, utils.UPDATE_PROJECT, - utils.DELETE }[input.scope] + utils.DELETE, utils.UPDATE_ORG }[input.scope] utils.is_sandbox is_task_owner utils.has_perm(utils.WORKER) @@ -260,7 +260,7 @@ allow { allow { { utils.UPDATE_OWNER, utils.UPDATE_ASSIGNEE, utils.UPDATE_PROJECT, - utils.DELETE }[input.scope] + utils.DELETE, utils.UPDATE_ORG }[input.scope] input.auth.organization.id == input.resource.organization.id utils.has_perm(utils.USER) organizations.has_perm(organizations.MAINTAINER) @@ -268,7 +268,7 @@ allow { allow { { utils.UPDATE_OWNER, utils.UPDATE_ASSIGNEE, utils.UPDATE_PROJECT, - utils.DELETE }[input.scope] + utils.DELETE, utils.UPDATE_ORG }[input.scope] input.auth.organization.id == input.resource.organization.id utils.has_perm(utils.WORKER) organizations.has_perm(organizations.WORKER) @@ -277,7 +277,7 @@ allow { allow { { utils.UPDATE_OWNER, utils.UPDATE_ASSIGNEE, utils.UPDATE_PROJECT, - utils.DELETE }[input.scope] + utils.DELETE, utils.UPDATE_ORG }[input.scope] input.auth.organization.id == input.resource.organization.id utils.has_perm(utils.WORKER) organizations.has_perm(organizations.WORKER) diff --git a/cvat/apps/iam/rules/tasks_test.gen.rego b/cvat/apps/iam/rules/tasks_test.gen.rego index 9ce0690c03b1..3b7ba6aee68f 100644 --- a/cvat/apps/iam/rules/tasks_test.gen.rego +++ b/cvat/apps/iam/rules/tasks_test.gen.rego @@ -1,18483 +1,19583 @@ package tasks -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": null}, "resource": {"id": 363, "owner": {"id": 443}, "assignee": {"id": 512}, "organization": {"id": 652}, "project": {"owner": {"id": 97}, "assignee": {"id": 896}, "organization": {"id": 966}}}} +test_scope_VIEW_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": null}, "resource": {"id": 319, "owner": {"id": 470}, "assignee": {"id": 549}, "organization": {"id": 678}, "project": {"owner": {"id": 38}, "assignee": {"id": 873}, "organization": {"id": 943}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": null}, "resource": {"id": 379, "owner": {"id": 468}, "assignee": {"id": 583}, "organization": {"id": 679}, "project": {"owner": {"id": 58}, "assignee": {"id": 876}, "organization": {"id": 965}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": null}, "resource": {"id": 352, "owner": {"id": 473}, "assignee": {"id": 537}, "organization": {"id": 607}, "project": {"owner": {"id": 18}, "assignee": {"id": 884}, "organization": {"id": 951}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": null}, "resource": {"id": 360, "owner": {"id": 466}, "assignee": {"id": 573}, "organization": {"id": 663}, "project": {"owner": {"id": 46}, "assignee": {"id": 897}, "organization": {"id": 939}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": null}, "resource": {"id": 342, "owner": {"id": 405}, "assignee": {"id": 587}, "organization": {"id": 653}, "project": {"owner": {"id": 79}, "assignee": {"id": 860}, "organization": {"id": 983}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": null}, "resource": {"id": 324, "owner": {"id": 418}, "assignee": {"id": 538}, "organization": {"id": 680}, "project": {"owner": {"id": 738}, "assignee": {"id": 28}, "organization": {"id": 987}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": null}, "resource": {"id": 344, "owner": {"id": 464}, "assignee": {"id": 577}, "organization": {"id": 630}, "project": {"owner": {"id": 786}, "assignee": {"id": 43}, "organization": {"id": 916}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": null}, "resource": {"id": 370, "owner": {"id": 495}, "assignee": {"id": 590}, "organization": {"id": 644}, "project": {"owner": {"id": 709}, "assignee": {"id": 62}, "organization": {"id": 929}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": null}, "resource": {"id": 361, "owner": {"id": 447}, "assignee": {"id": 529}, "organization": {"id": 638}, "project": {"owner": {"id": 717}, "assignee": {"id": 99}, "organization": {"id": 946}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": null}, "resource": {"id": 363, "owner": {"id": 415}, "assignee": {"id": 511}, "organization": {"id": 682}, "project": {"owner": {"id": 765}, "assignee": {"id": 3}, "organization": {"id": 937}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": null}, "resource": {"id": 326, "owner": {"id": 2}, "assignee": {"id": 581}, "organization": {"id": 634}, "project": {"owner": {"id": 754}, "assignee": {"id": 809}, "organization": {"id": 902}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": null}, "resource": {"id": 392, "owner": {"id": 42}, "assignee": {"id": 529}, "organization": {"id": 684}, "project": {"owner": {"id": 717}, "assignee": {"id": 874}, "organization": {"id": 957}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": null}, "resource": {"id": 331, "owner": {"id": 38}, "assignee": {"id": 572}, "organization": {"id": 608}, "project": {"owner": {"id": 782}, "assignee": {"id": 893}, "organization": {"id": 986}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": null}, "resource": {"id": 381, "owner": {"id": 13}, "assignee": {"id": 533}, "organization": {"id": 674}, "project": {"owner": {"id": 755}, "assignee": {"id": 848}, "organization": {"id": 948}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": null}, "resource": {"id": 374, "owner": {"id": 84}, "assignee": {"id": 573}, "organization": {"id": 649}, "project": {"owner": {"id": 783}, "assignee": {"id": 823}, "organization": {"id": 960}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": null}, "resource": {"id": 338, "owner": {"id": 410}, "assignee": {"id": 69}, "organization": {"id": 635}, "project": {"owner": {"id": 713}, "assignee": {"id": 818}, "organization": {"id": 953}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": null}, "resource": {"id": 356, "owner": {"id": 436}, "assignee": {"id": 60}, "organization": {"id": 680}, "project": {"owner": {"id": 782}, "assignee": {"id": 855}, "organization": {"id": 941}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": null}, "resource": {"id": 373, "owner": {"id": 409}, "assignee": {"id": 34}, "organization": {"id": 687}, "project": {"owner": {"id": 700}, "assignee": {"id": 822}, "organization": {"id": 936}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": null}, "resource": {"id": 318, "owner": {"id": 439}, "assignee": {"id": 99}, "organization": {"id": 679}, "project": {"owner": {"id": 799}, "assignee": {"id": 862}, "organization": {"id": 940}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": null}, "resource": {"id": 376, "owner": {"id": 435}, "assignee": {"id": 6}, "organization": {"id": 617}, "project": {"owner": {"id": 782}, "assignee": {"id": 825}, "organization": {"id": 958}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": null}, "resource": {"id": 336, "owner": {"id": 429}, "assignee": {"id": 542}, "organization": {"id": 665}, "project": {"owner": {"id": 783}, "assignee": {"id": 810}, "organization": {"id": 934}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": null}, "resource": {"id": 343, "owner": {"id": 413}, "assignee": {"id": 513}, "organization": {"id": 637}, "project": {"owner": {"id": 745}, "assignee": {"id": 858}, "organization": {"id": 901}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": null}, "resource": {"id": 353, "owner": {"id": 446}, "assignee": {"id": 565}, "organization": {"id": 681}, "project": {"owner": {"id": 705}, "assignee": {"id": 844}, "organization": {"id": 970}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": null}, "resource": {"id": 364, "owner": {"id": 420}, "assignee": {"id": 512}, "organization": {"id": 695}, "project": {"owner": {"id": 761}, "assignee": {"id": 840}, "organization": {"id": 975}}}} +} + +test_scope_VIEW_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": null}, "resource": {"id": 392, "owner": {"id": 452}, "assignee": {"id": 578}, "organization": {"id": 622}, "project": {"owner": {"id": 720}, "assignee": {"id": 899}, "organization": {"id": 981}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 311, "owner": {"id": 470}, "assignee": {"id": 560}, "organization": {"id": 105}, "project": {"owner": {"id": 34}, "assignee": {"id": 856}, "organization": {"id": 979}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"id": 300, "owner": {"id": 447}, "assignee": {"id": 571}, "organization": {"id": 660}, "project": {"owner": {"id": 17}, "assignee": {"id": 805}, "organization": {"id": 987}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 402}, "assignee": {"id": 570}, "organization": {"id": 196}, "project": {"owner": {"id": 79}, "assignee": {"id": 844}, "organization": {"id": 926}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 474}, "assignee": {"id": 555}, "organization": {"id": 602}, "project": {"owner": {"id": 14}, "assignee": {"id": 844}, "organization": {"id": 948}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 393, "owner": {"id": 473}, "assignee": {"id": 554}, "organization": {"id": 161}, "project": {"owner": {"id": 0}, "assignee": {"id": 863}, "organization": {"id": 964}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 294}, "user": {"role": "supervisor"}}}, "resource": {"id": 327, "owner": {"id": 439}, "assignee": {"id": 587}, "organization": {"id": 607}, "project": {"owner": {"id": 42}, "assignee": {"id": 861}, "organization": {"id": 906}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 99, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"id": 341, "owner": {"id": 450}, "assignee": {"id": 596}, "organization": {"id": 171}, "project": {"owner": {"id": 99}, "assignee": {"id": 807}, "organization": {"id": 982}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 478}, "assignee": {"id": 574}, "organization": {"id": 600}, "project": {"owner": {"id": 80}, "assignee": {"id": 899}, "organization": {"id": 958}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 328, "owner": {"id": 411}, "assignee": {"id": 579}, "organization": {"id": 154}, "project": {"owner": {"id": 86}, "assignee": {"id": 836}, "organization": {"id": 940}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 326, "owner": {"id": 412}, "assignee": {"id": 556}, "organization": {"id": 626}, "project": {"owner": {"id": 70}, "assignee": {"id": 894}, "organization": {"id": 983}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 319, "owner": {"id": 480}, "assignee": {"id": 569}, "organization": {"id": 156}, "project": {"owner": {"id": 86}, "assignee": {"id": 894}, "organization": {"id": 909}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 417}, "assignee": {"id": 574}, "organization": {"id": 600}, "project": {"owner": {"id": 62}, "assignee": {"id": 887}, "organization": {"id": 919}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 366, "owner": {"id": 482}, "assignee": {"id": 510}, "organization": {"id": 186}, "project": {"owner": {"id": 69}, "assignee": {"id": 852}, "organization": {"id": 942}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 489}, "assignee": {"id": 525}, "organization": {"id": 685}, "project": {"owner": {"id": 17}, "assignee": {"id": 821}, "organization": {"id": 923}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 418}, "assignee": {"id": 547}, "organization": {"id": 187}, "project": {"owner": {"id": 0}, "assignee": {"id": 849}, "organization": {"id": 994}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 403}, "assignee": {"id": 507}, "organization": {"id": 651}, "project": {"owner": {"id": 15}, "assignee": {"id": 880}, "organization": {"id": 935}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 432}, "assignee": {"id": 509}, "organization": {"id": 138}, "project": {"owner": {"id": 49}, "assignee": {"id": 809}, "organization": {"id": 959}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 454}, "assignee": {"id": 584}, "organization": {"id": 631}, "project": {"owner": {"id": 74}, "assignee": {"id": 879}, "organization": {"id": 964}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 426}, "assignee": {"id": 599}, "organization": {"id": 110}, "project": {"owner": {"id": 80}, "assignee": {"id": 870}, "organization": {"id": 928}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"id": 387, "owner": {"id": 461}, "assignee": {"id": 525}, "organization": {"id": 693}, "project": {"owner": {"id": 18}, "assignee": {"id": 810}, "organization": {"id": 991}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 407}, "assignee": {"id": 512}, "organization": {"id": 169}, "project": {"owner": {"id": 51}, "assignee": {"id": 822}, "organization": {"id": 902}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 421}, "assignee": {"id": 592}, "organization": {"id": 650}, "project": {"owner": {"id": 71}, "assignee": {"id": 828}, "organization": {"id": 991}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 345, "owner": {"id": 407}, "assignee": {"id": 584}, "organization": {"id": 135}, "project": {"owner": {"id": 12}, "assignee": {"id": 825}, "organization": {"id": 970}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 310, "owner": {"id": 499}, "assignee": {"id": 566}, "organization": {"id": 605}, "project": {"owner": {"id": 46}, "assignee": {"id": 820}, "organization": {"id": 948}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 210}, "user": {"role": "supervisor"}}}, "resource": {"id": 398, "owner": {"id": 475}, "assignee": {"id": 588}, "organization": {"id": 136}, "project": {"owner": {"id": 48}, "assignee": {"id": 861}, "organization": {"id": 972}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 491}, "assignee": {"id": 596}, "organization": {"id": 680}, "project": {"owner": {"id": 33}, "assignee": {"id": 813}, "organization": {"id": 907}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 305, "owner": {"id": 427}, "assignee": {"id": 558}, "organization": {"id": 183}, "project": {"owner": {"id": 63}, "assignee": {"id": 872}, "organization": {"id": 923}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 461}, "assignee": {"id": 522}, "organization": {"id": 662}, "project": {"owner": {"id": 2}, "assignee": {"id": 881}, "organization": {"id": 965}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 490}, "assignee": {"id": 586}, "organization": {"id": 126}, "project": {"owner": {"id": 32}, "assignee": {"id": 899}, "organization": {"id": 951}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 408}, "assignee": {"id": 555}, "organization": {"id": 681}, "project": {"owner": {"id": 49}, "assignee": {"id": 872}, "organization": {"id": 927}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 435}, "assignee": {"id": 560}, "organization": {"id": 111}, "project": {"owner": {"id": 19}, "assignee": {"id": 817}, "organization": {"id": 935}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 447}, "assignee": {"id": 542}, "organization": {"id": 650}, "project": {"owner": {"id": 43}, "assignee": {"id": 898}, "organization": {"id": 993}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 483}, "assignee": {"id": 522}, "organization": {"id": 144}, "project": {"owner": {"id": 91}, "assignee": {"id": 844}, "organization": {"id": 953}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 373, "owner": {"id": 449}, "assignee": {"id": 545}, "organization": {"id": 651}, "project": {"owner": {"id": 79}, "assignee": {"id": 829}, "organization": {"id": 923}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 208}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 431}, "assignee": {"id": 563}, "organization": {"id": 124}, "project": {"owner": {"id": 37}, "assignee": {"id": 835}, "organization": {"id": 943}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 361, "owner": {"id": 441}, "assignee": {"id": 507}, "organization": {"id": 612}, "project": {"owner": {"id": 6}, "assignee": {"id": 872}, "organization": {"id": 942}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"id": 314, "owner": {"id": 487}, "assignee": {"id": 506}, "organization": {"id": 179}, "project": {"owner": {"id": 57}, "assignee": {"id": 828}, "organization": {"id": 924}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 324, "owner": {"id": 409}, "assignee": {"id": 565}, "organization": {"id": 607}, "project": {"owner": {"id": 4}, "assignee": {"id": 815}, "organization": {"id": 927}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 380, "owner": {"id": 479}, "assignee": {"id": 559}, "organization": {"id": 151}, "project": {"owner": {"id": 20}, "assignee": {"id": 855}, "organization": {"id": 913}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 467}, "assignee": {"id": 548}, "organization": {"id": 625}, "project": {"owner": {"id": 9}, "assignee": {"id": 838}, "organization": {"id": 937}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 315, "owner": {"id": 447}, "assignee": {"id": 544}, "organization": {"id": 143}, "project": {"owner": {"id": 11}, "assignee": {"id": 892}, "organization": {"id": 912}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 142, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 372, "owner": {"id": 466}, "assignee": {"id": 551}, "organization": {"id": 607}, "project": {"owner": {"id": 73}, "assignee": {"id": 890}, "organization": {"id": 931}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 405}, "assignee": {"id": 508}, "organization": {"id": 139}, "project": {"owner": {"id": 40}, "assignee": {"id": 888}, "organization": {"id": 999}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 333, "owner": {"id": 494}, "assignee": {"id": 575}, "organization": {"id": 609}, "project": {"owner": {"id": 65}, "assignee": {"id": 808}, "organization": {"id": 978}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 440}, "assignee": {"id": 515}, "organization": {"id": 197}, "project": {"owner": {"id": 27}, "assignee": {"id": 896}, "organization": {"id": 908}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"id": 389, "owner": {"id": 496}, "assignee": {"id": 564}, "organization": {"id": 609}, "project": {"owner": {"id": 2}, "assignee": {"id": 846}, "organization": {"id": 951}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 471}, "assignee": {"id": 553}, "organization": {"id": 102}, "project": {"owner": {"id": 3}, "assignee": {"id": 890}, "organization": {"id": 981}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 355, "owner": {"id": 483}, "assignee": {"id": 502}, "organization": {"id": 615}, "project": {"owner": {"id": 21}, "assignee": {"id": 883}, "organization": {"id": 981}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 381, "owner": {"id": 405}, "assignee": {"id": 581}, "organization": {"id": 196}, "project": {"owner": {"id": 10}, "assignee": {"id": 868}, "organization": {"id": 998}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"id": 359, "owner": {"id": 487}, "assignee": {"id": 559}, "organization": {"id": 697}, "project": {"owner": {"id": 43}, "assignee": {"id": 810}, "organization": {"id": 931}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"id": 311, "owner": {"id": 436}, "assignee": {"id": 592}, "organization": {"id": 166}, "project": {"owner": {"id": 791}, "assignee": {"id": 48}, "organization": {"id": 988}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 99, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 353, "owner": {"id": 404}, "assignee": {"id": 555}, "organization": {"id": 636}, "project": {"owner": {"id": 768}, "assignee": {"id": 99}, "organization": {"id": 964}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 310, "owner": {"id": 431}, "assignee": {"id": 504}, "organization": {"id": 152}, "project": {"owner": {"id": 762}, "assignee": {"id": 49}, "organization": {"id": 971}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 290}, "user": {"role": "maintainer"}}}, "resource": {"id": 358, "owner": {"id": 444}, "assignee": {"id": 569}, "organization": {"id": 652}, "project": {"owner": {"id": 793}, "assignee": {"id": 36}, "organization": {"id": 969}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 357, "owner": {"id": 446}, "assignee": {"id": 573}, "organization": {"id": 145}, "project": {"owner": {"id": 745}, "assignee": {"id": 96}, "organization": {"id": 977}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 385, "owner": {"id": 454}, "assignee": {"id": 535}, "organization": {"id": 625}, "project": {"owner": {"id": 749}, "assignee": {"id": 89}, "organization": {"id": 947}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 170, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"id": 365, "owner": {"id": 443}, "assignee": {"id": 531}, "organization": {"id": 170}, "project": {"owner": {"id": 783}, "assignee": {"id": 92}, "organization": {"id": 920}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"id": 303, "owner": {"id": 427}, "assignee": {"id": 559}, "organization": {"id": 629}, "project": {"owner": {"id": 757}, "assignee": {"id": 89}, "organization": {"id": 958}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 207}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 437}, "assignee": {"id": 528}, "organization": {"id": 185}, "project": {"owner": {"id": 769}, "assignee": {"id": 24}, "organization": {"id": 923}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"id": 328, "owner": {"id": 410}, "assignee": {"id": 574}, "organization": {"id": 661}, "project": {"owner": {"id": 753}, "assignee": {"id": 8}, "organization": {"id": 925}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"id": 363, "owner": {"id": 429}, "assignee": {"id": 520}, "organization": {"id": 101}, "project": {"owner": {"id": 751}, "assignee": {"id": 46}, "organization": {"id": 925}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 336, "owner": {"id": 443}, "assignee": {"id": 592}, "organization": {"id": 691}, "project": {"owner": {"id": 720}, "assignee": {"id": 30}, "organization": {"id": 961}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 388, "owner": {"id": 471}, "assignee": {"id": 587}, "organization": {"id": 146}, "project": {"owner": {"id": 714}, "assignee": {"id": 96}, "organization": {"id": 911}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 320, "owner": {"id": 467}, "assignee": {"id": 521}, "organization": {"id": 631}, "project": {"owner": {"id": 790}, "assignee": {"id": 7}, "organization": {"id": 943}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 322, "owner": {"id": 448}, "assignee": {"id": 590}, "organization": {"id": 133}, "project": {"owner": {"id": 738}, "assignee": {"id": 31}, "organization": {"id": 993}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 329, "owner": {"id": 453}, "assignee": {"id": 580}, "organization": {"id": 662}, "project": {"owner": {"id": 743}, "assignee": {"id": 4}, "organization": {"id": 990}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 292}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 455}, "assignee": {"id": 581}, "organization": {"id": 161}, "project": {"owner": {"id": 732}, "assignee": {"id": 42}, "organization": {"id": 934}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 209}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 438}, "assignee": {"id": 549}, "organization": {"id": 635}, "project": {"owner": {"id": 726}, "assignee": {"id": 60}, "organization": {"id": 979}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 233}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 492}, "assignee": {"id": 545}, "organization": {"id": 132}, "project": {"owner": {"id": 719}, "assignee": {"id": 26}, "organization": {"id": 918}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 437}, "assignee": {"id": 503}, "organization": {"id": 627}, "project": {"owner": {"id": 794}, "assignee": {"id": 36}, "organization": {"id": 968}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 64}, "user": {"role": "owner"}}}, "resource": {"id": 317, "owner": {"id": 478}, "assignee": {"id": 531}, "organization": {"id": 118}, "project": {"owner": {"id": 767}, "assignee": {"id": 64}, "organization": {"id": 906}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 182, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 308, "owner": {"id": 439}, "assignee": {"id": 571}, "organization": {"id": 693}, "project": {"owner": {"id": 787}, "assignee": {"id": 13}, "organization": {"id": 944}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 470}, "assignee": {"id": 538}, "organization": {"id": 137}, "project": {"owner": {"id": 772}, "assignee": {"id": 80}, "organization": {"id": 964}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 426}, "assignee": {"id": 518}, "organization": {"id": 651}, "project": {"owner": {"id": 746}, "assignee": {"id": 89}, "organization": {"id": 958}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 458}, "assignee": {"id": 542}, "organization": {"id": 197}, "project": {"owner": {"id": 705}, "assignee": {"id": 60}, "organization": {"id": 927}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 122, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"id": 305, "owner": {"id": 439}, "assignee": {"id": 546}, "organization": {"id": 675}, "project": {"owner": {"id": 750}, "assignee": {"id": 0}, "organization": {"id": 993}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 358, "owner": {"id": 418}, "assignee": {"id": 539}, "organization": {"id": 197}, "project": {"owner": {"id": 763}, "assignee": {"id": 25}, "organization": {"id": 985}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"id": 343, "owner": {"id": 460}, "assignee": {"id": 523}, "organization": {"id": 684}, "project": {"owner": {"id": 702}, "assignee": {"id": 65}, "organization": {"id": 949}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 369, "owner": {"id": 428}, "assignee": {"id": 573}, "organization": {"id": 129}, "project": {"owner": {"id": 760}, "assignee": {"id": 46}, "organization": {"id": 990}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 481}, "assignee": {"id": 579}, "organization": {"id": 676}, "project": {"owner": {"id": 764}, "assignee": {"id": 6}, "organization": {"id": 972}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"id": 315, "owner": {"id": 409}, "assignee": {"id": 522}, "organization": {"id": 168}, "project": {"owner": {"id": 733}, "assignee": {"id": 60}, "organization": {"id": 923}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"id": 395, "owner": {"id": 482}, "assignee": {"id": 561}, "organization": {"id": 612}, "project": {"owner": {"id": 707}, "assignee": {"id": 69}, "organization": {"id": 908}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 437}, "assignee": {"id": 557}, "organization": {"id": 131}, "project": {"owner": {"id": 797}, "assignee": {"id": 50}, "organization": {"id": 989}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 438}, "assignee": {"id": 530}, "organization": {"id": 661}, "project": {"owner": {"id": 740}, "assignee": {"id": 63}, "organization": {"id": 951}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 455}, "assignee": {"id": 594}, "organization": {"id": 181}, "project": {"owner": {"id": 782}, "assignee": {"id": 64}, "organization": {"id": 972}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 495}, "assignee": {"id": 558}, "organization": {"id": 625}, "project": {"owner": {"id": 790}, "assignee": {"id": 35}, "organization": {"id": 991}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 414}, "assignee": {"id": 574}, "organization": {"id": 180}, "project": {"owner": {"id": 748}, "assignee": {"id": 94}, "organization": {"id": 999}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 156, "owner": {"id": 292}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 484}, "assignee": {"id": 502}, "organization": {"id": 666}, "project": {"owner": {"id": 748}, "assignee": {"id": 38}, "organization": {"id": 924}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 390, "owner": {"id": 442}, "assignee": {"id": 504}, "organization": {"id": 131}, "project": {"owner": {"id": 710}, "assignee": {"id": 77}, "organization": {"id": 953}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 356, "owner": {"id": 468}, "assignee": {"id": 579}, "organization": {"id": 635}, "project": {"owner": {"id": 738}, "assignee": {"id": 92}, "organization": {"id": 961}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 386, "owner": {"id": 458}, "assignee": {"id": 513}, "organization": {"id": 130}, "project": {"owner": {"id": 708}, "assignee": {"id": 30}, "organization": {"id": 967}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 430}, "assignee": {"id": 581}, "organization": {"id": 665}, "project": {"owner": {"id": 772}, "assignee": {"id": 85}, "organization": {"id": 993}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 413}, "assignee": {"id": 550}, "organization": {"id": 129}, "project": {"owner": {"id": 774}, "assignee": {"id": 11}, "organization": {"id": 991}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 348, "owner": {"id": 475}, "assignee": {"id": 516}, "organization": {"id": 643}, "project": {"owner": {"id": 724}, "assignee": {"id": 70}, "organization": {"id": 942}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"id": 335, "owner": {"id": 445}, "assignee": {"id": 579}, "organization": {"id": 187}, "project": {"owner": {"id": 786}, "assignee": {"id": 13}, "organization": {"id": 900}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"id": 389, "owner": {"id": 442}, "assignee": {"id": 520}, "organization": {"id": 663}, "project": {"owner": {"id": 707}, "assignee": {"id": 90}, "organization": {"id": 993}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 454}, "assignee": {"id": 591}, "organization": {"id": 117}, "project": {"owner": {"id": 739}, "assignee": {"id": 68}, "organization": {"id": 971}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 378, "owner": {"id": 457}, "assignee": {"id": 590}, "organization": {"id": 649}, "project": {"owner": {"id": 719}, "assignee": {"id": 95}, "organization": {"id": 999}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"id": 333, "owner": {"id": 408}, "assignee": {"id": 504}, "organization": {"id": 198}, "project": {"owner": {"id": 777}, "assignee": {"id": 3}, "organization": {"id": 934}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"id": 316, "owner": {"id": 405}, "assignee": {"id": 511}, "organization": {"id": 641}, "project": {"owner": {"id": 714}, "assignee": {"id": 75}, "organization": {"id": 931}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"id": 365, "owner": {"id": 49}, "assignee": {"id": 505}, "organization": {"id": 110}, "project": {"owner": {"id": 747}, "assignee": {"id": 878}, "organization": {"id": 984}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 20}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 20}, "assignee": {"id": 576}, "organization": {"id": 656}, "project": {"owner": {"id": 745}, "assignee": {"id": 851}, "organization": {"id": 900}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 79}, "assignee": {"id": 562}, "organization": {"id": 146}, "project": {"owner": {"id": 747}, "assignee": {"id": 846}, "organization": {"id": 972}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 289}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 26}, "assignee": {"id": 518}, "organization": {"id": 620}, "project": {"owner": {"id": 751}, "assignee": {"id": 856}, "organization": {"id": 937}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 15, "privilege": "admin"}, "organization": {"id": 149, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 362, "owner": {"id": 15}, "assignee": {"id": 505}, "organization": {"id": 149}, "project": {"owner": {"id": 713}, "assignee": {"id": 896}, "organization": {"id": 990}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 30}, "assignee": {"id": 540}, "organization": {"id": 670}, "project": {"owner": {"id": 794}, "assignee": {"id": 851}, "organization": {"id": 923}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 181, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 97}, "assignee": {"id": 582}, "organization": {"id": 181}, "project": {"owner": {"id": 717}, "assignee": {"id": 898}, "organization": {"id": 965}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"id": 326, "owner": {"id": 20}, "assignee": {"id": 512}, "organization": {"id": 671}, "project": {"owner": {"id": 763}, "assignee": {"id": 854}, "organization": {"id": 901}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 99, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"id": 359, "owner": {"id": 99}, "assignee": {"id": 525}, "organization": {"id": 176}, "project": {"owner": {"id": 751}, "assignee": {"id": 825}, "organization": {"id": 975}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 374, "owner": {"id": 92}, "assignee": {"id": 576}, "organization": {"id": 668}, "project": {"owner": {"id": 762}, "assignee": {"id": 841}, "organization": {"id": 953}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 7}, "assignee": {"id": 504}, "organization": {"id": 102}, "project": {"owner": {"id": 753}, "assignee": {"id": 862}, "organization": {"id": 950}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 330, "owner": {"id": 67}, "assignee": {"id": 554}, "organization": {"id": 608}, "project": {"owner": {"id": 733}, "assignee": {"id": 848}, "organization": {"id": 964}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 373, "owner": {"id": 78}, "assignee": {"id": 564}, "organization": {"id": 100}, "project": {"owner": {"id": 720}, "assignee": {"id": 809}, "organization": {"id": 911}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 189, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 356, "owner": {"id": 30}, "assignee": {"id": 567}, "organization": {"id": 663}, "project": {"owner": {"id": 750}, "assignee": {"id": 861}, "organization": {"id": 926}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 60}, "assignee": {"id": 550}, "organization": {"id": 197}, "project": {"owner": {"id": 799}, "assignee": {"id": 864}, "organization": {"id": 954}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 65}, "assignee": {"id": 578}, "organization": {"id": 641}, "project": {"owner": {"id": 787}, "assignee": {"id": 810}, "organization": {"id": 901}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 130, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 6}, "assignee": {"id": 572}, "organization": {"id": 130}, "project": {"owner": {"id": 764}, "assignee": {"id": 807}, "organization": {"id": 982}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"id": 372, "owner": {"id": 6}, "assignee": {"id": 577}, "organization": {"id": 674}, "project": {"owner": {"id": 712}, "assignee": {"id": 882}, "organization": {"id": 925}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 397, "owner": {"id": 43}, "assignee": {"id": 509}, "organization": {"id": 120}, "project": {"owner": {"id": 785}, "assignee": {"id": 807}, "organization": {"id": 951}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"id": 340, "owner": {"id": 78}, "assignee": {"id": 520}, "organization": {"id": 626}, "project": {"owner": {"id": 766}, "assignee": {"id": 830}, "organization": {"id": 965}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 149, "owner": {"id": 64}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 64}, "assignee": {"id": 554}, "organization": {"id": 149}, "project": {"owner": {"id": 799}, "assignee": {"id": 819}, "organization": {"id": 979}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 89}, "assignee": {"id": 522}, "organization": {"id": 631}, "project": {"owner": {"id": 728}, "assignee": {"id": 875}, "organization": {"id": 918}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 99}, "assignee": {"id": 589}, "organization": {"id": 156}, "project": {"owner": {"id": 776}, "assignee": {"id": 862}, "organization": {"id": 977}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 267}, "user": {"role": "maintainer"}}}, "resource": {"id": 324, "owner": {"id": 40}, "assignee": {"id": 531}, "organization": {"id": 688}, "project": {"owner": {"id": 769}, "assignee": {"id": 813}, "organization": {"id": 935}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"id": 320, "owner": {"id": 94}, "assignee": {"id": 516}, "organization": {"id": 179}, "project": {"owner": {"id": 781}, "assignee": {"id": 813}, "organization": {"id": 912}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 245}, "user": {"role": "supervisor"}}}, "resource": {"id": 343, "owner": {"id": 83}, "assignee": {"id": 599}, "organization": {"id": 697}, "project": {"owner": {"id": 731}, "assignee": {"id": 867}, "organization": {"id": 907}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 317, "owner": {"id": 7}, "assignee": {"id": 588}, "organization": {"id": 188}, "project": {"owner": {"id": 798}, "assignee": {"id": 841}, "organization": {"id": 944}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 366, "owner": {"id": 64}, "assignee": {"id": 564}, "organization": {"id": 689}, "project": {"owner": {"id": 768}, "assignee": {"id": 877}, "organization": {"id": 948}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 84}, "assignee": {"id": 571}, "organization": {"id": 120}, "project": {"owner": {"id": 794}, "assignee": {"id": 850}, "organization": {"id": 924}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"id": 336, "owner": {"id": 32}, "assignee": {"id": 559}, "organization": {"id": 613}, "project": {"owner": {"id": 706}, "assignee": {"id": 818}, "organization": {"id": 927}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"id": 352, "owner": {"id": 56}, "assignee": {"id": 534}, "organization": {"id": 158}, "project": {"owner": {"id": 758}, "assignee": {"id": 877}, "organization": {"id": 906}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 398, "owner": {"id": 29}, "assignee": {"id": 554}, "organization": {"id": 654}, "project": {"owner": {"id": 795}, "assignee": {"id": 885}, "organization": {"id": 964}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 6}, "assignee": {"id": 533}, "organization": {"id": 151}, "project": {"owner": {"id": 714}, "assignee": {"id": 834}, "organization": {"id": 931}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 331, "owner": {"id": 9}, "assignee": {"id": 574}, "organization": {"id": 659}, "project": {"owner": {"id": 736}, "assignee": {"id": 861}, "organization": {"id": 998}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"id": 314, "owner": {"id": 64}, "assignee": {"id": 552}, "organization": {"id": 114}, "project": {"owner": {"id": 705}, "assignee": {"id": 812}, "organization": {"id": 977}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 3, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"id": 387, "owner": {"id": 3}, "assignee": {"id": 574}, "organization": {"id": 631}, "project": {"owner": {"id": 752}, "assignee": {"id": 876}, "organization": {"id": 927}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"id": 389, "owner": {"id": 77}, "assignee": {"id": 597}, "organization": {"id": 158}, "project": {"owner": {"id": 704}, "assignee": {"id": 896}, "organization": {"id": 993}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 48, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"id": 327, "owner": {"id": 48}, "assignee": {"id": 523}, "organization": {"id": 687}, "project": {"owner": {"id": 712}, "assignee": {"id": 896}, "organization": {"id": 946}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 40}, "assignee": {"id": 593}, "organization": {"id": 182}, "project": {"owner": {"id": 757}, "assignee": {"id": 845}, "organization": {"id": 917}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 69}, "assignee": {"id": 558}, "organization": {"id": 649}, "project": {"owner": {"id": 723}, "assignee": {"id": 805}, "organization": {"id": 959}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 40}, "assignee": {"id": 556}, "organization": {"id": 183}, "project": {"owner": {"id": 781}, "assignee": {"id": 862}, "organization": {"id": 928}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 4}, "assignee": {"id": 593}, "organization": {"id": 646}, "project": {"owner": {"id": 786}, "assignee": {"id": 870}, "organization": {"id": 998}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 57}, "assignee": {"id": 518}, "organization": {"id": 193}, "project": {"owner": {"id": 716}, "assignee": {"id": 853}, "organization": {"id": 922}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 8}, "assignee": {"id": 567}, "organization": {"id": 687}, "project": {"owner": {"id": 791}, "assignee": {"id": 885}, "organization": {"id": 988}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 19}, "assignee": {"id": 558}, "organization": {"id": 157}, "project": {"owner": {"id": 762}, "assignee": {"id": 822}, "organization": {"id": 981}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 150, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"id": 394, "owner": {"id": 44}, "assignee": {"id": 579}, "organization": {"id": 653}, "project": {"owner": {"id": 726}, "assignee": {"id": 878}, "organization": {"id": 976}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 38}, "assignee": {"id": 535}, "organization": {"id": 141}, "project": {"owner": {"id": 772}, "assignee": {"id": 881}, "organization": {"id": 912}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 2}, "assignee": {"id": 568}, "organization": {"id": 675}, "project": {"owner": {"id": 787}, "assignee": {"id": 847}, "organization": {"id": 902}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 23}, "assignee": {"id": 534}, "organization": {"id": 182}, "project": {"owner": {"id": 755}, "assignee": {"id": 836}, "organization": {"id": 931}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 61}, "assignee": {"id": 565}, "organization": {"id": 605}, "project": {"owner": {"id": 753}, "assignee": {"id": 816}, "organization": {"id": 926}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 399, "owner": {"id": 420}, "assignee": {"id": 39}, "organization": {"id": 178}, "project": {"owner": {"id": 733}, "assignee": {"id": 801}, "organization": {"id": 901}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 488}, "assignee": {"id": 35}, "organization": {"id": 603}, "project": {"owner": {"id": 746}, "assignee": {"id": 899}, "organization": {"id": 995}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 494}, "assignee": {"id": 18}, "organization": {"id": 191}, "project": {"owner": {"id": 730}, "assignee": {"id": 870}, "organization": {"id": 981}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 255}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 459}, "assignee": {"id": 93}, "organization": {"id": 684}, "project": {"owner": {"id": 732}, "assignee": {"id": 849}, "organization": {"id": 999}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 390, "owner": {"id": 436}, "assignee": {"id": 59}, "organization": {"id": 140}, "project": {"owner": {"id": 718}, "assignee": {"id": 886}, "organization": {"id": 992}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 363, "owner": {"id": 410}, "assignee": {"id": 82}, "organization": {"id": 621}, "project": {"owner": {"id": 740}, "assignee": {"id": 890}, "organization": {"id": 935}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 471}, "assignee": {"id": 26}, "organization": {"id": 111}, "project": {"owner": {"id": 709}, "assignee": {"id": 829}, "organization": {"id": 950}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 116, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"id": 326, "owner": {"id": 480}, "assignee": {"id": 4}, "organization": {"id": 695}, "project": {"owner": {"id": 782}, "assignee": {"id": 802}, "organization": {"id": 990}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 462}, "assignee": {"id": 19}, "organization": {"id": 143}, "project": {"owner": {"id": 711}, "assignee": {"id": 813}, "organization": {"id": 905}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 277}, "user": {"role": null}}}, "resource": {"id": 333, "owner": {"id": 438}, "assignee": {"id": 84}, "organization": {"id": 661}, "project": {"owner": {"id": 773}, "assignee": {"id": 848}, "organization": {"id": 920}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 493}, "assignee": {"id": 50}, "organization": {"id": 112}, "project": {"owner": {"id": 703}, "assignee": {"id": 829}, "organization": {"id": 942}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 91, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"id": 365, "owner": {"id": 410}, "assignee": {"id": 91}, "organization": {"id": 616}, "project": {"owner": {"id": 738}, "assignee": {"id": 811}, "organization": {"id": 968}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 320, "owner": {"id": 498}, "assignee": {"id": 62}, "organization": {"id": 142}, "project": {"owner": {"id": 786}, "assignee": {"id": 865}, "organization": {"id": 978}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 433}, "assignee": {"id": 67}, "organization": {"id": 684}, "project": {"owner": {"id": 730}, "assignee": {"id": 829}, "organization": {"id": 996}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 420}, "assignee": {"id": 97}, "organization": {"id": 140}, "project": {"owner": {"id": 799}, "assignee": {"id": 820}, "organization": {"id": 970}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 338, "owner": {"id": 450}, "assignee": {"id": 27}, "organization": {"id": 667}, "project": {"owner": {"id": 763}, "assignee": {"id": 830}, "organization": {"id": 985}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 425}, "assignee": {"id": 48}, "organization": {"id": 194}, "project": {"owner": {"id": 714}, "assignee": {"id": 861}, "organization": {"id": 934}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": null}, "resource": {"id": 357, "owner": {"id": 443}, "assignee": {"id": 581}, "organization": {"id": 654}, "project": {"owner": {"id": 11}, "assignee": {"id": 840}, "organization": {"id": 996}}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"id": 343, "owner": {"id": 430}, "assignee": {"id": 95}, "organization": {"id": 631}, "project": {"owner": {"id": 767}, "assignee": {"id": 874}, "organization": {"id": 965}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": null}, "resource": {"id": 365, "owner": {"id": 419}, "assignee": {"id": 535}, "organization": {"id": 601}, "project": {"owner": {"id": 5}, "assignee": {"id": 884}, "organization": {"id": 974}}}} +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"id": 333, "owner": {"id": 458}, "assignee": {"id": 59}, "organization": {"id": 156}, "project": {"owner": {"id": 773}, "assignee": {"id": 850}, "organization": {"id": 986}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 355, "owner": {"id": 452}, "assignee": {"id": 71}, "organization": {"id": 615}, "project": {"owner": {"id": 733}, "assignee": {"id": 828}, "organization": {"id": 922}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 90, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 478}, "assignee": {"id": 90}, "organization": {"id": 164}, "project": {"owner": {"id": 784}, "assignee": {"id": 870}, "organization": {"id": 913}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 350, "owner": {"id": 415}, "assignee": {"id": 39}, "organization": {"id": 633}, "project": {"owner": {"id": 741}, "assignee": {"id": 889}, "organization": {"id": 993}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 334, "owner": {"id": 473}, "assignee": {"id": 51}, "organization": {"id": 118}, "project": {"owner": {"id": 797}, "assignee": {"id": 834}, "organization": {"id": 916}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 418}, "assignee": {"id": 37}, "organization": {"id": 661}, "project": {"owner": {"id": 701}, "assignee": {"id": 828}, "organization": {"id": 931}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 343, "owner": {"id": 420}, "assignee": {"id": 95}, "organization": {"id": 136}, "project": {"owner": {"id": 779}, "assignee": {"id": 851}, "organization": {"id": 980}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 433}, "assignee": {"id": 95}, "organization": {"id": 622}, "project": {"owner": {"id": 751}, "assignee": {"id": 864}, "organization": {"id": 986}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 465}, "assignee": {"id": 30}, "organization": {"id": 194}, "project": {"owner": {"id": 741}, "assignee": {"id": 839}, "organization": {"id": 963}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 22, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 434}, "assignee": {"id": 22}, "organization": {"id": 698}, "project": {"owner": {"id": 743}, "assignee": {"id": 898}, "organization": {"id": 933}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 317, "owner": {"id": 469}, "assignee": {"id": 43}, "organization": {"id": 121}, "project": {"owner": {"id": 788}, "assignee": {"id": 818}, "organization": {"id": 993}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 467}, "assignee": {"id": 38}, "organization": {"id": 632}, "project": {"owner": {"id": 773}, "assignee": {"id": 847}, "organization": {"id": 911}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 45}, "user": {"role": "owner"}}}, "resource": {"id": 364, "owner": {"id": 414}, "assignee": {"id": 45}, "organization": {"id": 173}, "project": {"owner": {"id": 771}, "assignee": {"id": 883}, "organization": {"id": 968}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 380, "owner": {"id": 452}, "assignee": {"id": 11}, "organization": {"id": 696}, "project": {"owner": {"id": 794}, "assignee": {"id": 891}, "organization": {"id": 950}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 410}, "assignee": {"id": 21}, "organization": {"id": 191}, "project": {"owner": {"id": 726}, "assignee": {"id": 874}, "organization": {"id": 915}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"id": 311, "owner": {"id": 412}, "assignee": {"id": 73}, "organization": {"id": 613}, "project": {"owner": {"id": 767}, "assignee": {"id": 854}, "organization": {"id": 930}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 403}, "assignee": {"id": 17}, "organization": {"id": 110}, "project": {"owner": {"id": 717}, "assignee": {"id": 827}, "organization": {"id": 961}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 150, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 369, "owner": {"id": 468}, "assignee": {"id": 80}, "organization": {"id": 660}, "project": {"owner": {"id": 759}, "assignee": {"id": 871}, "organization": {"id": 900}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 469}, "assignee": {"id": 24}, "organization": {"id": 133}, "project": {"owner": {"id": 785}, "assignee": {"id": 805}, "organization": {"id": 978}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 338, "owner": {"id": 491}, "assignee": {"id": 86}, "organization": {"id": 684}, "project": {"owner": {"id": 753}, "assignee": {"id": 842}, "organization": {"id": 917}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 393, "owner": {"id": 403}, "assignee": {"id": 21}, "organization": {"id": 177}, "project": {"owner": {"id": 742}, "assignee": {"id": 891}, "organization": {"id": 985}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"id": 383, "owner": {"id": 487}, "assignee": {"id": 74}, "organization": {"id": 645}, "project": {"owner": {"id": 736}, "assignee": {"id": 890}, "organization": {"id": 930}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"id": 399, "owner": {"id": 427}, "assignee": {"id": 79}, "organization": {"id": 130}, "project": {"owner": {"id": 719}, "assignee": {"id": 852}, "organization": {"id": 983}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 380, "owner": {"id": 412}, "assignee": {"id": 25}, "organization": {"id": 643}, "project": {"owner": {"id": 772}, "assignee": {"id": 847}, "organization": {"id": 946}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 464}, "assignee": {"id": 36}, "organization": {"id": 103}, "project": {"owner": {"id": 730}, "assignee": {"id": 863}, "organization": {"id": 989}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 327, "owner": {"id": 415}, "assignee": {"id": 8}, "organization": {"id": 658}, "project": {"owner": {"id": 745}, "assignee": {"id": 854}, "organization": {"id": 976}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 188, "owner": {"id": 283}, "user": {"role": "supervisor"}}}, "resource": {"id": 366, "owner": {"id": 453}, "assignee": {"id": 81}, "organization": {"id": 188}, "project": {"owner": {"id": 754}, "assignee": {"id": 871}, "organization": {"id": 911}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"id": 331, "owner": {"id": 448}, "assignee": {"id": 33}, "organization": {"id": 673}, "project": {"owner": {"id": 714}, "assignee": {"id": 856}, "organization": {"id": 943}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 382, "owner": {"id": 459}, "assignee": {"id": 61}, "organization": {"id": 151}, "project": {"owner": {"id": 716}, "assignee": {"id": 821}, "organization": {"id": 921}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"id": 301, "owner": {"id": 420}, "assignee": {"id": 87}, "organization": {"id": 675}, "project": {"owner": {"id": 760}, "assignee": {"id": 820}, "organization": {"id": 987}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 116, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 465}, "assignee": {"id": 87}, "organization": {"id": 116}, "project": {"owner": {"id": 714}, "assignee": {"id": 885}, "organization": {"id": 954}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 150, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 373, "owner": {"id": 418}, "assignee": {"id": 77}, "organization": {"id": 645}, "project": {"owner": {"id": 736}, "assignee": {"id": 874}, "organization": {"id": 919}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 424}, "assignee": {"id": 556}, "organization": {"id": 196}, "project": {"owner": {"id": 792}, "assignee": {"id": 854}, "organization": {"id": 944}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 416}, "assignee": {"id": 548}, "organization": {"id": 641}, "project": {"owner": {"id": 713}, "assignee": {"id": 829}, "organization": {"id": 982}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 488}, "assignee": {"id": 503}, "organization": {"id": 106}, "project": {"owner": {"id": 793}, "assignee": {"id": 826}, "organization": {"id": 901}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 156, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 353, "owner": {"id": 414}, "assignee": {"id": 542}, "organization": {"id": 620}, "project": {"owner": {"id": 758}, "assignee": {"id": 818}, "organization": {"id": 980}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 205}, "user": {"role": "supervisor"}}}, "resource": {"id": 395, "owner": {"id": 435}, "assignee": {"id": 512}, "organization": {"id": 167}, "project": {"owner": {"id": 747}, "assignee": {"id": 852}, "organization": {"id": 995}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 248}, "user": {"role": "supervisor"}}}, "resource": {"id": 331, "owner": {"id": 433}, "assignee": {"id": 592}, "organization": {"id": 612}, "project": {"owner": {"id": 723}, "assignee": {"id": 898}, "organization": {"id": 942}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 244}, "user": {"role": "worker"}}}, "resource": {"id": 368, "owner": {"id": 418}, "assignee": {"id": 566}, "organization": {"id": 173}, "project": {"owner": {"id": 720}, "assignee": {"id": 887}, "organization": {"id": 906}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 336, "owner": {"id": 454}, "assignee": {"id": 560}, "organization": {"id": 646}, "project": {"owner": {"id": 717}, "assignee": {"id": 885}, "organization": {"id": 960}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 50, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 387, "owner": {"id": 431}, "assignee": {"id": 596}, "organization": {"id": 183}, "project": {"owner": {"id": 720}, "assignee": {"id": 853}, "organization": {"id": 902}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "view", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"id": 345, "owner": {"id": 435}, "assignee": {"id": 575}, "organization": {"id": 667}, "project": {"owner": {"id": 794}, "assignee": {"id": 843}, "organization": {"id": 921}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 441}, "assignee": {"id": 549}, "organization": {"id": 105}, "project": {"owner": {"id": 722}, "assignee": {"id": 885}, "organization": {"id": 984}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"id": 371, "owner": {"id": 485}, "assignee": {"id": 523}, "organization": {"id": 612}, "project": {"owner": {"id": 767}, "assignee": {"id": 860}, "organization": {"id": 978}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 498}, "assignee": {"id": 535}, "organization": {"id": 118}, "project": {"owner": {"id": 715}, "assignee": {"id": 822}, "organization": {"id": 900}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 456}, "assignee": {"id": 528}, "organization": {"id": 644}, "project": {"owner": {"id": 705}, "assignee": {"id": 892}, "organization": {"id": 996}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"id": 346, "owner": {"id": 431}, "assignee": {"id": 587}, "organization": {"id": 112}, "project": {"owner": {"id": 799}, "assignee": {"id": 829}, "organization": {"id": 953}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 493}, "assignee": {"id": 570}, "organization": {"id": 648}, "project": {"owner": {"id": 730}, "assignee": {"id": 853}, "organization": {"id": 974}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 250}, "user": {"role": "worker"}}}, "resource": {"id": 342, "owner": {"id": 423}, "assignee": {"id": 571}, "organization": {"id": 197}, "project": {"owner": {"id": 730}, "assignee": {"id": 838}, "organization": {"id": 976}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 317, "owner": {"id": 449}, "assignee": {"id": 513}, "organization": {"id": 652}, "project": {"owner": {"id": 766}, "assignee": {"id": 818}, "organization": {"id": 903}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 414}, "assignee": {"id": 543}, "organization": {"id": 111}, "project": {"owner": {"id": 771}, "assignee": {"id": 860}, "organization": {"id": 975}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 408}, "assignee": {"id": 582}, "organization": {"id": 603}, "project": {"owner": {"id": 701}, "assignee": {"id": 873}, "organization": {"id": 938}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 450}, "assignee": {"id": 537}, "organization": {"id": 159}, "project": {"owner": {"id": 793}, "assignee": {"id": 860}, "organization": {"id": 918}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": {"id": 192, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 420}, "assignee": {"id": 584}, "organization": {"id": 696}, "project": {"owner": {"id": 710}, "assignee": {"id": 890}, "organization": {"id": 926}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 332, "owner": {"id": 422}, "assignee": {"id": 517}, "organization": {"id": 183}, "project": {"owner": {"id": 750}, "assignee": {"id": 858}, "organization": {"id": 955}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 318, "owner": {"id": 411}, "assignee": {"id": 571}, "organization": {"id": 624}, "project": {"owner": {"id": 723}, "assignee": {"id": 899}, "organization": {"id": 946}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 408}, "assignee": {"id": 577}, "organization": {"id": 134}, "project": {"owner": {"id": 717}, "assignee": {"id": 843}, "organization": {"id": 944}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 378, "owner": {"id": 465}, "assignee": {"id": 594}, "organization": {"id": 630}, "project": {"owner": {"id": 711}, "assignee": {"id": 867}, "organization": {"id": 903}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 496}, "assignee": {"id": 512}, "organization": {"id": 179}, "project": {"owner": {"id": 775}, "assignee": {"id": 841}, "organization": {"id": 976}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 333, "owner": {"id": 450}, "assignee": {"id": 517}, "organization": {"id": 612}, "project": {"owner": {"id": 797}, "assignee": {"id": 834}, "organization": {"id": 936}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 430}, "assignee": {"id": 515}, "organization": {"id": 197}, "project": {"owner": {"id": 752}, "assignee": {"id": 841}, "organization": {"id": 918}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 412}, "assignee": {"id": 545}, "organization": {"id": 695}, "project": {"owner": {"id": 713}, "assignee": {"id": 876}, "organization": {"id": 940}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 64}, "user": {"role": "owner"}}}, "resource": {"id": 363, "owner": {"id": 459}, "assignee": {"id": 573}, "organization": {"id": 128}, "project": {"owner": {"id": 730}, "assignee": {"id": 894}, "organization": {"id": 958}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 441}, "assignee": {"id": 540}, "organization": {"id": 635}, "project": {"owner": {"id": 753}, "assignee": {"id": 840}, "organization": {"id": 954}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 205}, "user": {"role": "maintainer"}}}, "resource": {"id": 382, "owner": {"id": 434}, "assignee": {"id": 508}, "organization": {"id": 145}, "project": {"owner": {"id": 724}, "assignee": {"id": 831}, "organization": {"id": 986}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 418}, "assignee": {"id": 589}, "organization": {"id": 673}, "project": {"owner": {"id": 761}, "assignee": {"id": 813}, "organization": {"id": 978}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 305, "owner": {"id": 497}, "assignee": {"id": 532}, "organization": {"id": 146}, "project": {"owner": {"id": 750}, "assignee": {"id": 818}, "organization": {"id": 925}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 442}, "assignee": {"id": 547}, "organization": {"id": 655}, "project": {"owner": {"id": 769}, "assignee": {"id": 889}, "organization": {"id": 986}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 288}, "user": {"role": "worker"}}}, "resource": {"id": 380, "owner": {"id": 468}, "assignee": {"id": 599}, "organization": {"id": 125}, "project": {"owner": {"id": 764}, "assignee": {"id": 808}, "organization": {"id": 946}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 150, "owner": {"id": 202}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 473}, "assignee": {"id": 536}, "organization": {"id": 620}, "project": {"owner": {"id": 763}, "assignee": {"id": 853}, "organization": {"id": 995}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 387, "owner": {"id": 444}, "assignee": {"id": 562}, "organization": {"id": 140}, "project": {"owner": {"id": 704}, "assignee": {"id": 876}, "organization": {"id": 982}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 239}, "user": {"role": null}}}, "resource": {"id": 367, "owner": {"id": 432}, "assignee": {"id": 560}, "organization": {"id": 631}, "project": {"owner": {"id": 755}, "assignee": {"id": 813}, "organization": {"id": 923}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"id": 306, "owner": {"id": 421}, "assignee": {"id": 540}, "organization": {"id": 162}, "project": {"owner": {"id": 794}, "assignee": {"id": 868}, "organization": {"id": 936}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 142, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"id": 386, "owner": {"id": 469}, "assignee": {"id": 577}, "organization": {"id": 662}, "project": {"owner": {"id": 785}, "assignee": {"id": 839}, "organization": {"id": 938}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 397, "owner": {"id": 492}, "assignee": {"id": 536}, "organization": {"id": 182}, "project": {"owner": {"id": 784}, "assignee": {"id": 882}, "organization": {"id": 997}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"id": 332, "owner": {"id": 436}, "assignee": {"id": 532}, "organization": {"id": 641}, "project": {"owner": {"id": 778}, "assignee": {"id": 824}, "organization": {"id": 996}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 376, "owner": {"id": 462}, "assignee": {"id": 590}, "organization": {"id": 185}, "project": {"owner": {"id": 728}, "assignee": {"id": 804}, "organization": {"id": 994}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"id": 385, "owner": {"id": 488}, "assignee": {"id": 586}, "organization": {"id": 632}, "project": {"owner": {"id": 754}, "assignee": {"id": 834}, "organization": {"id": 986}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 468}, "assignee": {"id": 550}, "organization": {"id": 152}, "project": {"owner": {"id": 747}, "assignee": {"id": 839}, "organization": {"id": 988}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 469}, "assignee": {"id": 568}, "organization": {"id": 674}, "project": {"owner": {"id": 738}, "assignee": {"id": 831}, "organization": {"id": 905}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"id": 330, "owner": {"id": 462}, "assignee": {"id": 594}, "organization": {"id": 141}, "project": {"owner": {"id": 763}, "assignee": {"id": 846}, "organization": {"id": 965}}}} +} + +test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 277}, "user": {"role": null}}}, "resource": {"id": 326, "owner": {"id": 495}, "assignee": {"id": 593}, "organization": {"id": 654}, "project": {"owner": {"id": 781}, "assignee": {"id": 837}, "organization": {"id": 938}}}} +} + +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": null}, "resource": {"id": 310, "owner": {"id": 430}, "assignee": {"id": 523}, "organization": {"id": 685}, "project": {"owner": {"id": 33}, "assignee": {"id": 803}, "organization": {"id": 940}}}} +} + +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": null}, "resource": {"id": 303, "owner": {"id": 465}, "assignee": {"id": 596}, "organization": {"id": 694}, "project": {"owner": {"id": 50}, "assignee": {"id": 829}, "organization": {"id": 924}}}} +} + +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": null}, "resource": {"id": 326, "owner": {"id": 416}, "assignee": {"id": 570}, "organization": {"id": 696}, "project": {"owner": {"id": 97}, "assignee": {"id": 839}, "organization": {"id": 948}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": null}, "resource": {"id": 327, "owner": {"id": 451}, "assignee": {"id": 581}, "organization": {"id": 605}, "project": {"owner": {"id": 11}, "assignee": {"id": 821}, "organization": {"id": 998}}}} +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": null}, "resource": {"id": 362, "owner": {"id": 497}, "assignee": {"id": 540}, "organization": {"id": 603}, "project": {"owner": {"id": 16}, "assignee": {"id": 801}, "organization": {"id": 966}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": null}, "resource": {"id": 351, "owner": {"id": 415}, "assignee": {"id": 596}, "organization": {"id": 634}, "project": {"owner": {"id": 63}, "assignee": {"id": 880}, "organization": {"id": 938}}}} +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": null}, "resource": {"id": 338, "owner": {"id": 407}, "assignee": {"id": 516}, "organization": {"id": 628}, "project": {"owner": {"id": 13}, "assignee": {"id": 811}, "organization": {"id": 940}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": null}, "resource": {"id": 304, "owner": {"id": 444}, "assignee": {"id": 568}, "organization": {"id": 698}, "project": {"owner": {"id": 776}, "assignee": {"id": 14}, "organization": {"id": 913}}}} +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": null}, "resource": {"id": 315, "owner": {"id": 437}, "assignee": {"id": 566}, "organization": {"id": 635}, "project": {"owner": {"id": 750}, "assignee": {"id": 9}, "organization": {"id": 964}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 469}, "assignee": {"id": 523}, "organization": {"id": 628}, "project": {"owner": {"id": 753}, "assignee": {"id": 82}, "organization": {"id": 979}}}} +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": null}, "resource": {"id": 301, "owner": {"id": 471}, "assignee": {"id": 566}, "organization": {"id": 664}, "project": {"owner": {"id": 746}, "assignee": {"id": 76}, "organization": {"id": 970}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": null}, "resource": {"id": 389, "owner": {"id": 450}, "assignee": {"id": 583}, "organization": {"id": 681}, "project": {"owner": {"id": 711}, "assignee": {"id": 83}, "organization": {"id": 920}}}} +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": null}, "resource": {"id": 360, "owner": {"id": 451}, "assignee": {"id": 538}, "organization": {"id": 661}, "project": {"owner": {"id": 748}, "assignee": {"id": 38}, "organization": {"id": 984}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": null}, "resource": {"id": 365, "owner": {"id": 441}, "assignee": {"id": 556}, "organization": {"id": 608}, "project": {"owner": {"id": 759}, "assignee": {"id": 84}, "organization": {"id": 965}}}} +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": null}, "resource": {"id": 394, "owner": {"id": 470}, "assignee": {"id": 526}, "organization": {"id": 605}, "project": {"owner": {"id": 784}, "assignee": {"id": 85}, "organization": {"id": 927}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": null}, "resource": {"id": 340, "owner": {"id": 454}, "assignee": {"id": 543}, "organization": {"id": 670}, "project": {"owner": {"id": 714}, "assignee": {"id": 20}, "organization": {"id": 933}}}} +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": null}, "resource": {"id": 334, "owner": {"id": 436}, "assignee": {"id": 511}, "organization": {"id": 647}, "project": {"owner": {"id": 762}, "assignee": {"id": 40}, "organization": {"id": 921}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": null}, "resource": {"id": 301, "owner": {"id": 65}, "assignee": {"id": 535}, "organization": {"id": 634}, "project": {"owner": {"id": 790}, "assignee": {"id": 878}, "organization": {"id": 960}}}} +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": null}, "resource": {"id": 335, "owner": {"id": 21}, "assignee": {"id": 560}, "organization": {"id": 662}, "project": {"owner": {"id": 794}, "assignee": {"id": 846}, "organization": {"id": 962}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": null}, "resource": {"id": 356, "owner": {"id": 15}, "assignee": {"id": 574}, "organization": {"id": 617}, "project": {"owner": {"id": 786}, "assignee": {"id": 885}, "organization": {"id": 964}}}} +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": null}, "resource": {"id": 338, "owner": {"id": 42}, "assignee": {"id": 503}, "organization": {"id": 694}, "project": {"owner": {"id": 739}, "assignee": {"id": 842}, "organization": {"id": 921}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": null}, "resource": {"id": 306, "owner": {"id": 25}, "assignee": {"id": 584}, "organization": {"id": 654}, "project": {"owner": {"id": 748}, "assignee": {"id": 887}, "organization": {"id": 963}}}} +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": null}, "resource": {"id": 395, "owner": {"id": 72}, "assignee": {"id": 577}, "organization": {"id": 674}, "project": {"owner": {"id": 791}, "assignee": {"id": 849}, "organization": {"id": 931}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": null}, "resource": {"id": 304, "owner": {"id": 41}, "assignee": {"id": 505}, "organization": {"id": 682}, "project": {"owner": {"id": 729}, "assignee": {"id": 879}, "organization": {"id": 931}}}} +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": null}, "resource": {"id": 330, "owner": {"id": 87}, "assignee": {"id": 505}, "organization": {"id": 647}, "project": {"owner": {"id": 789}, "assignee": {"id": 860}, "organization": {"id": 902}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": null}, "resource": {"id": 316, "owner": {"id": 96}, "assignee": {"id": 586}, "organization": {"id": 633}, "project": {"owner": {"id": 779}, "assignee": {"id": 861}, "organization": {"id": 923}}}} +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": null}, "resource": {"id": 330, "owner": {"id": 95}, "assignee": {"id": 559}, "organization": {"id": 609}, "project": {"owner": {"id": 764}, "assignee": {"id": 852}, "organization": {"id": 961}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": null}, "resource": {"id": 327, "owner": {"id": 479}, "assignee": {"id": 25}, "organization": {"id": 662}, "project": {"owner": {"id": 779}, "assignee": {"id": 822}, "organization": {"id": 923}}}} +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": null}, "resource": {"id": 355, "owner": {"id": 422}, "assignee": {"id": 60}, "organization": {"id": 636}, "project": {"owner": {"id": 705}, "assignee": {"id": 881}, "organization": {"id": 962}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": null}, "resource": {"id": 336, "owner": {"id": 479}, "assignee": {"id": 31}, "organization": {"id": 624}, "project": {"owner": {"id": 770}, "assignee": {"id": 899}, "organization": {"id": 980}}}} +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": null}, "resource": {"id": 329, "owner": {"id": 403}, "assignee": {"id": 59}, "organization": {"id": 630}, "project": {"owner": {"id": 784}, "assignee": {"id": 829}, "organization": {"id": 964}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": null}, "resource": {"id": 362, "owner": {"id": 473}, "assignee": {"id": 82}, "organization": {"id": 685}, "project": {"owner": {"id": 758}, "assignee": {"id": 845}, "organization": {"id": 986}}}} +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 20, "privilege": "user"}, "organization": null}, "resource": {"id": 355, "owner": {"id": 485}, "assignee": {"id": 20}, "organization": {"id": 628}, "project": {"owner": {"id": 782}, "assignee": {"id": 895}, "organization": {"id": 969}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": null}, "resource": {"id": 329, "owner": {"id": 408}, "assignee": {"id": 67}, "organization": {"id": 641}, "project": {"owner": {"id": 725}, "assignee": {"id": 847}, "organization": {"id": 944}}}} +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": null}, "resource": {"id": 300, "owner": {"id": 497}, "assignee": {"id": 8}, "organization": {"id": 638}, "project": {"owner": {"id": 743}, "assignee": {"id": 883}, "organization": {"id": 990}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": null}, "resource": {"id": 370, "owner": {"id": 471}, "assignee": {"id": 23}, "organization": {"id": 649}, "project": {"owner": {"id": 736}, "assignee": {"id": 806}, "organization": {"id": 992}}}} +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": null}, "resource": {"id": 322, "owner": {"id": 451}, "assignee": {"id": 28}, "organization": {"id": 642}, "project": {"owner": {"id": 748}, "assignee": {"id": 888}, "organization": {"id": 947}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": null}, "resource": {"id": 336, "owner": {"id": 480}, "assignee": {"id": 597}, "organization": {"id": 667}, "project": {"owner": {"id": 799}, "assignee": {"id": 862}, "organization": {"id": 928}}}} +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 71, "privilege": "admin"}, "organization": null}, "resource": {"id": 303, "owner": {"id": 431}, "assignee": {"id": 576}, "organization": {"id": 621}, "project": {"owner": {"id": 797}, "assignee": {"id": 860}, "organization": {"id": 955}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": null}, "resource": {"id": 349, "owner": {"id": 458}, "assignee": {"id": 588}, "organization": {"id": 651}, "project": {"owner": {"id": 719}, "assignee": {"id": 853}, "organization": {"id": 962}}}} +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": null}, "resource": {"id": 342, "owner": {"id": 462}, "assignee": {"id": 530}, "organization": {"id": 609}, "project": {"owner": {"id": 751}, "assignee": {"id": 844}, "organization": {"id": 995}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": null}, "resource": {"id": 370, "owner": {"id": 435}, "assignee": {"id": 533}, "organization": {"id": 608}, "project": {"owner": {"id": 784}, "assignee": {"id": 881}, "organization": {"id": 928}}}} +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": null}, "resource": {"id": 356, "owner": {"id": 490}, "assignee": {"id": 575}, "organization": {"id": 639}, "project": {"owner": {"id": 738}, "assignee": {"id": 853}, "organization": {"id": 924}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": null}, "resource": {"id": 386, "owner": {"id": 473}, "assignee": {"id": 530}, "organization": {"id": 606}, "project": {"owner": {"id": 756}, "assignee": {"id": 825}, "organization": {"id": 956}}}} +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": null}, "resource": {"id": 386, "owner": {"id": 426}, "assignee": {"id": 578}, "organization": {"id": 634}, "project": {"owner": {"id": 757}, "assignee": {"id": 853}, "organization": {"id": 995}}}} } -test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": null}, "resource": {"id": 366, "owner": {"id": 482}, "assignee": {"id": 594}, "organization": {"id": 695}, "project": {"owner": {"id": 766}, "assignee": {"id": 890}, "organization": {"id": 966}}}} +test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": null}, "resource": {"id": 360, "owner": {"id": 426}, "assignee": {"id": 584}, "organization": {"id": 656}, "project": {"owner": {"id": 764}, "assignee": {"id": 802}, "organization": {"id": 959}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 163, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 333, "owner": {"id": 415}, "assignee": {"id": 556}, "organization": {"id": 163}, "project": {"owner": {"id": 27}, "assignee": {"id": 861}, "organization": {"id": 969}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"id": 316, "owner": {"id": 439}, "assignee": {"id": 531}, "organization": {"id": 147}, "project": {"owner": {"id": 31}, "assignee": {"id": 862}, "organization": {"id": 979}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 409}, "assignee": {"id": 542}, "organization": {"id": 674}, "project": {"owner": {"id": 44}, "assignee": {"id": 818}, "organization": {"id": 992}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 487}, "assignee": {"id": 579}, "organization": {"id": 650}, "project": {"owner": {"id": 83}, "assignee": {"id": 889}, "organization": {"id": 987}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 81, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"id": 334, "owner": {"id": 495}, "assignee": {"id": 558}, "organization": {"id": 159}, "project": {"owner": {"id": 81}, "assignee": {"id": 804}, "organization": {"id": 962}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 399, "owner": {"id": 440}, "assignee": {"id": 548}, "organization": {"id": 104}, "project": {"owner": {"id": 38}, "assignee": {"id": 802}, "organization": {"id": 900}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 455}, "assignee": {"id": 509}, "organization": {"id": 686}, "project": {"owner": {"id": 49}, "assignee": {"id": 847}, "organization": {"id": 908}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 362, "owner": {"id": 454}, "assignee": {"id": 515}, "organization": {"id": 620}, "project": {"owner": {"id": 22}, "assignee": {"id": 865}, "organization": {"id": 910}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"id": 362, "owner": {"id": 496}, "assignee": {"id": 551}, "organization": {"id": 148}, "project": {"owner": {"id": 53}, "assignee": {"id": 860}, "organization": {"id": 986}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 363, "owner": {"id": 415}, "assignee": {"id": 547}, "organization": {"id": 133}, "project": {"owner": {"id": 46}, "assignee": {"id": 874}, "organization": {"id": 975}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 172, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 482}, "assignee": {"id": 507}, "organization": {"id": 696}, "project": {"owner": {"id": 20}, "assignee": {"id": 890}, "organization": {"id": 957}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 117, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 356, "owner": {"id": 491}, "assignee": {"id": 564}, "organization": {"id": 694}, "project": {"owner": {"id": 44}, "assignee": {"id": 849}, "organization": {"id": 963}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"id": 366, "owner": {"id": 479}, "assignee": {"id": 546}, "organization": {"id": 157}, "project": {"owner": {"id": 34}, "assignee": {"id": 867}, "organization": {"id": 943}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 388, "owner": {"id": 430}, "assignee": {"id": 599}, "organization": {"id": 174}, "project": {"owner": {"id": 44}, "assignee": {"id": 850}, "organization": {"id": 949}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 452}, "assignee": {"id": 514}, "organization": {"id": 682}, "project": {"owner": {"id": 21}, "assignee": {"id": 893}, "organization": {"id": 994}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"id": 390, "owner": {"id": 433}, "assignee": {"id": 562}, "organization": {"id": 651}, "project": {"owner": {"id": 90}, "assignee": {"id": 815}, "organization": {"id": 991}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 326, "owner": {"id": 421}, "assignee": {"id": 576}, "organization": {"id": 120}, "project": {"owner": {"id": 60}, "assignee": {"id": 835}, "organization": {"id": 989}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 123, "owner": {"id": 214}, "user": {"role": null}}}, "resource": {"id": 328, "owner": {"id": 473}, "assignee": {"id": 545}, "organization": {"id": 123}, "project": {"owner": {"id": 63}, "assignee": {"id": 819}, "organization": {"id": 920}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"id": 396, "owner": {"id": 466}, "assignee": {"id": 577}, "organization": {"id": 667}, "project": {"owner": {"id": 69}, "assignee": {"id": 897}, "organization": {"id": 950}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 422}, "assignee": {"id": 586}, "organization": {"id": 676}, "project": {"owner": {"id": 48}, "assignee": {"id": 855}, "organization": {"id": 983}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 72}, "user": {"role": "owner"}}}, "resource": {"id": 328, "owner": {"id": 481}, "assignee": {"id": 569}, "organization": {"id": 158}, "project": {"owner": {"id": 72}, "assignee": {"id": 898}, "organization": {"id": 928}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 367, "owner": {"id": 473}, "assignee": {"id": 526}, "organization": {"id": 180}, "project": {"owner": {"id": 53}, "assignee": {"id": 816}, "organization": {"id": 928}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 375, "owner": {"id": 481}, "assignee": {"id": 579}, "organization": {"id": 667}, "project": {"owner": {"id": 99}, "assignee": {"id": 858}, "organization": {"id": 993}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 428}, "assignee": {"id": 596}, "organization": {"id": 673}, "project": {"owner": {"id": 37}, "assignee": {"id": 860}, "organization": {"id": 965}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"id": 330, "owner": {"id": 491}, "assignee": {"id": 580}, "organization": {"id": 112}, "project": {"owner": {"id": 31}, "assignee": {"id": 836}, "organization": {"id": 974}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 189, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 427}, "assignee": {"id": 536}, "organization": {"id": 189}, "project": {"owner": {"id": 26}, "assignee": {"id": 877}, "organization": {"id": 985}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 166, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 318, "owner": {"id": 436}, "assignee": {"id": 559}, "organization": {"id": 655}, "project": {"owner": {"id": 34}, "assignee": {"id": 866}, "organization": {"id": 946}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 397, "owner": {"id": 418}, "assignee": {"id": 598}, "organization": {"id": 626}, "project": {"owner": {"id": 80}, "assignee": {"id": 880}, "organization": {"id": 961}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"id": 366, "owner": {"id": 491}, "assignee": {"id": 582}, "organization": {"id": 172}, "project": {"owner": {"id": 59}, "assignee": {"id": 800}, "organization": {"id": 916}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 446}, "assignee": {"id": 594}, "organization": {"id": 104}, "project": {"owner": {"id": 20}, "assignee": {"id": 896}, "organization": {"id": 990}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 319, "owner": {"id": 417}, "assignee": {"id": 508}, "organization": {"id": 657}, "project": {"owner": {"id": 73}, "assignee": {"id": 870}, "organization": {"id": 987}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 410}, "assignee": {"id": 560}, "organization": {"id": 636}, "project": {"owner": {"id": 75}, "assignee": {"id": 869}, "organization": {"id": 935}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 332, "owner": {"id": 426}, "assignee": {"id": 593}, "organization": {"id": 177}, "project": {"owner": {"id": 46}, "assignee": {"id": 876}, "organization": {"id": 959}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 370, "owner": {"id": 430}, "assignee": {"id": 585}, "organization": {"id": 165}, "project": {"owner": {"id": 6}, "assignee": {"id": 885}, "organization": {"id": 993}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 357, "owner": {"id": 474}, "assignee": {"id": 560}, "organization": {"id": 666}, "project": {"owner": {"id": 90}, "assignee": {"id": 822}, "organization": {"id": 994}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 338, "owner": {"id": 450}, "assignee": {"id": 534}, "organization": {"id": 609}, "project": {"owner": {"id": 63}, "assignee": {"id": 824}, "organization": {"id": 980}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 425}, "assignee": {"id": 523}, "organization": {"id": 118}, "project": {"owner": {"id": 39}, "assignee": {"id": 850}, "organization": {"id": 918}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 365, "owner": {"id": 458}, "assignee": {"id": 516}, "organization": {"id": 142}, "project": {"owner": {"id": 28}, "assignee": {"id": 811}, "organization": {"id": 949}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 465}, "assignee": {"id": 585}, "organization": {"id": 633}, "project": {"owner": {"id": 36}, "assignee": {"id": 884}, "organization": {"id": 935}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": {"id": 189, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 394, "owner": {"id": 452}, "assignee": {"id": 555}, "organization": {"id": 674}, "project": {"owner": {"id": 81}, "assignee": {"id": 844}, "organization": {"id": 966}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 128, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 459}, "assignee": {"id": 540}, "organization": {"id": 128}, "project": {"owner": {"id": 34}, "assignee": {"id": 839}, "organization": {"id": 920}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 433}, "assignee": {"id": 562}, "organization": {"id": 169}, "project": {"owner": {"id": 29}, "assignee": {"id": 800}, "organization": {"id": 977}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 382, "owner": {"id": 401}, "assignee": {"id": 587}, "organization": {"id": 666}, "project": {"owner": {"id": 73}, "assignee": {"id": 824}, "organization": {"id": 986}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 387, "owner": {"id": 492}, "assignee": {"id": 521}, "organization": {"id": 610}, "project": {"owner": {"id": 40}, "assignee": {"id": 833}, "organization": {"id": 902}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 432}, "assignee": {"id": 522}, "organization": {"id": 160}, "project": {"owner": {"id": 36}, "assignee": {"id": 866}, "organization": {"id": 992}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 14, "privilege": "user"}, "organization": {"id": 154, "owner": {"id": 255}, "user": {"role": "maintainer"}}}, "resource": {"id": 388, "owner": {"id": 408}, "assignee": {"id": 587}, "organization": {"id": 154}, "project": {"owner": {"id": 14}, "assignee": {"id": 863}, "organization": {"id": 990}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"id": 396, "owner": {"id": 492}, "assignee": {"id": 534}, "organization": {"id": 682}, "project": {"owner": {"id": 94}, "assignee": {"id": 860}, "organization": {"id": 998}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 420}, "assignee": {"id": 519}, "organization": {"id": 650}, "project": {"owner": {"id": 39}, "assignee": {"id": 826}, "organization": {"id": 912}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 294}, "user": {"role": "supervisor"}}}, "resource": {"id": 390, "owner": {"id": 406}, "assignee": {"id": 528}, "organization": {"id": 135}, "project": {"owner": {"id": 0}, "assignee": {"id": 862}, "organization": {"id": 980}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 462}, "assignee": {"id": 532}, "organization": {"id": 186}, "project": {"owner": {"id": 52}, "assignee": {"id": 829}, "organization": {"id": 985}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 458}, "assignee": {"id": 566}, "organization": {"id": 619}, "project": {"owner": {"id": 0}, "assignee": {"id": 898}, "organization": {"id": 958}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": {"id": 174, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 369, "owner": {"id": 407}, "assignee": {"id": 519}, "organization": {"id": 660}, "project": {"owner": {"id": 82}, "assignee": {"id": 892}, "organization": {"id": 980}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 172, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 336, "owner": {"id": 408}, "assignee": {"id": 581}, "organization": {"id": 172}, "project": {"owner": {"id": 28}, "assignee": {"id": 809}, "organization": {"id": 919}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 11, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 228}, "user": {"role": "worker"}}}, "resource": {"id": 381, "owner": {"id": 487}, "assignee": {"id": 545}, "organization": {"id": 111}, "project": {"owner": {"id": 11}, "assignee": {"id": 858}, "organization": {"id": 996}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 468}, "assignee": {"id": 566}, "organization": {"id": 653}, "project": {"owner": {"id": 50}, "assignee": {"id": 895}, "organization": {"id": 991}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 403}, "assignee": {"id": 509}, "organization": {"id": 620}, "project": {"owner": {"id": 59}, "assignee": {"id": 805}, "organization": {"id": 951}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 387, "owner": {"id": 426}, "assignee": {"id": 523}, "organization": {"id": 133}, "project": {"owner": {"id": 72}, "assignee": {"id": 878}, "organization": {"id": 925}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 381, "owner": {"id": 490}, "assignee": {"id": 560}, "organization": {"id": 115}, "project": {"owner": {"id": 75}, "assignee": {"id": 858}, "organization": {"id": 991}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 165, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 319, "owner": {"id": 450}, "assignee": {"id": 576}, "organization": {"id": 620}, "project": {"owner": {"id": 19}, "assignee": {"id": 848}, "organization": {"id": 944}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 435}, "assignee": {"id": 563}, "organization": {"id": 619}, "project": {"owner": {"id": 76}, "assignee": {"id": 895}, "organization": {"id": 998}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 45}, "user": {"role": "owner"}}}, "resource": {"id": 376, "owner": {"id": 409}, "assignee": {"id": 517}, "organization": {"id": 182}, "project": {"owner": {"id": 45}, "assignee": {"id": 821}, "organization": {"id": 905}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 381, "owner": {"id": 489}, "assignee": {"id": 567}, "organization": {"id": 171}, "project": {"owner": {"id": 62}, "assignee": {"id": 827}, "organization": {"id": 943}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 373, "owner": {"id": 420}, "assignee": {"id": 519}, "organization": {"id": 650}, "project": {"owner": {"id": 41}, "assignee": {"id": 820}, "organization": {"id": 975}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"id": 381, "owner": {"id": 428}, "assignee": {"id": 590}, "organization": {"id": 622}, "project": {"owner": {"id": 5}, "assignee": {"id": 887}, "organization": {"id": 953}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 420}, "assignee": {"id": 554}, "organization": {"id": 197}, "project": {"owner": {"id": 9}, "assignee": {"id": 853}, "organization": {"id": 915}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 482}, "assignee": {"id": 501}, "organization": {"id": 111}, "project": {"owner": {"id": 0}, "assignee": {"id": 818}, "organization": {"id": 904}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 418}, "assignee": {"id": 593}, "organization": {"id": 670}, "project": {"owner": {"id": 84}, "assignee": {"id": 842}, "organization": {"id": 969}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 461}, "assignee": {"id": 580}, "organization": {"id": 640}, "project": {"owner": {"id": 41}, "assignee": {"id": 893}, "organization": {"id": 985}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 51, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"id": 364, "owner": {"id": 454}, "assignee": {"id": 576}, "organization": {"id": 123}, "project": {"owner": {"id": 51}, "assignee": {"id": 895}, "organization": {"id": 956}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 107, "owner": {"id": 210}, "user": {"role": "supervisor"}}}, "resource": {"id": 366, "owner": {"id": 419}, "assignee": {"id": 572}, "organization": {"id": 107}, "project": {"owner": {"id": 17}, "assignee": {"id": 846}, "organization": {"id": 921}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 454}, "assignee": {"id": 575}, "organization": {"id": 633}, "project": {"owner": {"id": 8}, "assignee": {"id": 825}, "organization": {"id": 918}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 339, "owner": {"id": 445}, "assignee": {"id": 597}, "organization": {"id": 612}, "project": {"owner": {"id": 32}, "assignee": {"id": 806}, "organization": {"id": 965}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 100, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 475}, "assignee": {"id": 522}, "organization": {"id": 100}, "project": {"owner": {"id": 90}, "assignee": {"id": 846}, "organization": {"id": 984}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 262}, "user": {"role": "worker"}}}, "resource": {"id": 343, "owner": {"id": 400}, "assignee": {"id": 574}, "organization": {"id": 130}, "project": {"owner": {"id": 7}, "assignee": {"id": 855}, "organization": {"id": 961}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"id": 330, "owner": {"id": 465}, "assignee": {"id": 589}, "organization": {"id": 659}, "project": {"owner": {"id": 15}, "assignee": {"id": 810}, "organization": {"id": 936}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 141, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 414}, "assignee": {"id": 547}, "organization": {"id": 683}, "project": {"owner": {"id": 95}, "assignee": {"id": 844}, "organization": {"id": 962}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 224}, "user": {"role": null}}}, "resource": {"id": 328, "owner": {"id": 434}, "assignee": {"id": 591}, "organization": {"id": 116}, "project": {"owner": {"id": 99}, "assignee": {"id": 857}, "organization": {"id": 922}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 399, "owner": {"id": 496}, "assignee": {"id": 537}, "organization": {"id": 144}, "project": {"owner": {"id": 78}, "assignee": {"id": 825}, "organization": {"id": 986}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 366, "owner": {"id": 450}, "assignee": {"id": 510}, "organization": {"id": 624}, "project": {"owner": {"id": 98}, "assignee": {"id": 895}, "organization": {"id": 979}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 243}, "user": {"role": null}}}, "resource": {"id": 360, "owner": {"id": 440}, "assignee": {"id": 515}, "organization": {"id": 678}, "project": {"owner": {"id": 10}, "assignee": {"id": 895}, "organization": {"id": 991}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 327, "owner": {"id": 402}, "assignee": {"id": 597}, "organization": {"id": 145}, "project": {"owner": {"id": 63}, "assignee": {"id": 808}, "organization": {"id": 984}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 488}, "assignee": {"id": 510}, "organization": {"id": 139}, "project": {"owner": {"id": 25}, "assignee": {"id": 870}, "organization": {"id": 904}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 190, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"id": 309, "owner": {"id": 453}, "assignee": {"id": 596}, "organization": {"id": 655}, "project": {"owner": {"id": 68}, "assignee": {"id": 809}, "organization": {"id": 918}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"id": 349, "owner": {"id": 420}, "assignee": {"id": 511}, "organization": {"id": 649}, "project": {"owner": {"id": 36}, "assignee": {"id": 817}, "organization": {"id": 966}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 399, "owner": {"id": 472}, "assignee": {"id": 564}, "organization": {"id": 102}, "project": {"owner": {"id": 19}, "assignee": {"id": 804}, "organization": {"id": 985}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 390, "owner": {"id": 437}, "assignee": {"id": 570}, "organization": {"id": 146}, "project": {"owner": {"id": 67}, "assignee": {"id": 859}, "organization": {"id": 921}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 486}, "assignee": {"id": 519}, "organization": {"id": 674}, "project": {"owner": {"id": 37}, "assignee": {"id": 869}, "organization": {"id": 913}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 304, "owner": {"id": 402}, "assignee": {"id": 522}, "organization": {"id": 692}, "project": {"owner": {"id": 52}, "assignee": {"id": 839}, "organization": {"id": 915}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 132, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 321, "owner": {"id": 439}, "assignee": {"id": 553}, "organization": {"id": 132}, "project": {"owner": {"id": 91}, "assignee": {"id": 870}, "organization": {"id": 953}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 277}, "user": {"role": "supervisor"}}}, "resource": {"id": 354, "owner": {"id": 477}, "assignee": {"id": 561}, "organization": {"id": 140}, "project": {"owner": {"id": 43}, "assignee": {"id": 879}, "organization": {"id": 995}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 321, "owner": {"id": 494}, "assignee": {"id": 595}, "organization": {"id": 645}, "project": {"owner": {"id": 60}, "assignee": {"id": 828}, "organization": {"id": 934}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"id": 343, "owner": {"id": 489}, "assignee": {"id": 522}, "organization": {"id": 629}, "project": {"owner": {"id": 27}, "assignee": {"id": 862}, "organization": {"id": 908}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 422}, "assignee": {"id": 564}, "organization": {"id": 108}, "project": {"owner": {"id": 2}, "assignee": {"id": 862}, "organization": {"id": 929}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"id": 300, "owner": {"id": 492}, "assignee": {"id": 571}, "organization": {"id": 131}, "project": {"owner": {"id": 39}, "assignee": {"id": 816}, "organization": {"id": 963}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 491}, "assignee": {"id": 582}, "organization": {"id": 696}, "project": {"owner": {"id": 90}, "assignee": {"id": 826}, "organization": {"id": 990}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 250}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 405}, "assignee": {"id": 510}, "organization": {"id": 671}, "project": {"owner": {"id": 26}, "assignee": {"id": 856}, "organization": {"id": 930}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 149, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"id": 362, "owner": {"id": 418}, "assignee": {"id": 508}, "organization": {"id": 149}, "project": {"owner": {"id": 37}, "assignee": {"id": 870}, "organization": {"id": 968}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 404}, "assignee": {"id": 597}, "organization": {"id": 126}, "project": {"owner": {"id": 24}, "assignee": {"id": 896}, "organization": {"id": 975}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"id": 347, "owner": {"id": 418}, "assignee": {"id": 560}, "organization": {"id": 682}, "project": {"owner": {"id": 60}, "assignee": {"id": 822}, "organization": {"id": 935}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 325, "owner": {"id": 473}, "assignee": {"id": 548}, "organization": {"id": 608}, "project": {"owner": {"id": 94}, "assignee": {"id": 866}, "organization": {"id": 990}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 347, "owner": {"id": 411}, "assignee": {"id": 514}, "organization": {"id": 166}, "project": {"owner": {"id": 793}, "assignee": {"id": 97}, "organization": {"id": 928}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"id": 391, "owner": {"id": 436}, "assignee": {"id": 554}, "organization": {"id": 182}, "project": {"owner": {"id": 793}, "assignee": {"id": 2}, "organization": {"id": 931}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 101, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 374, "owner": {"id": 455}, "assignee": {"id": 549}, "organization": {"id": 666}, "project": {"owner": {"id": 737}, "assignee": {"id": 53}, "organization": {"id": 943}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 117, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 440}, "assignee": {"id": 596}, "organization": {"id": 653}, "project": {"owner": {"id": 779}, "assignee": {"id": 57}, "organization": {"id": 904}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 499}, "assignee": {"id": 585}, "organization": {"id": 155}, "project": {"owner": {"id": 700}, "assignee": {"id": 6}, "organization": {"id": 941}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 498}, "assignee": {"id": 520}, "organization": {"id": 141}, "project": {"owner": {"id": 778}, "assignee": {"id": 74}, "organization": {"id": 951}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 484}, "assignee": {"id": 579}, "organization": {"id": 680}, "project": {"owner": {"id": 788}, "assignee": {"id": 5}, "organization": {"id": 999}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 412}, "assignee": {"id": 519}, "organization": {"id": 625}, "project": {"owner": {"id": 710}, "assignee": {"id": 2}, "organization": {"id": 976}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 353, "owner": {"id": 484}, "assignee": {"id": 544}, "organization": {"id": 133}, "project": {"owner": {"id": 728}, "assignee": {"id": 97}, "organization": {"id": 984}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 379, "owner": {"id": 427}, "assignee": {"id": 548}, "organization": {"id": 179}, "project": {"owner": {"id": 755}, "assignee": {"id": 41}, "organization": {"id": 963}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 117, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 372, "owner": {"id": 453}, "assignee": {"id": 512}, "organization": {"id": 664}, "project": {"owner": {"id": 748}, "assignee": {"id": 63}, "organization": {"id": 962}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 216}, "user": {"role": "supervisor"}}}, "resource": {"id": 314, "owner": {"id": 431}, "assignee": {"id": 562}, "organization": {"id": 674}, "project": {"owner": {"id": 733}, "assignee": {"id": 93}, "organization": {"id": 925}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"id": 351, "owner": {"id": 468}, "assignee": {"id": 538}, "organization": {"id": 157}, "project": {"owner": {"id": 719}, "assignee": {"id": 12}, "organization": {"id": 912}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 426}, "assignee": {"id": 501}, "organization": {"id": 164}, "project": {"owner": {"id": 798}, "assignee": {"id": 92}, "organization": {"id": 988}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 258}, "user": {"role": "worker"}}}, "resource": {"id": 314, "owner": {"id": 436}, "assignee": {"id": 535}, "organization": {"id": 675}, "project": {"owner": {"id": 790}, "assignee": {"id": 67}, "organization": {"id": 909}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 189, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"id": 310, "owner": {"id": 437}, "assignee": {"id": 547}, "organization": {"id": 643}, "project": {"owner": {"id": 752}, "assignee": {"id": 18}, "organization": {"id": 935}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 439}, "assignee": {"id": 589}, "organization": {"id": 126}, "project": {"owner": {"id": 769}, "assignee": {"id": 5}, "organization": {"id": 991}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 160, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"id": 367, "owner": {"id": 431}, "assignee": {"id": 573}, "organization": {"id": 160}, "project": {"owner": {"id": 702}, "assignee": {"id": 22}, "organization": {"id": 945}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 414}, "assignee": {"id": 517}, "organization": {"id": 666}, "project": {"owner": {"id": 711}, "assignee": {"id": 41}, "organization": {"id": 992}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 116, "owner": {"id": 254}, "user": {"role": null}}}, "resource": {"id": 355, "owner": {"id": 469}, "assignee": {"id": 572}, "organization": {"id": 684}, "project": {"owner": {"id": 739}, "assignee": {"id": 52}, "organization": {"id": 997}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 479}, "assignee": {"id": 551}, "organization": {"id": 107}, "project": {"owner": {"id": 753}, "assignee": {"id": 11}, "organization": {"id": 940}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"id": 320, "owner": {"id": 483}, "assignee": {"id": 502}, "organization": {"id": 192}, "project": {"owner": {"id": 747}, "assignee": {"id": 17}, "organization": {"id": 989}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 127, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 413}, "assignee": {"id": 578}, "organization": {"id": 617}, "project": {"owner": {"id": 702}, "assignee": {"id": 18}, "organization": {"id": 924}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 20}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 466}, "assignee": {"id": 580}, "organization": {"id": 646}, "project": {"owner": {"id": 714}, "assignee": {"id": 20}, "organization": {"id": 948}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 447}, "assignee": {"id": 502}, "organization": {"id": 104}, "project": {"owner": {"id": 736}, "assignee": {"id": 7}, "organization": {"id": 967}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 205}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 495}, "assignee": {"id": 529}, "organization": {"id": 157}, "project": {"owner": {"id": 787}, "assignee": {"id": 11}, "organization": {"id": 922}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"id": 373, "owner": {"id": 494}, "assignee": {"id": 594}, "organization": {"id": 679}, "project": {"owner": {"id": 721}, "assignee": {"id": 57}, "organization": {"id": 927}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 454}, "assignee": {"id": 532}, "organization": {"id": 651}, "project": {"owner": {"id": 775}, "assignee": {"id": 56}, "organization": {"id": 988}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 421}, "assignee": {"id": 552}, "organization": {"id": 188}, "project": {"owner": {"id": 703}, "assignee": {"id": 63}, "organization": {"id": 985}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 139, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"id": 330, "owner": {"id": 458}, "assignee": {"id": 518}, "organization": {"id": 139}, "project": {"owner": {"id": 744}, "assignee": {"id": 52}, "organization": {"id": 987}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"id": 369, "owner": {"id": 424}, "assignee": {"id": 522}, "organization": {"id": 607}, "project": {"owner": {"id": 731}, "assignee": {"id": 14}, "organization": {"id": 924}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"id": 354, "owner": {"id": 430}, "assignee": {"id": 551}, "organization": {"id": 650}, "project": {"owner": {"id": 702}, "assignee": {"id": 2}, "organization": {"id": 985}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 446}, "assignee": {"id": 502}, "organization": {"id": 182}, "project": {"owner": {"id": 707}, "assignee": {"id": 84}, "organization": {"id": 980}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 428}, "assignee": {"id": 507}, "organization": {"id": 187}, "project": {"owner": {"id": 755}, "assignee": {"id": 5}, "organization": {"id": 948}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 458}, "assignee": {"id": 537}, "organization": {"id": 618}, "project": {"owner": {"id": 794}, "assignee": {"id": 59}, "organization": {"id": 904}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 423}, "assignee": {"id": 568}, "organization": {"id": 629}, "project": {"owner": {"id": 733}, "assignee": {"id": 95}, "organization": {"id": 928}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 342, "owner": {"id": 483}, "assignee": {"id": 589}, "organization": {"id": 103}, "project": {"owner": {"id": 740}, "assignee": {"id": 78}, "organization": {"id": 976}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 439}, "assignee": {"id": 593}, "organization": {"id": 168}, "project": {"owner": {"id": 773}, "assignee": {"id": 47}, "organization": {"id": 980}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 224}, "user": {"role": null}}}, "resource": {"id": 397, "owner": {"id": 430}, "assignee": {"id": 559}, "organization": {"id": 654}, "project": {"owner": {"id": 737}, "assignee": {"id": 60}, "organization": {"id": 914}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 302, "owner": {"id": 476}, "assignee": {"id": 517}, "organization": {"id": 641}, "project": {"owner": {"id": 768}, "assignee": {"id": 15}, "organization": {"id": 955}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 445}, "assignee": {"id": 535}, "organization": {"id": 179}, "project": {"owner": {"id": 777}, "assignee": {"id": 73}, "organization": {"id": 960}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 382, "owner": {"id": 437}, "assignee": {"id": 556}, "organization": {"id": 158}, "project": {"owner": {"id": 784}, "assignee": {"id": 58}, "organization": {"id": 938}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 9, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 373, "owner": {"id": 444}, "assignee": {"id": 504}, "organization": {"id": 676}, "project": {"owner": {"id": 725}, "assignee": {"id": 9}, "organization": {"id": 910}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 318, "owner": {"id": 421}, "assignee": {"id": 546}, "organization": {"id": 606}, "project": {"owner": {"id": 744}, "assignee": {"id": 51}, "organization": {"id": 905}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"id": 397, "owner": {"id": 451}, "assignee": {"id": 575}, "organization": {"id": 199}, "project": {"owner": {"id": 728}, "assignee": {"id": 34}, "organization": {"id": 989}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"id": 382, "owner": {"id": 496}, "assignee": {"id": 581}, "organization": {"id": 121}, "project": {"owner": {"id": 704}, "assignee": {"id": 77}, "organization": {"id": 983}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 451}, "assignee": {"id": 546}, "organization": {"id": 605}, "project": {"owner": {"id": 723}, "assignee": {"id": 38}, "organization": {"id": 985}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"id": 340, "owner": {"id": 444}, "assignee": {"id": 553}, "organization": {"id": 676}, "project": {"owner": {"id": 712}, "assignee": {"id": 52}, "organization": {"id": 913}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 208}, "user": {"role": "supervisor"}}}, "resource": {"id": 395, "owner": {"id": 462}, "assignee": {"id": 559}, "organization": {"id": 103}, "project": {"owner": {"id": 708}, "assignee": {"id": 69}, "organization": {"id": 932}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 361, "owner": {"id": 455}, "assignee": {"id": 505}, "organization": {"id": 159}, "project": {"owner": {"id": 746}, "assignee": {"id": 42}, "organization": {"id": 996}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 414}, "assignee": {"id": 598}, "organization": {"id": 616}, "project": {"owner": {"id": 748}, "assignee": {"id": 65}, "organization": {"id": 991}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 165, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 423}, "assignee": {"id": 504}, "organization": {"id": 699}, "project": {"owner": {"id": 758}, "assignee": {"id": 91}, "organization": {"id": 903}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 447}, "assignee": {"id": 557}, "organization": {"id": 113}, "project": {"owner": {"id": 742}, "assignee": {"id": 19}, "organization": {"id": 996}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 11, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 471}, "assignee": {"id": 537}, "organization": {"id": 133}, "project": {"owner": {"id": 734}, "assignee": {"id": 11}, "organization": {"id": 934}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"id": 325, "owner": {"id": 499}, "assignee": {"id": 554}, "organization": {"id": 680}, "project": {"owner": {"id": 707}, "assignee": {"id": 96}, "organization": {"id": 968}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 193, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"id": 342, "owner": {"id": 460}, "assignee": {"id": 597}, "organization": {"id": 652}, "project": {"owner": {"id": 720}, "assignee": {"id": 76}, "organization": {"id": 961}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 463}, "assignee": {"id": 540}, "organization": {"id": 168}, "project": {"owner": {"id": 770}, "assignee": {"id": 65}, "organization": {"id": 909}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 311, "owner": {"id": 452}, "assignee": {"id": 565}, "organization": {"id": 133}, "project": {"owner": {"id": 724}, "assignee": {"id": 83}, "organization": {"id": 999}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 465}, "assignee": {"id": 551}, "organization": {"id": 624}, "project": {"owner": {"id": 736}, "assignee": {"id": 94}, "organization": {"id": 993}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 239}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 467}, "assignee": {"id": 570}, "organization": {"id": 678}, "project": {"owner": {"id": 754}, "assignee": {"id": 17}, "organization": {"id": 968}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 318, "owner": {"id": 477}, "assignee": {"id": 567}, "organization": {"id": 194}, "project": {"owner": {"id": 733}, "assignee": {"id": 78}, "organization": {"id": 916}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 415}, "assignee": {"id": 568}, "organization": {"id": 139}, "project": {"owner": {"id": 718}, "assignee": {"id": 89}, "organization": {"id": 939}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 480}, "assignee": {"id": 597}, "organization": {"id": 691}, "project": {"owner": {"id": 745}, "assignee": {"id": 37}, "organization": {"id": 942}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 80}, "user": {"role": "owner"}}}, "resource": {"id": 327, "owner": {"id": 401}, "assignee": {"id": 548}, "organization": {"id": 624}, "project": {"owner": {"id": 785}, "assignee": {"id": 80}, "organization": {"id": 960}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"id": 349, "owner": {"id": 476}, "assignee": {"id": 519}, "organization": {"id": 137}, "project": {"owner": {"id": 723}, "assignee": {"id": 35}, "organization": {"id": 919}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 497}, "assignee": {"id": 599}, "organization": {"id": 179}, "project": {"owner": {"id": 715}, "assignee": {"id": 10}, "organization": {"id": 923}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 112, "owner": {"id": 217}, "user": {"role": "maintainer"}}}, "resource": {"id": 389, "owner": {"id": 458}, "assignee": {"id": 512}, "organization": {"id": 686}, "project": {"owner": {"id": 790}, "assignee": {"id": 44}, "organization": {"id": 927}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 340, "owner": {"id": 407}, "assignee": {"id": 542}, "organization": {"id": 686}, "project": {"owner": {"id": 759}, "assignee": {"id": 76}, "organization": {"id": 931}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 248}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 407}, "assignee": {"id": 524}, "organization": {"id": 189}, "project": {"owner": {"id": 756}, "assignee": {"id": 65}, "organization": {"id": 911}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 293}, "user": {"role": "supervisor"}}}, "resource": {"id": 364, "owner": {"id": 490}, "assignee": {"id": 593}, "organization": {"id": 155}, "project": {"owner": {"id": 736}, "assignee": {"id": 66}, "organization": {"id": 948}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 316, "owner": {"id": 491}, "assignee": {"id": 555}, "organization": {"id": 628}, "project": {"owner": {"id": 742}, "assignee": {"id": 64}, "organization": {"id": 962}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 337, "owner": {"id": 432}, "assignee": {"id": 580}, "organization": {"id": 600}, "project": {"owner": {"id": 740}, "assignee": {"id": 63}, "organization": {"id": 968}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 398, "owner": {"id": 444}, "assignee": {"id": 535}, "organization": {"id": 111}, "project": {"owner": {"id": 756}, "assignee": {"id": 8}, "organization": {"id": 931}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 25, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 357, "owner": {"id": 459}, "assignee": {"id": 512}, "organization": {"id": 139}, "project": {"owner": {"id": 735}, "assignee": {"id": 25}, "organization": {"id": 978}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"id": 391, "owner": {"id": 442}, "assignee": {"id": 535}, "organization": {"id": 657}, "project": {"owner": {"id": 767}, "assignee": {"id": 38}, "organization": {"id": 950}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 193, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 338, "owner": {"id": 477}, "assignee": {"id": 531}, "organization": {"id": 663}, "project": {"owner": {"id": 728}, "assignee": {"id": 82}, "organization": {"id": 960}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 360, "owner": {"id": 432}, "assignee": {"id": 589}, "organization": {"id": 138}, "project": {"owner": {"id": 792}, "assignee": {"id": 29}, "organization": {"id": 938}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 373, "owner": {"id": 413}, "assignee": {"id": 555}, "organization": {"id": 161}, "project": {"owner": {"id": 779}, "assignee": {"id": 44}, "organization": {"id": 940}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 393, "owner": {"id": 486}, "assignee": {"id": 509}, "organization": {"id": 639}, "project": {"owner": {"id": 743}, "assignee": {"id": 20}, "organization": {"id": 944}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 459}, "assignee": {"id": 517}, "organization": {"id": 642}, "project": {"owner": {"id": 795}, "assignee": {"id": 24}, "organization": {"id": 978}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 476}, "assignee": {"id": 502}, "organization": {"id": 164}, "project": {"owner": {"id": 723}, "assignee": {"id": 79}, "organization": {"id": 971}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 482}, "assignee": {"id": 518}, "organization": {"id": 130}, "project": {"owner": {"id": 700}, "assignee": {"id": 98}, "organization": {"id": 979}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 64}, "user": {"role": "owner"}}}, "resource": {"id": 315, "owner": {"id": 412}, "assignee": {"id": 583}, "organization": {"id": 625}, "project": {"owner": {"id": 706}, "assignee": {"id": 64}, "organization": {"id": 951}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 461}, "assignee": {"id": 565}, "organization": {"id": 636}, "project": {"owner": {"id": 784}, "assignee": {"id": 55}, "organization": {"id": 991}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 361, "owner": {"id": 444}, "assignee": {"id": 592}, "organization": {"id": 141}, "project": {"owner": {"id": 709}, "assignee": {"id": 49}, "organization": {"id": 924}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 323, "owner": {"id": 432}, "assignee": {"id": 522}, "organization": {"id": 167}, "project": {"owner": {"id": 751}, "assignee": {"id": 9}, "organization": {"id": 996}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": {"id": 154, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 393, "owner": {"id": 446}, "assignee": {"id": 581}, "organization": {"id": 634}, "project": {"owner": {"id": 728}, "assignee": {"id": 90}, "organization": {"id": 951}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 474}, "assignee": {"id": 554}, "organization": {"id": 669}, "project": {"owner": {"id": 750}, "assignee": {"id": 30}, "organization": {"id": 944}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 419}, "assignee": {"id": 530}, "organization": {"id": 171}, "project": {"owner": {"id": 751}, "assignee": {"id": 95}, "organization": {"id": 988}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 107, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"id": 399, "owner": {"id": 435}, "assignee": {"id": 575}, "organization": {"id": 107}, "project": {"owner": {"id": 738}, "assignee": {"id": 5}, "organization": {"id": 918}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 351, "owner": {"id": 446}, "assignee": {"id": 551}, "organization": {"id": 616}, "project": {"owner": {"id": 740}, "assignee": {"id": 88}, "organization": {"id": 907}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 391, "owner": {"id": 478}, "assignee": {"id": 566}, "organization": {"id": 693}, "project": {"owner": {"id": 742}, "assignee": {"id": 1}, "organization": {"id": 900}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 413}, "assignee": {"id": 563}, "organization": {"id": 167}, "project": {"owner": {"id": 794}, "assignee": {"id": 11}, "organization": {"id": 982}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 416}, "assignee": {"id": 522}, "organization": {"id": 119}, "project": {"owner": {"id": 700}, "assignee": {"id": 49}, "organization": {"id": 950}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"id": 361, "owner": {"id": 454}, "assignee": {"id": 508}, "organization": {"id": 641}, "project": {"owner": {"id": 723}, "assignee": {"id": 81}, "organization": {"id": 938}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"id": 305, "owner": {"id": 467}, "assignee": {"id": 574}, "organization": {"id": 667}, "project": {"owner": {"id": 719}, "assignee": {"id": 37}, "organization": {"id": 953}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"id": 369, "owner": {"id": 498}, "assignee": {"id": 530}, "organization": {"id": 192}, "project": {"owner": {"id": 742}, "assignee": {"id": 50}, "organization": {"id": 980}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 429}, "assignee": {"id": 507}, "organization": {"id": 174}, "project": {"owner": {"id": 771}, "assignee": {"id": 31}, "organization": {"id": 905}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 462}, "assignee": {"id": 564}, "organization": {"id": 682}, "project": {"owner": {"id": 716}, "assignee": {"id": 16}, "organization": {"id": 980}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"id": 359, "owner": {"id": 444}, "assignee": {"id": 514}, "organization": {"id": 640}, "project": {"owner": {"id": 762}, "assignee": {"id": 45}, "organization": {"id": 943}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 65}, "assignee": {"id": 555}, "organization": {"id": 165}, "project": {"owner": {"id": 727}, "assignee": {"id": 835}, "organization": {"id": 960}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"id": 393, "owner": {"id": 85}, "assignee": {"id": 552}, "organization": {"id": 122}, "project": {"owner": {"id": 770}, "assignee": {"id": 835}, "organization": {"id": 938}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"id": 387, "owner": {"id": 85}, "assignee": {"id": 529}, "organization": {"id": 626}, "project": {"owner": {"id": 741}, "assignee": {"id": 809}, "organization": {"id": 919}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 80}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 80}, "assignee": {"id": 512}, "organization": {"id": 643}, "project": {"owner": {"id": 757}, "assignee": {"id": 855}, "organization": {"id": 982}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 12}, "assignee": {"id": 583}, "organization": {"id": 150}, "project": {"owner": {"id": 766}, "assignee": {"id": 878}, "organization": {"id": 960}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"id": 362, "owner": {"id": 84}, "assignee": {"id": 522}, "organization": {"id": 143}, "project": {"owner": {"id": 763}, "assignee": {"id": 810}, "organization": {"id": 949}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"id": 373, "owner": {"id": 56}, "assignee": {"id": 599}, "organization": {"id": 600}, "project": {"owner": {"id": 703}, "assignee": {"id": 815}, "organization": {"id": 954}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 46}, "assignee": {"id": 512}, "organization": {"id": 623}, "project": {"owner": {"id": 799}, "assignee": {"id": 819}, "organization": {"id": 933}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"id": 376, "owner": {"id": 78}, "assignee": {"id": 522}, "organization": {"id": 107}, "project": {"owner": {"id": 710}, "assignee": {"id": 894}, "organization": {"id": 953}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 309, "owner": {"id": 59}, "assignee": {"id": 533}, "organization": {"id": 151}, "project": {"owner": {"id": 797}, "assignee": {"id": 836}, "organization": {"id": 924}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 361, "owner": {"id": 93}, "assignee": {"id": 514}, "organization": {"id": 669}, "project": {"owner": {"id": 719}, "assignee": {"id": 848}, "organization": {"id": 949}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 119, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 3}, "assignee": {"id": 538}, "organization": {"id": 630}, "project": {"owner": {"id": 770}, "assignee": {"id": 822}, "organization": {"id": 903}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"id": 372, "owner": {"id": 82}, "assignee": {"id": 541}, "organization": {"id": 191}, "project": {"owner": {"id": 704}, "assignee": {"id": 872}, "organization": {"id": 936}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 5}, "assignee": {"id": 519}, "organization": {"id": 115}, "project": {"owner": {"id": 713}, "assignee": {"id": 810}, "organization": {"id": 906}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 45}, "assignee": {"id": 516}, "organization": {"id": 623}, "project": {"owner": {"id": 789}, "assignee": {"id": 873}, "organization": {"id": 974}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 181, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 73}, "assignee": {"id": 500}, "organization": {"id": 681}, "project": {"owner": {"id": 738}, "assignee": {"id": 866}, "organization": {"id": 910}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 365, "owner": {"id": 63}, "assignee": {"id": 550}, "organization": {"id": 161}, "project": {"owner": {"id": 733}, "assignee": {"id": 894}, "organization": {"id": 999}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 81, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 266}, "user": {"role": null}}}, "resource": {"id": 372, "owner": {"id": 81}, "assignee": {"id": 518}, "organization": {"id": 195}, "project": {"owner": {"id": 795}, "assignee": {"id": 812}, "organization": {"id": 939}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"id": 363, "owner": {"id": 96}, "assignee": {"id": 524}, "organization": {"id": 689}, "project": {"owner": {"id": 798}, "assignee": {"id": 852}, "organization": {"id": 936}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"id": 325, "owner": {"id": 27}, "assignee": {"id": 528}, "organization": {"id": 661}, "project": {"owner": {"id": 746}, "assignee": {"id": 889}, "organization": {"id": 981}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"id": 367, "owner": {"id": 94}, "assignee": {"id": 553}, "organization": {"id": 192}, "project": {"owner": {"id": 743}, "assignee": {"id": 847}, "organization": {"id": 916}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 196, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 13}, "assignee": {"id": 538}, "organization": {"id": 196}, "project": {"owner": {"id": 730}, "assignee": {"id": 814}, "organization": {"id": 907}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"id": 308, "owner": {"id": 68}, "assignee": {"id": 538}, "organization": {"id": 626}, "project": {"owner": {"id": 766}, "assignee": {"id": 836}, "organization": {"id": 938}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 66}, "assignee": {"id": 544}, "organization": {"id": 628}, "project": {"owner": {"id": 755}, "assignee": {"id": 853}, "organization": {"id": 939}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"id": 348, "owner": {"id": 28}, "assignee": {"id": 578}, "organization": {"id": 109}, "project": {"owner": {"id": 743}, "assignee": {"id": 861}, "organization": {"id": 937}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 217}, "user": {"role": "maintainer"}}}, "resource": {"id": 308, "owner": {"id": 99}, "assignee": {"id": 591}, "organization": {"id": 161}, "project": {"owner": {"id": 776}, "assignee": {"id": 819}, "organization": {"id": 996}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 51}, "assignee": {"id": 579}, "organization": {"id": 639}, "project": {"owner": {"id": 753}, "assignee": {"id": 838}, "organization": {"id": 970}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"id": 384, "owner": {"id": 69}, "assignee": {"id": 561}, "organization": {"id": 613}, "project": {"owner": {"id": 702}, "assignee": {"id": 897}, "organization": {"id": 940}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 301, "owner": {"id": 3}, "assignee": {"id": 525}, "organization": {"id": 172}, "project": {"owner": {"id": 713}, "assignee": {"id": 872}, "organization": {"id": 944}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 73}, "assignee": {"id": 585}, "organization": {"id": 109}, "project": {"owner": {"id": 702}, "assignee": {"id": 892}, "organization": {"id": 906}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 294}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 81}, "assignee": {"id": 507}, "organization": {"id": 672}, "project": {"owner": {"id": 753}, "assignee": {"id": 846}, "organization": {"id": 907}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 248}, "user": {"role": "supervisor"}}}, "resource": {"id": 363, "owner": {"id": 17}, "assignee": {"id": 597}, "organization": {"id": 686}, "project": {"owner": {"id": 736}, "assignee": {"id": 866}, "organization": {"id": 981}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"id": 320, "owner": {"id": 94}, "assignee": {"id": 593}, "organization": {"id": 152}, "project": {"owner": {"id": 772}, "assignee": {"id": 868}, "organization": {"id": 975}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 15}, "assignee": {"id": 552}, "organization": {"id": 136}, "project": {"owner": {"id": 724}, "assignee": {"id": 855}, "organization": {"id": 940}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 377, "owner": {"id": 57}, "assignee": {"id": 515}, "organization": {"id": 679}, "project": {"owner": {"id": 790}, "assignee": {"id": 836}, "organization": {"id": 900}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 81}, "assignee": {"id": 574}, "organization": {"id": 683}, "project": {"owner": {"id": 799}, "assignee": {"id": 842}, "organization": {"id": 918}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 271}, "user": {"role": null}}}, "resource": {"id": 319, "owner": {"id": 25}, "assignee": {"id": 548}, "organization": {"id": 170}, "project": {"owner": {"id": 741}, "assignee": {"id": 821}, "organization": {"id": 964}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 159, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 0}, "assignee": {"id": 577}, "organization": {"id": 159}, "project": {"owner": {"id": 760}, "assignee": {"id": 894}, "organization": {"id": 925}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 166, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 98}, "assignee": {"id": 565}, "organization": {"id": 690}, "project": {"owner": {"id": 719}, "assignee": {"id": 823}, "organization": {"id": 940}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 189, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 57}, "assignee": {"id": 517}, "organization": {"id": 684}, "project": {"owner": {"id": 799}, "assignee": {"id": 870}, "organization": {"id": 904}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"id": 333, "owner": {"id": 36}, "assignee": {"id": 562}, "organization": {"id": 187}, "project": {"owner": {"id": 719}, "assignee": {"id": 821}, "organization": {"id": 904}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 51}, "assignee": {"id": 590}, "organization": {"id": 146}, "project": {"owner": {"id": 720}, "assignee": {"id": 843}, "organization": {"id": 961}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"id": 396, "owner": {"id": 83}, "assignee": {"id": 584}, "organization": {"id": 641}, "project": {"owner": {"id": 730}, "assignee": {"id": 814}, "organization": {"id": 981}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 324, "owner": {"id": 39}, "assignee": {"id": 570}, "organization": {"id": 614}, "project": {"owner": {"id": 781}, "assignee": {"id": 801}, "organization": {"id": 966}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 327, "owner": {"id": 44}, "assignee": {"id": 562}, "organization": {"id": 169}, "project": {"owner": {"id": 787}, "assignee": {"id": 858}, "organization": {"id": 949}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 282}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 73}, "assignee": {"id": 503}, "organization": {"id": 156}, "project": {"owner": {"id": 744}, "assignee": {"id": 879}, "organization": {"id": 948}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 42}, "assignee": {"id": 590}, "organization": {"id": 673}, "project": {"owner": {"id": 704}, "assignee": {"id": 855}, "organization": {"id": 940}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 48}, "assignee": {"id": 583}, "organization": {"id": 632}, "project": {"owner": {"id": 719}, "assignee": {"id": 830}, "organization": {"id": 980}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 331, "owner": {"id": 5}, "assignee": {"id": 534}, "organization": {"id": 188}, "project": {"owner": {"id": 786}, "assignee": {"id": 822}, "organization": {"id": 935}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"id": 337, "owner": {"id": 32}, "assignee": {"id": 576}, "organization": {"id": 195}, "project": {"owner": {"id": 778}, "assignee": {"id": 808}, "organization": {"id": 947}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 277}, "user": {"role": "supervisor"}}}, "resource": {"id": 300, "owner": {"id": 50}, "assignee": {"id": 567}, "organization": {"id": 666}, "project": {"owner": {"id": 711}, "assignee": {"id": 818}, "organization": {"id": 913}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 329, "owner": {"id": 55}, "assignee": {"id": 587}, "organization": {"id": 604}, "project": {"owner": {"id": 729}, "assignee": {"id": 809}, "organization": {"id": 903}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 60}, "assignee": {"id": 551}, "organization": {"id": 157}, "project": {"owner": {"id": 778}, "assignee": {"id": 827}, "organization": {"id": 985}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"id": 318, "owner": {"id": 49}, "assignee": {"id": 516}, "organization": {"id": 191}, "project": {"owner": {"id": 711}, "assignee": {"id": 855}, "organization": {"id": 980}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 110, "owner": {"id": 214}, "user": {"role": "worker"}}}, "resource": {"id": 391, "owner": {"id": 94}, "assignee": {"id": 543}, "organization": {"id": 654}, "project": {"owner": {"id": 787}, "assignee": {"id": 885}, "organization": {"id": 986}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 358, "owner": {"id": 74}, "assignee": {"id": 570}, "organization": {"id": 684}, "project": {"owner": {"id": 720}, "assignee": {"id": 846}, "organization": {"id": 962}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 270}, "user": {"role": null}}}, "resource": {"id": 357, "owner": {"id": 32}, "assignee": {"id": 513}, "organization": {"id": 151}, "project": {"owner": {"id": 743}, "assignee": {"id": 857}, "organization": {"id": 950}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 40}, "assignee": {"id": 539}, "organization": {"id": 175}, "project": {"owner": {"id": 718}, "assignee": {"id": 818}, "organization": {"id": 937}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 204}, "user": {"role": null}}}, "resource": {"id": 373, "owner": {"id": 16}, "assignee": {"id": 553}, "organization": {"id": 683}, "project": {"owner": {"id": 720}, "assignee": {"id": 830}, "organization": {"id": 972}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 24}, "assignee": {"id": 537}, "organization": {"id": 608}, "project": {"owner": {"id": 739}, "assignee": {"id": 861}, "organization": {"id": 974}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"id": 330, "owner": {"id": 2}, "assignee": {"id": 593}, "organization": {"id": 118}, "project": {"owner": {"id": 701}, "assignee": {"id": 868}, "organization": {"id": 929}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 77}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 77}, "assignee": {"id": 590}, "organization": {"id": 119}, "project": {"owner": {"id": 773}, "assignee": {"id": 834}, "organization": {"id": 991}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 30, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 30}, "assignee": {"id": 512}, "organization": {"id": 672}, "project": {"owner": {"id": 799}, "assignee": {"id": 819}, "organization": {"id": 911}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 21}, "assignee": {"id": 529}, "organization": {"id": 662}, "project": {"owner": {"id": 747}, "assignee": {"id": 873}, "organization": {"id": 997}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 59}, "assignee": {"id": 586}, "organization": {"id": 131}, "project": {"owner": {"id": 729}, "assignee": {"id": 855}, "organization": {"id": 963}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 47}, "assignee": {"id": 542}, "organization": {"id": 194}, "project": {"owner": {"id": 761}, "assignee": {"id": 849}, "organization": {"id": 966}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 66}, "assignee": {"id": 539}, "organization": {"id": 625}, "project": {"owner": {"id": 738}, "assignee": {"id": 840}, "organization": {"id": 960}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 46}, "assignee": {"id": 565}, "organization": {"id": 662}, "project": {"owner": {"id": 750}, "assignee": {"id": 863}, "organization": {"id": 987}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 399, "owner": {"id": 13}, "assignee": {"id": 538}, "organization": {"id": 159}, "project": {"owner": {"id": 701}, "assignee": {"id": 868}, "organization": {"id": 992}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"id": 337, "owner": {"id": 87}, "assignee": {"id": 514}, "organization": {"id": 177}, "project": {"owner": {"id": 713}, "assignee": {"id": 865}, "organization": {"id": 942}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 362, "owner": {"id": 1}, "assignee": {"id": 571}, "organization": {"id": 635}, "project": {"owner": {"id": 762}, "assignee": {"id": 891}, "organization": {"id": 975}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"id": 345, "owner": {"id": 83}, "assignee": {"id": 552}, "organization": {"id": 659}, "project": {"owner": {"id": 779}, "assignee": {"id": 861}, "organization": {"id": 970}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 217}, "user": {"role": "worker"}}}, "resource": {"id": 331, "owner": {"id": 47}, "assignee": {"id": 547}, "organization": {"id": 140}, "project": {"owner": {"id": 739}, "assignee": {"id": 837}, "organization": {"id": 927}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 382, "owner": {"id": 99}, "assignee": {"id": 502}, "organization": {"id": 140}, "project": {"owner": {"id": 700}, "assignee": {"id": 837}, "organization": {"id": 965}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 322, "owner": {"id": 62}, "assignee": {"id": 592}, "organization": {"id": 602}, "project": {"owner": {"id": 707}, "assignee": {"id": 895}, "organization": {"id": 955}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 99}, "assignee": {"id": 557}, "organization": {"id": 692}, "project": {"owner": {"id": 727}, "assignee": {"id": 887}, "organization": {"id": 931}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"id": 393, "owner": {"id": 9}, "assignee": {"id": 561}, "organization": {"id": 157}, "project": {"owner": {"id": 792}, "assignee": {"id": 838}, "organization": {"id": 902}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 328, "owner": {"id": 76}, "assignee": {"id": 590}, "organization": {"id": 192}, "project": {"owner": {"id": 759}, "assignee": {"id": 887}, "organization": {"id": 944}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 334, "owner": {"id": 50}, "assignee": {"id": 589}, "organization": {"id": 631}, "project": {"owner": {"id": 766}, "assignee": {"id": 821}, "organization": {"id": 948}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 156, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"id": 378, "owner": {"id": 27}, "assignee": {"id": 571}, "organization": {"id": 628}, "project": {"owner": {"id": 786}, "assignee": {"id": 895}, "organization": {"id": 969}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 74}, "assignee": {"id": 572}, "organization": {"id": 111}, "project": {"owner": {"id": 732}, "assignee": {"id": 886}, "organization": {"id": 938}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 96}, "assignee": {"id": 570}, "organization": {"id": 184}, "project": {"owner": {"id": 774}, "assignee": {"id": 863}, "organization": {"id": 958}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 80}, "user": {"role": "owner"}}}, "resource": {"id": 325, "owner": {"id": 80}, "assignee": {"id": 576}, "organization": {"id": 635}, "project": {"owner": {"id": 763}, "assignee": {"id": 846}, "organization": {"id": 932}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 93}, "assignee": {"id": 568}, "organization": {"id": 630}, "project": {"owner": {"id": 749}, "assignee": {"id": 871}, "organization": {"id": 987}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"id": 345, "owner": {"id": 56}, "assignee": {"id": 599}, "organization": {"id": 158}, "project": {"owner": {"id": 758}, "assignee": {"id": 827}, "organization": {"id": 918}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 317, "owner": {"id": 71}, "assignee": {"id": 575}, "organization": {"id": 146}, "project": {"owner": {"id": 766}, "assignee": {"id": 849}, "organization": {"id": 913}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 149, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"id": 367, "owner": {"id": 11}, "assignee": {"id": 511}, "organization": {"id": 676}, "project": {"owner": {"id": 764}, "assignee": {"id": 834}, "organization": {"id": 947}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"id": 356, "owner": {"id": 57}, "assignee": {"id": 563}, "organization": {"id": 688}, "project": {"owner": {"id": 730}, "assignee": {"id": 847}, "organization": {"id": 985}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"id": 309, "owner": {"id": 32}, "assignee": {"id": 558}, "organization": {"id": 109}, "project": {"owner": {"id": 745}, "assignee": {"id": 812}, "organization": {"id": 945}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 216}, "user": {"role": "supervisor"}}}, "resource": {"id": 316, "owner": {"id": 90}, "assignee": {"id": 539}, "organization": {"id": 171}, "project": {"owner": {"id": 757}, "assignee": {"id": 882}, "organization": {"id": 916}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 28}, "assignee": {"id": 585}, "organization": {"id": 623}, "project": {"owner": {"id": 706}, "assignee": {"id": 884}, "organization": {"id": 903}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 327, "owner": {"id": 7}, "assignee": {"id": 591}, "organization": {"id": 604}, "project": {"owner": {"id": 713}, "assignee": {"id": 899}, "organization": {"id": 988}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 71}, "assignee": {"id": 524}, "organization": {"id": 158}, "project": {"owner": {"id": 700}, "assignee": {"id": 818}, "organization": {"id": 953}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 1}, "assignee": {"id": 587}, "organization": {"id": 159}, "project": {"owner": {"id": 742}, "assignee": {"id": 892}, "organization": {"id": 935}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 335, "owner": {"id": 96}, "assignee": {"id": 513}, "organization": {"id": 608}, "project": {"owner": {"id": 713}, "assignee": {"id": 854}, "organization": {"id": 927}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 243}, "user": {"role": "worker"}}}, "resource": {"id": 353, "owner": {"id": 49}, "assignee": {"id": 510}, "organization": {"id": 605}, "project": {"owner": {"id": 752}, "assignee": {"id": 891}, "organization": {"id": 946}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 222}, "user": {"role": null}}}, "resource": {"id": 363, "owner": {"id": 21}, "assignee": {"id": 527}, "organization": {"id": 197}, "project": {"owner": {"id": 766}, "assignee": {"id": 849}, "organization": {"id": 940}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 18}, "assignee": {"id": 521}, "organization": {"id": 155}, "project": {"owner": {"id": 742}, "assignee": {"id": 862}, "organization": {"id": 934}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 378, "owner": {"id": 4}, "assignee": {"id": 527}, "organization": {"id": 621}, "project": {"owner": {"id": 769}, "assignee": {"id": 878}, "organization": {"id": 933}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 75}, "assignee": {"id": 548}, "organization": {"id": 630}, "project": {"owner": {"id": 718}, "assignee": {"id": 846}, "organization": {"id": 936}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 353, "owner": {"id": 476}, "assignee": {"id": 58}, "organization": {"id": 175}, "project": {"owner": {"id": 718}, "assignee": {"id": 897}, "organization": {"id": 989}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 330, "owner": {"id": 410}, "assignee": {"id": 34}, "organization": {"id": 144}, "project": {"owner": {"id": 792}, "assignee": {"id": 853}, "organization": {"id": 941}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 426}, "assignee": {"id": 19}, "organization": {"id": 643}, "project": {"owner": {"id": 777}, "assignee": {"id": 822}, "organization": {"id": 944}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 156, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 478}, "assignee": {"id": 54}, "organization": {"id": 686}, "project": {"owner": {"id": 780}, "assignee": {"id": 810}, "organization": {"id": 908}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 71, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 318, "owner": {"id": 463}, "assignee": {"id": 71}, "organization": {"id": 147}, "project": {"owner": {"id": 718}, "assignee": {"id": 842}, "organization": {"id": 936}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 331, "owner": {"id": 484}, "assignee": {"id": 82}, "organization": {"id": 146}, "project": {"owner": {"id": 705}, "assignee": {"id": 809}, "organization": {"id": 937}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 425}, "assignee": {"id": 33}, "organization": {"id": 601}, "project": {"owner": {"id": 791}, "assignee": {"id": 818}, "organization": {"id": 998}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 217}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 424}, "assignee": {"id": 54}, "organization": {"id": 653}, "project": {"owner": {"id": 786}, "assignee": {"id": 836}, "organization": {"id": 999}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 316, "owner": {"id": 420}, "assignee": {"id": 35}, "organization": {"id": 198}, "project": {"owner": {"id": 701}, "assignee": {"id": 825}, "organization": {"id": 984}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"id": 354, "owner": {"id": 430}, "assignee": {"id": 30}, "organization": {"id": 146}, "project": {"owner": {"id": 745}, "assignee": {"id": 851}, "organization": {"id": 930}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 310, "owner": {"id": 457}, "assignee": {"id": 51}, "organization": {"id": 624}, "project": {"owner": {"id": 744}, "assignee": {"id": 813}, "organization": {"id": 934}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"id": 337, "owner": {"id": 498}, "assignee": {"id": 11}, "organization": {"id": 610}, "project": {"owner": {"id": 788}, "assignee": {"id": 801}, "organization": {"id": 976}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 461}, "assignee": {"id": 67}, "organization": {"id": 178}, "project": {"owner": {"id": 786}, "assignee": {"id": 825}, "organization": {"id": 942}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 283}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 407}, "assignee": {"id": 98}, "organization": {"id": 166}, "project": {"owner": {"id": 733}, "assignee": {"id": 836}, "organization": {"id": 939}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 37, "privilege": "admin"}, "organization": {"id": 137, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"id": 390, "owner": {"id": 461}, "assignee": {"id": 37}, "organization": {"id": 628}, "project": {"owner": {"id": 737}, "assignee": {"id": 857}, "organization": {"id": 996}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 490}, "assignee": {"id": 92}, "organization": {"id": 604}, "project": {"owner": {"id": 709}, "assignee": {"id": 816}, "organization": {"id": 902}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 347, "owner": {"id": 487}, "assignee": {"id": 52}, "organization": {"id": 171}, "project": {"owner": {"id": 788}, "assignee": {"id": 815}, "organization": {"id": 950}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"id": 333, "owner": {"id": 419}, "assignee": {"id": 26}, "organization": {"id": 106}, "project": {"owner": {"id": 748}, "assignee": {"id": 899}, "organization": {"id": 907}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 381, "owner": {"id": 441}, "assignee": {"id": 49}, "organization": {"id": 695}, "project": {"owner": {"id": 723}, "assignee": {"id": 878}, "organization": {"id": 996}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 391, "owner": {"id": 470}, "assignee": {"id": 96}, "organization": {"id": 643}, "project": {"owner": {"id": 728}, "assignee": {"id": 875}, "organization": {"id": 937}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 384, "owner": {"id": 405}, "assignee": {"id": 29}, "organization": {"id": 133}, "project": {"owner": {"id": 702}, "assignee": {"id": 878}, "organization": {"id": 912}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 440}, "assignee": {"id": 9}, "organization": {"id": 195}, "project": {"owner": {"id": 758}, "assignee": {"id": 827}, "organization": {"id": 944}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 300, "owner": {"id": 448}, "assignee": {"id": 27}, "organization": {"id": 664}, "project": {"owner": {"id": 799}, "assignee": {"id": 829}, "organization": {"id": 971}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 467}, "assignee": {"id": 74}, "organization": {"id": 655}, "project": {"owner": {"id": 707}, "assignee": {"id": 859}, "organization": {"id": 921}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 123, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"id": 383, "owner": {"id": 410}, "assignee": {"id": 49}, "organization": {"id": 123}, "project": {"owner": {"id": 771}, "assignee": {"id": 881}, "organization": {"id": 980}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"id": 301, "owner": {"id": 410}, "assignee": {"id": 60}, "organization": {"id": 135}, "project": {"owner": {"id": 723}, "assignee": {"id": 829}, "organization": {"id": 970}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 449}, "assignee": {"id": 94}, "organization": {"id": 622}, "project": {"owner": {"id": 700}, "assignee": {"id": 861}, "organization": {"id": 928}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 358, "owner": {"id": 483}, "assignee": {"id": 17}, "organization": {"id": 639}, "project": {"owner": {"id": 722}, "assignee": {"id": 801}, "organization": {"id": 923}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 265}, "user": {"role": "supervisor"}}}, "resource": {"id": 364, "owner": {"id": 457}, "assignee": {"id": 29}, "organization": {"id": 165}, "project": {"owner": {"id": 772}, "assignee": {"id": 801}, "organization": {"id": 924}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 366, "owner": {"id": 454}, "assignee": {"id": 93}, "organization": {"id": 141}, "project": {"owner": {"id": 729}, "assignee": {"id": 813}, "organization": {"id": 960}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 310, "owner": {"id": 469}, "assignee": {"id": 76}, "organization": {"id": 625}, "project": {"owner": {"id": 743}, "assignee": {"id": 875}, "organization": {"id": 988}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 327, "owner": {"id": 479}, "assignee": {"id": 44}, "organization": {"id": 690}, "project": {"owner": {"id": 738}, "assignee": {"id": 826}, "organization": {"id": 928}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 217}, "user": {"role": "worker"}}}, "resource": {"id": 307, "owner": {"id": 452}, "assignee": {"id": 78}, "organization": {"id": 152}, "project": {"owner": {"id": 761}, "assignee": {"id": 863}, "organization": {"id": 921}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 310, "owner": {"id": 448}, "assignee": {"id": 84}, "organization": {"id": 176}, "project": {"owner": {"id": 779}, "assignee": {"id": 891}, "organization": {"id": 931}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 196, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 490}, "assignee": {"id": 53}, "organization": {"id": 654}, "project": {"owner": {"id": 735}, "assignee": {"id": 857}, "organization": {"id": 922}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 327, "owner": {"id": 452}, "assignee": {"id": 78}, "organization": {"id": 623}, "project": {"owner": {"id": 710}, "assignee": {"id": 895}, "organization": {"id": 954}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"id": 322, "owner": {"id": 481}, "assignee": {"id": 79}, "organization": {"id": 116}, "project": {"owner": {"id": 711}, "assignee": {"id": 810}, "organization": {"id": 906}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 207}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 499}, "assignee": {"id": 35}, "organization": {"id": 144}, "project": {"owner": {"id": 794}, "assignee": {"id": 805}, "organization": {"id": 903}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 226}, "user": {"role": null}}}, "resource": {"id": 388, "owner": {"id": 478}, "assignee": {"id": 35}, "organization": {"id": 648}, "project": {"owner": {"id": 783}, "assignee": {"id": 847}, "organization": {"id": 904}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 437}, "assignee": {"id": 35}, "organization": {"id": 624}, "project": {"owner": {"id": 732}, "assignee": {"id": 825}, "organization": {"id": 953}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 174, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 496}, "assignee": {"id": 84}, "organization": {"id": 174}, "project": {"owner": {"id": 728}, "assignee": {"id": 860}, "organization": {"id": 934}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 405}, "assignee": {"id": 13}, "organization": {"id": 186}, "project": {"owner": {"id": 741}, "assignee": {"id": 897}, "organization": {"id": 914}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"id": 320, "owner": {"id": 434}, "assignee": {"id": 18}, "organization": {"id": 679}, "project": {"owner": {"id": 788}, "assignee": {"id": 839}, "organization": {"id": 925}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"id": 315, "owner": {"id": 440}, "assignee": {"id": 82}, "organization": {"id": 684}, "project": {"owner": {"id": 754}, "assignee": {"id": 837}, "organization": {"id": 951}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 242}, "user": {"role": "maintainer"}}}, "resource": {"id": 329, "owner": {"id": 481}, "assignee": {"id": 21}, "organization": {"id": 169}, "project": {"owner": {"id": 779}, "assignee": {"id": 857}, "organization": {"id": 914}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 444}, "assignee": {"id": 34}, "organization": {"id": 167}, "project": {"owner": {"id": 731}, "assignee": {"id": 843}, "organization": {"id": 901}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 270}, "user": {"role": "maintainer"}}}, "resource": {"id": 361, "owner": {"id": 418}, "assignee": {"id": 51}, "organization": {"id": 679}, "project": {"owner": {"id": 738}, "assignee": {"id": 873}, "organization": {"id": 927}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 409}, "assignee": {"id": 4}, "organization": {"id": 601}, "project": {"owner": {"id": 740}, "assignee": {"id": 814}, "organization": {"id": 960}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 200}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 449}, "assignee": {"id": 52}, "organization": {"id": 140}, "project": {"owner": {"id": 738}, "assignee": {"id": 874}, "organization": {"id": 905}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"id": 322, "owner": {"id": 471}, "assignee": {"id": 31}, "organization": {"id": 115}, "project": {"owner": {"id": 777}, "assignee": {"id": 805}, "organization": {"id": 985}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 433}, "assignee": {"id": 56}, "organization": {"id": 601}, "project": {"owner": {"id": 754}, "assignee": {"id": 856}, "organization": {"id": 905}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 413}, "assignee": {"id": 10}, "organization": {"id": 637}, "project": {"owner": {"id": 798}, "assignee": {"id": 814}, "organization": {"id": 942}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 90, "privilege": "user"}, "organization": {"id": 145, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 378, "owner": {"id": 425}, "assignee": {"id": 90}, "organization": {"id": 145}, "project": {"owner": {"id": 755}, "assignee": {"id": 836}, "organization": {"id": 997}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 407}, "assignee": {"id": 40}, "organization": {"id": 120}, "project": {"owner": {"id": 736}, "assignee": {"id": 860}, "organization": {"id": 983}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 281}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 490}, "assignee": {"id": 89}, "organization": {"id": 609}, "project": {"owner": {"id": 710}, "assignee": {"id": 878}, "organization": {"id": 912}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 415}, "assignee": {"id": 70}, "organization": {"id": 659}, "project": {"owner": {"id": 754}, "assignee": {"id": 870}, "organization": {"id": 928}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 90, "privilege": "user"}, "organization": {"id": 105, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 430}, "assignee": {"id": 90}, "organization": {"id": 105}, "project": {"owner": {"id": 709}, "assignee": {"id": 818}, "organization": {"id": 989}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 443}, "assignee": {"id": 70}, "organization": {"id": 111}, "project": {"owner": {"id": 732}, "assignee": {"id": 842}, "organization": {"id": 981}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 439}, "assignee": {"id": 3}, "organization": {"id": 624}, "project": {"owner": {"id": 711}, "assignee": {"id": 842}, "organization": {"id": 990}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 499}, "assignee": {"id": 62}, "organization": {"id": 673}, "project": {"owner": {"id": 716}, "assignee": {"id": 886}, "organization": {"id": 911}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 434}, "assignee": {"id": 37}, "organization": {"id": 190}, "project": {"owner": {"id": 709}, "assignee": {"id": 889}, "organization": {"id": 965}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"id": 330, "owner": {"id": 446}, "assignee": {"id": 98}, "organization": {"id": 187}, "project": {"owner": {"id": 792}, "assignee": {"id": 807}, "organization": {"id": 975}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 321, "owner": {"id": 410}, "assignee": {"id": 40}, "organization": {"id": 680}, "project": {"owner": {"id": 797}, "assignee": {"id": 801}, "organization": {"id": 938}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 64}, "user": {"role": "owner"}}}, "resource": {"id": 336, "owner": {"id": 416}, "assignee": {"id": 64}, "organization": {"id": 641}, "project": {"owner": {"id": 757}, "assignee": {"id": 828}, "organization": {"id": 951}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 496}, "assignee": {"id": 6}, "organization": {"id": 121}, "project": {"owner": {"id": 794}, "assignee": {"id": 804}, "organization": {"id": 905}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"id": 314, "owner": {"id": 487}, "assignee": {"id": 26}, "organization": {"id": 183}, "project": {"owner": {"id": 704}, "assignee": {"id": 862}, "organization": {"id": 980}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"id": 368, "owner": {"id": 433}, "assignee": {"id": 62}, "organization": {"id": 693}, "project": {"owner": {"id": 713}, "assignee": {"id": 892}, "organization": {"id": 961}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"id": 378, "owner": {"id": 428}, "assignee": {"id": 78}, "organization": {"id": 638}, "project": {"owner": {"id": 711}, "assignee": {"id": 806}, "organization": {"id": 975}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 366, "owner": {"id": 432}, "assignee": {"id": 29}, "organization": {"id": 166}, "project": {"owner": {"id": 708}, "assignee": {"id": 829}, "organization": {"id": 998}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 245}, "user": {"role": "supervisor"}}}, "resource": {"id": 374, "owner": {"id": 462}, "assignee": {"id": 29}, "organization": {"id": 170}, "project": {"owner": {"id": 787}, "assignee": {"id": 807}, "organization": {"id": 905}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"id": 394, "owner": {"id": 426}, "assignee": {"id": 65}, "organization": {"id": 679}, "project": {"owner": {"id": 749}, "assignee": {"id": 806}, "organization": {"id": 905}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 196, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 334, "owner": {"id": 449}, "assignee": {"id": 2}, "organization": {"id": 677}, "project": {"owner": {"id": 739}, "assignee": {"id": 801}, "organization": {"id": 997}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"id": 339, "owner": {"id": 494}, "assignee": {"id": 82}, "organization": {"id": 159}, "project": {"owner": {"id": 729}, "assignee": {"id": 844}, "organization": {"id": 932}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 228}, "user": {"role": "worker"}}}, "resource": {"id": 398, "owner": {"id": 410}, "assignee": {"id": 77}, "organization": {"id": 179}, "project": {"owner": {"id": 780}, "assignee": {"id": 881}, "organization": {"id": 937}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"id": 321, "owner": {"id": 469}, "assignee": {"id": 79}, "organization": {"id": 639}, "project": {"owner": {"id": 798}, "assignee": {"id": 864}, "organization": {"id": 930}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 188, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"id": 325, "owner": {"id": 406}, "assignee": {"id": 64}, "organization": {"id": 659}, "project": {"owner": {"id": 751}, "assignee": {"id": 875}, "organization": {"id": 967}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 386, "owner": {"id": 438}, "assignee": {"id": 10}, "organization": {"id": 116}, "project": {"owner": {"id": 706}, "assignee": {"id": 885}, "organization": {"id": 941}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 481}, "assignee": {"id": 81}, "organization": {"id": 197}, "project": {"owner": {"id": 705}, "assignee": {"id": 817}, "organization": {"id": 984}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 390, "owner": {"id": 461}, "assignee": {"id": 93}, "organization": {"id": 634}, "project": {"owner": {"id": 765}, "assignee": {"id": 887}, "organization": {"id": 941}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 286}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 499}, "assignee": {"id": 16}, "organization": {"id": 681}, "project": {"owner": {"id": 790}, "assignee": {"id": 836}, "organization": {"id": 910}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 336, "owner": {"id": 495}, "assignee": {"id": 70}, "organization": {"id": 103}, "project": {"owner": {"id": 751}, "assignee": {"id": 816}, "organization": {"id": 982}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 437}, "assignee": {"id": 9}, "organization": {"id": 167}, "project": {"owner": {"id": 754}, "assignee": {"id": 819}, "organization": {"id": 924}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 393, "owner": {"id": 417}, "assignee": {"id": 90}, "organization": {"id": 672}, "project": {"owner": {"id": 751}, "assignee": {"id": 853}, "organization": {"id": 987}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 367, "owner": {"id": 431}, "assignee": {"id": 97}, "organization": {"id": 626}, "project": {"owner": {"id": 782}, "assignee": {"id": 834}, "organization": {"id": 912}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 59, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 447}, "assignee": {"id": 59}, "organization": {"id": 169}, "project": {"owner": {"id": 727}, "assignee": {"id": 856}, "organization": {"id": 960}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 190, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 477}, "assignee": {"id": 3}, "organization": {"id": 190}, "project": {"owner": {"id": 716}, "assignee": {"id": 806}, "organization": {"id": 927}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 466}, "assignee": {"id": 42}, "organization": {"id": 652}, "project": {"owner": {"id": 770}, "assignee": {"id": 861}, "organization": {"id": 992}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 412}, "assignee": {"id": 9}, "organization": {"id": 659}, "project": {"owner": {"id": 705}, "assignee": {"id": 808}, "organization": {"id": 936}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 59, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 445}, "assignee": {"id": 59}, "organization": {"id": 122}, "project": {"owner": {"id": 737}, "assignee": {"id": 856}, "organization": {"id": 902}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 472}, "assignee": {"id": 49}, "organization": {"id": 143}, "project": {"owner": {"id": 709}, "assignee": {"id": 814}, "organization": {"id": 936}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"id": 372, "owner": {"id": 412}, "assignee": {"id": 51}, "organization": {"id": 603}, "project": {"owner": {"id": 744}, "assignee": {"id": 865}, "organization": {"id": 926}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"id": 350, "owner": {"id": 408}, "assignee": {"id": 89}, "organization": {"id": 652}, "project": {"owner": {"id": 784}, "assignee": {"id": 829}, "organization": {"id": 969}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 300, "owner": {"id": 462}, "assignee": {"id": 19}, "organization": {"id": 195}, "project": {"owner": {"id": 778}, "assignee": {"id": 816}, "organization": {"id": 912}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 412}, "assignee": {"id": 75}, "organization": {"id": 197}, "project": {"owner": {"id": 776}, "assignee": {"id": 862}, "organization": {"id": 924}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 405}, "assignee": {"id": 8}, "organization": {"id": 663}, "project": {"owner": {"id": 714}, "assignee": {"id": 844}, "organization": {"id": 936}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 417}, "assignee": {"id": 87}, "organization": {"id": 624}, "project": {"owner": {"id": 786}, "assignee": {"id": 861}, "organization": {"id": 986}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 301, "owner": {"id": 402}, "assignee": {"id": 61}, "organization": {"id": 166}, "project": {"owner": {"id": 754}, "assignee": {"id": 893}, "organization": {"id": 958}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 485}, "assignee": {"id": 48}, "organization": {"id": 172}, "project": {"owner": {"id": 729}, "assignee": {"id": 876}, "organization": {"id": 985}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 374, "owner": {"id": 490}, "assignee": {"id": 93}, "organization": {"id": 660}, "project": {"owner": {"id": 740}, "assignee": {"id": 888}, "organization": {"id": 902}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"id": 369, "owner": {"id": 469}, "assignee": {"id": 30}, "organization": {"id": 602}, "project": {"owner": {"id": 707}, "assignee": {"id": 891}, "organization": {"id": 991}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 309, "owner": {"id": 465}, "assignee": {"id": 540}, "organization": {"id": 175}, "project": {"owner": {"id": 741}, "assignee": {"id": 887}, "organization": {"id": 901}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 479}, "assignee": {"id": 515}, "organization": {"id": 158}, "project": {"owner": {"id": 796}, "assignee": {"id": 843}, "organization": {"id": 901}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 401}, "assignee": {"id": 579}, "organization": {"id": 671}, "project": {"owner": {"id": 758}, "assignee": {"id": 814}, "organization": {"id": 902}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 380, "owner": {"id": 463}, "assignee": {"id": 519}, "organization": {"id": 617}, "project": {"owner": {"id": 718}, "assignee": {"id": 851}, "organization": {"id": 908}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 101, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 423}, "assignee": {"id": 571}, "organization": {"id": 101}, "project": {"owner": {"id": 709}, "assignee": {"id": 860}, "organization": {"id": 927}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 242}, "user": {"role": "maintainer"}}}, "resource": {"id": 348, "owner": {"id": 463}, "assignee": {"id": 542}, "organization": {"id": 114}, "project": {"owner": {"id": 728}, "assignee": {"id": 844}, "organization": {"id": 986}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 76, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"id": 321, "owner": {"id": 490}, "assignee": {"id": 502}, "organization": {"id": 638}, "project": {"owner": {"id": 731}, "assignee": {"id": 864}, "organization": {"id": 912}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 410}, "assignee": {"id": 575}, "organization": {"id": 644}, "project": {"owner": {"id": 728}, "assignee": {"id": 875}, "organization": {"id": 913}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 466}, "assignee": {"id": 597}, "organization": {"id": 195}, "project": {"owner": {"id": 753}, "assignee": {"id": 870}, "organization": {"id": 958}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 340, "owner": {"id": 454}, "assignee": {"id": 512}, "organization": {"id": 174}, "project": {"owner": {"id": 753}, "assignee": {"id": 815}, "organization": {"id": 907}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 474}, "assignee": {"id": 597}, "organization": {"id": 667}, "project": {"owner": {"id": 797}, "assignee": {"id": 864}, "organization": {"id": 985}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 496}, "assignee": {"id": 574}, "organization": {"id": 657}, "project": {"owner": {"id": 711}, "assignee": {"id": 817}, "organization": {"id": 932}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 258}, "user": {"role": "worker"}}}, "resource": {"id": 361, "owner": {"id": 424}, "assignee": {"id": 549}, "organization": {"id": 186}, "project": {"owner": {"id": 749}, "assignee": {"id": 856}, "organization": {"id": 984}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 119, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 484}, "assignee": {"id": 593}, "organization": {"id": 119}, "project": {"owner": {"id": 702}, "assignee": {"id": 847}, "organization": {"id": 964}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 332, "owner": {"id": 436}, "assignee": {"id": 586}, "organization": {"id": 610}, "project": {"owner": {"id": 761}, "assignee": {"id": 804}, "organization": {"id": 902}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 401}, "assignee": {"id": 525}, "organization": {"id": 627}, "project": {"owner": {"id": 731}, "assignee": {"id": 803}, "organization": {"id": 956}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"id": 319, "owner": {"id": 422}, "assignee": {"id": 589}, "organization": {"id": 154}, "project": {"owner": {"id": 794}, "assignee": {"id": 874}, "organization": {"id": 994}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 239}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 415}, "assignee": {"id": 552}, "organization": {"id": 148}, "project": {"owner": {"id": 703}, "assignee": {"id": 829}, "organization": {"id": 905}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 361, "owner": {"id": 470}, "assignee": {"id": 523}, "organization": {"id": 610}, "project": {"owner": {"id": 740}, "assignee": {"id": 865}, "organization": {"id": 960}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": {"id": 127, "owner": {"id": 244}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 411}, "assignee": {"id": 538}, "organization": {"id": 642}, "project": {"owner": {"id": 777}, "assignee": {"id": 871}, "organization": {"id": 974}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 330, "owner": {"id": 414}, "assignee": {"id": 510}, "organization": {"id": 163}, "project": {"owner": {"id": 735}, "assignee": {"id": 883}, "organization": {"id": 921}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 431}, "assignee": {"id": 566}, "organization": {"id": 102}, "project": {"owner": {"id": 754}, "assignee": {"id": 842}, "organization": {"id": 972}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 189, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 443}, "assignee": {"id": 544}, "organization": {"id": 622}, "project": {"owner": {"id": 776}, "assignee": {"id": 854}, "organization": {"id": 958}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 357, "owner": {"id": 497}, "assignee": {"id": 539}, "organization": {"id": 627}, "project": {"owner": {"id": 736}, "assignee": {"id": 828}, "organization": {"id": 936}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 411}, "assignee": {"id": 578}, "organization": {"id": 141}, "project": {"owner": {"id": 763}, "assignee": {"id": 821}, "organization": {"id": 918}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 435}, "assignee": {"id": 569}, "organization": {"id": 180}, "project": {"owner": {"id": 759}, "assignee": {"id": 821}, "organization": {"id": 902}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 423}, "assignee": {"id": 573}, "organization": {"id": 626}, "project": {"owner": {"id": 747}, "assignee": {"id": 898}, "organization": {"id": 997}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 397, "owner": {"id": 428}, "assignee": {"id": 532}, "organization": {"id": 670}, "project": {"owner": {"id": 752}, "assignee": {"id": 893}, "organization": {"id": 956}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"id": 309, "owner": {"id": 419}, "assignee": {"id": 533}, "organization": {"id": 136}, "project": {"owner": {"id": 781}, "assignee": {"id": 893}, "organization": {"id": 990}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"id": 307, "owner": {"id": 483}, "assignee": {"id": 515}, "organization": {"id": 163}, "project": {"owner": {"id": 793}, "assignee": {"id": 808}, "organization": {"id": 907}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 373, "owner": {"id": 453}, "assignee": {"id": 595}, "organization": {"id": 693}, "project": {"owner": {"id": 701}, "assignee": {"id": 875}, "organization": {"id": 955}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 440}, "assignee": {"id": 556}, "organization": {"id": 606}, "project": {"owner": {"id": 749}, "assignee": {"id": 852}, "organization": {"id": 918}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"id": 378, "owner": {"id": 423}, "assignee": {"id": 536}, "organization": {"id": 134}, "project": {"owner": {"id": 712}, "assignee": {"id": 855}, "organization": {"id": 946}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 473}, "assignee": {"id": 519}, "organization": {"id": 179}, "project": {"owner": {"id": 799}, "assignee": {"id": 833}, "organization": {"id": 916}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"id": 394, "owner": {"id": 468}, "assignee": {"id": 542}, "organization": {"id": 644}, "project": {"owner": {"id": 778}, "assignee": {"id": 847}, "organization": {"id": 982}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"id": 330, "owner": {"id": 425}, "assignee": {"id": 539}, "organization": {"id": 643}, "project": {"owner": {"id": 717}, "assignee": {"id": 804}, "organization": {"id": 992}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 462}, "assignee": {"id": 516}, "organization": {"id": 116}, "project": {"owner": {"id": 780}, "assignee": {"id": 803}, "organization": {"id": 917}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 497}, "assignee": {"id": 589}, "organization": {"id": 137}, "project": {"owner": {"id": 748}, "assignee": {"id": 880}, "organization": {"id": 951}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"id": 326, "owner": {"id": 444}, "assignee": {"id": 555}, "organization": {"id": 640}, "project": {"owner": {"id": 758}, "assignee": {"id": 828}, "organization": {"id": 968}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 149, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 333, "owner": {"id": 419}, "assignee": {"id": 540}, "organization": {"id": 672}, "project": {"owner": {"id": 759}, "assignee": {"id": 872}, "organization": {"id": 942}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"id": 334, "owner": {"id": 455}, "assignee": {"id": 505}, "organization": {"id": 199}, "project": {"owner": {"id": 772}, "assignee": {"id": 849}, "organization": {"id": 967}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 345, "owner": {"id": 487}, "assignee": {"id": 527}, "organization": {"id": 100}, "project": {"owner": {"id": 736}, "assignee": {"id": 859}, "organization": {"id": 918}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 317, "owner": {"id": 460}, "assignee": {"id": 573}, "organization": {"id": 666}, "project": {"owner": {"id": 795}, "assignee": {"id": 854}, "organization": {"id": 961}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 467}, "assignee": {"id": 525}, "organization": {"id": 608}, "project": {"owner": {"id": 722}, "assignee": {"id": 836}, "organization": {"id": 947}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:backup", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 422}, "assignee": {"id": 559}, "organization": {"id": 156}, "project": {"owner": {"id": 788}, "assignee": {"id": 875}, "organization": {"id": 966}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 81, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 366, "owner": {"id": 425}, "assignee": {"id": 555}, "organization": {"id": 141}, "project": {"owner": {"id": 788}, "assignee": {"id": 800}, "organization": {"id": 911}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 81, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 429}, "assignee": {"id": 508}, "organization": {"id": 689}, "project": {"owner": {"id": 758}, "assignee": {"id": 850}, "organization": {"id": 950}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 281}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 459}, "assignee": {"id": 596}, "organization": {"id": 615}, "project": {"owner": {"id": 760}, "assignee": {"id": 874}, "organization": {"id": 989}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 150, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 413}, "assignee": {"id": 508}, "organization": {"id": 150}, "project": {"owner": {"id": 770}, "assignee": {"id": 827}, "organization": {"id": 972}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 491}, "assignee": {"id": 517}, "organization": {"id": 132}, "project": {"owner": {"id": 752}, "assignee": {"id": 828}, "organization": {"id": 902}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"id": 300, "owner": {"id": 456}, "assignee": {"id": 554}, "organization": {"id": 644}, "project": {"owner": {"id": 759}, "assignee": {"id": 887}, "organization": {"id": 983}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 291}, "user": {"role": "supervisor"}}}, "resource": {"id": 304, "owner": {"id": 484}, "assignee": {"id": 569}, "organization": {"id": 613}, "project": {"owner": {"id": 715}, "assignee": {"id": 897}, "organization": {"id": 981}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 250}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 497}, "assignee": {"id": 589}, "organization": {"id": 171}, "project": {"owner": {"id": 716}, "assignee": {"id": 846}, "organization": {"id": 919}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"id": 321, "owner": {"id": 404}, "assignee": {"id": 528}, "organization": {"id": 144}, "project": {"owner": {"id": 778}, "assignee": {"id": 895}, "organization": {"id": 946}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"id": 332, "owner": {"id": 481}, "assignee": {"id": 563}, "organization": {"id": 652}, "project": {"owner": {"id": 772}, "assignee": {"id": 846}, "organization": {"id": 979}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 448}, "assignee": {"id": 539}, "organization": {"id": 600}, "project": {"owner": {"id": 787}, "assignee": {"id": 829}, "organization": {"id": 933}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"id": 360, "owner": {"id": 453}, "assignee": {"id": 564}, "organization": {"id": 169}, "project": {"owner": {"id": 717}, "assignee": {"id": 880}, "organization": {"id": 962}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 225}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 463}, "assignee": {"id": 534}, "organization": {"id": 199}, "project": {"owner": {"id": 782}, "assignee": {"id": 835}, "organization": {"id": 915}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 266}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 498}, "assignee": {"id": 557}, "organization": {"id": 657}, "project": {"owner": {"id": 757}, "assignee": {"id": 817}, "organization": {"id": 989}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 319, "owner": {"id": 495}, "assignee": {"id": 552}, "organization": {"id": 628}, "project": {"owner": {"id": 786}, "assignee": {"id": 866}, "organization": {"id": 981}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"id": 399, "owner": {"id": 485}, "assignee": {"id": 569}, "organization": {"id": 161}, "project": {"owner": {"id": 705}, "assignee": {"id": 846}, "organization": {"id": 976}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 12, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 430}, "assignee": {"id": 511}, "organization": {"id": 102}, "project": {"owner": {"id": 766}, "assignee": {"id": 877}, "organization": {"id": 961}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"id": 327, "owner": {"id": 448}, "assignee": {"id": 571}, "organization": {"id": 690}, "project": {"owner": {"id": 745}, "assignee": {"id": 861}, "organization": {"id": 979}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 393, "owner": {"id": 467}, "assignee": {"id": 583}, "organization": {"id": 633}, "project": {"owner": {"id": 716}, "assignee": {"id": 888}, "organization": {"id": 927}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 311, "owner": {"id": 438}, "assignee": {"id": 580}, "organization": {"id": 158}, "project": {"owner": {"id": 790}, "assignee": {"id": 804}, "organization": {"id": 986}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 304, "owner": {"id": 443}, "assignee": {"id": 507}, "organization": {"id": 155}, "project": {"owner": {"id": 796}, "assignee": {"id": 876}, "organization": {"id": 918}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 399, "owner": {"id": 406}, "assignee": {"id": 593}, "organization": {"id": 603}, "project": {"owner": {"id": 717}, "assignee": {"id": 868}, "organization": {"id": 900}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": {"id": 188, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 343, "owner": {"id": 495}, "assignee": {"id": 556}, "organization": {"id": 628}, "project": {"owner": {"id": 751}, "assignee": {"id": 892}, "organization": {"id": 923}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 450}, "assignee": {"id": 528}, "organization": {"id": 127}, "project": {"owner": {"id": 712}, "assignee": {"id": 864}, "organization": {"id": 928}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 387, "owner": {"id": 488}, "assignee": {"id": 512}, "organization": {"id": 161}, "project": {"owner": {"id": 762}, "assignee": {"id": 890}, "organization": {"id": 976}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"id": 307, "owner": {"id": 492}, "assignee": {"id": 577}, "organization": {"id": 699}, "project": {"owner": {"id": 721}, "assignee": {"id": 855}, "organization": {"id": 915}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 320, "owner": {"id": 404}, "assignee": {"id": 558}, "organization": {"id": 655}, "project": {"owner": {"id": 775}, "assignee": {"id": 809}, "organization": {"id": 932}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 471}, "assignee": {"id": 524}, "organization": {"id": 185}, "project": {"owner": {"id": 749}, "assignee": {"id": 886}, "organization": {"id": 943}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"id": 307, "owner": {"id": 487}, "assignee": {"id": 579}, "organization": {"id": 104}, "project": {"owner": {"id": 758}, "assignee": {"id": 850}, "organization": {"id": 994}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": {"id": 135, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 356, "owner": {"id": 483}, "assignee": {"id": 572}, "organization": {"id": 615}, "project": {"owner": {"id": 762}, "assignee": {"id": 895}, "organization": {"id": 975}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 338, "owner": {"id": 409}, "assignee": {"id": 522}, "organization": {"id": 666}, "project": {"owner": {"id": 795}, "assignee": {"id": 899}, "organization": {"id": 974}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 311, "owner": {"id": 431}, "assignee": {"id": 518}, "organization": {"id": 192}, "project": {"owner": {"id": 788}, "assignee": {"id": 848}, "organization": {"id": 962}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 416}, "assignee": {"id": 534}, "organization": {"id": 176}, "project": {"owner": {"id": 751}, "assignee": {"id": 869}, "organization": {"id": 922}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"id": 319, "owner": {"id": 401}, "assignee": {"id": 574}, "organization": {"id": 623}, "project": {"owner": {"id": 774}, "assignee": {"id": 803}, "organization": {"id": 987}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"id": 394, "owner": {"id": 493}, "assignee": {"id": 541}, "organization": {"id": 650}, "project": {"owner": {"id": 728}, "assignee": {"id": 899}, "organization": {"id": 982}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 132, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 321, "owner": {"id": 435}, "assignee": {"id": 513}, "organization": {"id": 132}, "project": {"owner": {"id": 706}, "assignee": {"id": 820}, "organization": {"id": 986}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 311, "owner": {"id": 482}, "assignee": {"id": 521}, "organization": {"id": 135}, "project": {"owner": {"id": 710}, "assignee": {"id": 813}, "organization": {"id": 985}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 107, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 453}, "assignee": {"id": 579}, "organization": {"id": 618}, "project": {"owner": {"id": 702}, "assignee": {"id": 805}, "organization": {"id": 988}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 107, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 403}, "assignee": {"id": 530}, "organization": {"id": 695}, "project": {"owner": {"id": 753}, "assignee": {"id": 885}, "organization": {"id": 908}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"id": 320, "owner": {"id": 417}, "assignee": {"id": 561}, "organization": {"id": 108}, "project": {"owner": {"id": 769}, "assignee": {"id": 864}, "organization": {"id": 951}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 303, "owner": {"id": 471}, "assignee": {"id": 539}, "organization": {"id": 125}, "project": {"owner": {"id": 733}, "assignee": {"id": 828}, "organization": {"id": 990}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 270}, "user": {"role": "maintainer"}}}, "resource": {"id": 331, "owner": {"id": 411}, "assignee": {"id": 540}, "organization": {"id": 654}, "project": {"owner": {"id": 733}, "assignee": {"id": 847}, "organization": {"id": 953}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 107, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 427}, "assignee": {"id": 559}, "organization": {"id": 648}, "project": {"owner": {"id": 768}, "assignee": {"id": 862}, "organization": {"id": 919}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"id": 307, "owner": {"id": 451}, "assignee": {"id": 530}, "organization": {"id": 163}, "project": {"owner": {"id": 786}, "assignee": {"id": 830}, "organization": {"id": 995}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"id": 395, "owner": {"id": 429}, "assignee": {"id": 560}, "organization": {"id": 198}, "project": {"owner": {"id": 711}, "assignee": {"id": 857}, "organization": {"id": 913}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 218}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 460}, "assignee": {"id": 558}, "organization": {"id": 639}, "project": {"owner": {"id": 747}, "assignee": {"id": 865}, "organization": {"id": 902}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"id": 366, "owner": {"id": 401}, "assignee": {"id": 540}, "organization": {"id": 678}, "project": {"owner": {"id": 742}, "assignee": {"id": 876}, "organization": {"id": 939}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 160, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 394, "owner": {"id": 474}, "assignee": {"id": 536}, "organization": {"id": 160}, "project": {"owner": {"id": 783}, "assignee": {"id": 835}, "organization": {"id": 957}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 431}, "assignee": {"id": 567}, "organization": {"id": 198}, "project": {"owner": {"id": 766}, "assignee": {"id": 858}, "organization": {"id": 952}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"id": 318, "owner": {"id": 414}, "assignee": {"id": 590}, "organization": {"id": 679}, "project": {"owner": {"id": 713}, "assignee": {"id": 807}, "organization": {"id": 913}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 419}, "assignee": {"id": 583}, "organization": {"id": 610}, "project": {"owner": {"id": 782}, "assignee": {"id": 891}, "organization": {"id": 925}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 440}, "assignee": {"id": 582}, "organization": {"id": 135}, "project": {"owner": {"id": 755}, "assignee": {"id": 862}, "organization": {"id": 967}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 420}, "assignee": {"id": 574}, "organization": {"id": 138}, "project": {"owner": {"id": 793}, "assignee": {"id": 801}, "organization": {"id": 960}}}} } -test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 431}, "assignee": {"id": 529}, "organization": {"id": 684}, "project": {"owner": {"id": 722}, "assignee": {"id": 842}, "organization": {"id": 985}}}} +test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"id": 336, "owner": {"id": 410}, "assignee": {"id": 564}, "organization": {"id": 612}, "project": {"owner": {"id": 721}, "assignee": {"id": 855}, "organization": {"id": 992}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": null}, "resource": {"id": 370, "owner": {"id": 428}, "assignee": {"id": 564}, "organization": {"id": 642}, "project": {"owner": {"id": 26}, "assignee": {"id": 891}, "organization": {"id": 904}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 71, "privilege": "admin"}, "organization": null}, "resource": {"id": 377, "owner": {"id": 415}, "assignee": {"id": 582}, "organization": {"id": 610}, "project": {"owner": {"id": 71}, "assignee": {"id": 881}, "organization": {"id": 939}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": null}, "resource": {"id": 361, "owner": {"id": 429}, "assignee": {"id": 593}, "organization": {"id": 606}, "project": {"owner": {"id": 68}, "assignee": {"id": 829}, "organization": {"id": 988}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": null}, "resource": {"id": 310, "owner": {"id": 486}, "assignee": {"id": 596}, "organization": {"id": 697}, "project": {"owner": {"id": 82}, "assignee": {"id": 892}, "organization": {"id": 900}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": null}, "resource": {"id": 300, "owner": {"id": 420}, "assignee": {"id": 587}, "organization": {"id": 604}, "project": {"owner": {"id": 36}, "assignee": {"id": 887}, "organization": {"id": 991}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": null}, "resource": {"id": 347, "owner": {"id": 472}, "assignee": {"id": 520}, "organization": {"id": 634}, "project": {"owner": {"id": 59}, "assignee": {"id": 846}, "organization": {"id": 904}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": null}, "resource": {"id": 302, "owner": {"id": 474}, "assignee": {"id": 521}, "organization": {"id": 670}, "project": {"owner": {"id": 17}, "assignee": {"id": 862}, "organization": {"id": 989}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": null}, "resource": {"id": 367, "owner": {"id": 413}, "assignee": {"id": 533}, "organization": {"id": 671}, "project": {"owner": {"id": 35}, "assignee": {"id": 858}, "organization": {"id": 939}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": null}, "resource": {"id": 344, "owner": {"id": 429}, "assignee": {"id": 521}, "organization": {"id": 692}, "project": {"owner": {"id": 73}, "assignee": {"id": 860}, "organization": {"id": 971}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": null}, "resource": {"id": 393, "owner": {"id": 483}, "assignee": {"id": 569}, "organization": {"id": 634}, "project": {"owner": {"id": 25}, "assignee": {"id": 892}, "organization": {"id": 905}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": null}, "resource": {"id": 354, "owner": {"id": 460}, "assignee": {"id": 567}, "organization": {"id": 604}, "project": {"owner": {"id": 702}, "assignee": {"id": 57}, "organization": {"id": 975}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": null}, "resource": {"id": 314, "owner": {"id": 447}, "assignee": {"id": 563}, "organization": {"id": 608}, "project": {"owner": {"id": 784}, "assignee": {"id": 29}, "organization": {"id": 993}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": null}, "resource": {"id": 320, "owner": {"id": 450}, "assignee": {"id": 579}, "organization": {"id": 604}, "project": {"owner": {"id": 779}, "assignee": {"id": 46}, "organization": {"id": 924}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": null}, "resource": {"id": 338, "owner": {"id": 414}, "assignee": {"id": 572}, "organization": {"id": 666}, "project": {"owner": {"id": 750}, "assignee": {"id": 42}, "organization": {"id": 919}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": null}, "resource": {"id": 317, "owner": {"id": 433}, "assignee": {"id": 544}, "organization": {"id": 617}, "project": {"owner": {"id": 716}, "assignee": {"id": 17}, "organization": {"id": 979}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": null}, "resource": {"id": 376, "owner": {"id": 450}, "assignee": {"id": 590}, "organization": {"id": 664}, "project": {"owner": {"id": 779}, "assignee": {"id": 71}, "organization": {"id": 905}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": null}, "resource": {"id": 345, "owner": {"id": 421}, "assignee": {"id": 586}, "organization": {"id": 651}, "project": {"owner": {"id": 714}, "assignee": {"id": 42}, "organization": {"id": 926}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": null}, "resource": {"id": 370, "owner": {"id": 403}, "assignee": {"id": 529}, "organization": {"id": 658}, "project": {"owner": {"id": 758}, "assignee": {"id": 1}, "organization": {"id": 963}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": null}, "resource": {"id": 391, "owner": {"id": 457}, "assignee": {"id": 558}, "organization": {"id": 683}, "project": {"owner": {"id": 729}, "assignee": {"id": 83}, "organization": {"id": 998}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": null}, "resource": {"id": 384, "owner": {"id": 414}, "assignee": {"id": 570}, "organization": {"id": 666}, "project": {"owner": {"id": 740}, "assignee": {"id": 2}, "organization": {"id": 972}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": null}, "resource": {"id": 345, "owner": {"id": 67}, "assignee": {"id": 516}, "organization": {"id": 695}, "project": {"owner": {"id": 784}, "assignee": {"id": 846}, "organization": {"id": 963}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": null}, "resource": {"id": 329, "owner": {"id": 59}, "assignee": {"id": 579}, "organization": {"id": 649}, "project": {"owner": {"id": 769}, "assignee": {"id": 845}, "organization": {"id": 951}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": null}, "resource": {"id": 317, "owner": {"id": 55}, "assignee": {"id": 561}, "organization": {"id": 617}, "project": {"owner": {"id": 718}, "assignee": {"id": 856}, "organization": {"id": 982}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": null}, "resource": {"id": 308, "owner": {"id": 60}, "assignee": {"id": 596}, "organization": {"id": 606}, "project": {"owner": {"id": 718}, "assignee": {"id": 801}, "organization": {"id": 949}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": null}, "resource": {"id": 340, "owner": {"id": 72}, "assignee": {"id": 577}, "organization": {"id": 624}, "project": {"owner": {"id": 708}, "assignee": {"id": 875}, "organization": {"id": 905}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 45, "privilege": "user"}, "organization": null}, "resource": {"id": 383, "owner": {"id": 45}, "assignee": {"id": 526}, "organization": {"id": 675}, "project": {"owner": {"id": 792}, "assignee": {"id": 858}, "organization": {"id": 930}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": null}, "resource": {"id": 395, "owner": {"id": 73}, "assignee": {"id": 512}, "organization": {"id": 650}, "project": {"owner": {"id": 728}, "assignee": {"id": 875}, "organization": {"id": 976}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": null}, "resource": {"id": 328, "owner": {"id": 28}, "assignee": {"id": 584}, "organization": {"id": 688}, "project": {"owner": {"id": 762}, "assignee": {"id": 817}, "organization": {"id": 956}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": null}, "resource": {"id": 382, "owner": {"id": 81}, "assignee": {"id": 531}, "organization": {"id": 610}, "project": {"owner": {"id": 782}, "assignee": {"id": 846}, "organization": {"id": 911}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": null}, "resource": {"id": 349, "owner": {"id": 7}, "assignee": {"id": 531}, "organization": {"id": 640}, "project": {"owner": {"id": 744}, "assignee": {"id": 874}, "organization": {"id": 914}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": null}, "resource": {"id": 385, "owner": {"id": 479}, "assignee": {"id": 12}, "organization": {"id": 642}, "project": {"owner": {"id": 731}, "assignee": {"id": 835}, "organization": {"id": 988}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": null}, "resource": {"id": 386, "owner": {"id": 481}, "assignee": {"id": 16}, "organization": {"id": 618}, "project": {"owner": {"id": 744}, "assignee": {"id": 837}, "organization": {"id": 986}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": null}, "resource": {"id": 384, "owner": {"id": 448}, "assignee": {"id": 11}, "organization": {"id": 625}, "project": {"owner": {"id": 793}, "assignee": {"id": 809}, "organization": {"id": 945}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": null}, "resource": {"id": 324, "owner": {"id": 435}, "assignee": {"id": 62}, "organization": {"id": 672}, "project": {"owner": {"id": 726}, "assignee": {"id": 867}, "organization": {"id": 960}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": null}, "resource": {"id": 339, "owner": {"id": 431}, "assignee": {"id": 2}, "organization": {"id": 679}, "project": {"owner": {"id": 788}, "assignee": {"id": 887}, "organization": {"id": 921}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": null}, "resource": {"id": 377, "owner": {"id": 463}, "assignee": {"id": 63}, "organization": {"id": 690}, "project": {"owner": {"id": 719}, "assignee": {"id": 856}, "organization": {"id": 911}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": null}, "resource": {"id": 396, "owner": {"id": 425}, "assignee": {"id": 35}, "organization": {"id": 630}, "project": {"owner": {"id": 732}, "assignee": {"id": 865}, "organization": {"id": 937}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": null}, "resource": {"id": 377, "owner": {"id": 469}, "assignee": {"id": 68}, "organization": {"id": 654}, "project": {"owner": {"id": 762}, "assignee": {"id": 804}, "organization": {"id": 995}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": null}, "resource": {"id": 313, "owner": {"id": 411}, "assignee": {"id": 50}, "organization": {"id": 649}, "project": {"owner": {"id": 766}, "assignee": {"id": 809}, "organization": {"id": 966}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": null}, "resource": {"id": 322, "owner": {"id": 405}, "assignee": {"id": 36}, "organization": {"id": 640}, "project": {"owner": {"id": 786}, "assignee": {"id": 895}, "organization": {"id": 954}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": null}, "resource": {"id": 315, "owner": {"id": 431}, "assignee": {"id": 540}, "organization": {"id": 643}, "project": {"owner": {"id": 759}, "assignee": {"id": 879}, "organization": {"id": 979}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": null}, "resource": {"id": 330, "owner": {"id": 497}, "assignee": {"id": 573}, "organization": {"id": 671}, "project": {"owner": {"id": 763}, "assignee": {"id": 878}, "organization": {"id": 934}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": null}, "resource": {"id": 389, "owner": {"id": 402}, "assignee": {"id": 594}, "organization": {"id": 611}, "project": {"owner": {"id": 757}, "assignee": {"id": 872}, "organization": {"id": 912}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": null}, "resource": {"id": 385, "owner": {"id": 455}, "assignee": {"id": 568}, "organization": {"id": 668}, "project": {"owner": {"id": 703}, "assignee": {"id": 888}, "organization": {"id": 954}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": null}, "resource": {"id": 390, "owner": {"id": 403}, "assignee": {"id": 567}, "organization": {"id": 650}, "project": {"owner": {"id": 709}, "assignee": {"id": 804}, "organization": {"id": 915}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": null}, "resource": {"id": 390, "owner": {"id": 428}, "assignee": {"id": 581}, "organization": {"id": 631}, "project": {"owner": {"id": 785}, "assignee": {"id": 804}, "organization": {"id": 983}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": null}, "resource": {"id": 308, "owner": {"id": 403}, "assignee": {"id": 506}, "organization": {"id": 600}, "project": {"owner": {"id": 711}, "assignee": {"id": 866}, "organization": {"id": 962}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": null}, "resource": {"id": 300, "owner": {"id": 427}, "assignee": {"id": 566}, "organization": {"id": 695}, "project": {"owner": {"id": 721}, "assignee": {"id": 851}, "organization": {"id": 981}}}} } -test_scope_UPDATE_OWNER_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": null}, "resource": {"id": 349, "owner": {"id": 452}, "assignee": {"id": 597}, "organization": {"id": 609}, "project": {"owner": {"id": 726}, "assignee": {"id": 886}, "organization": {"id": 927}}}} +test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": null}, "resource": {"id": 356, "owner": {"id": 498}, "assignee": {"id": 503}, "organization": {"id": 650}, "project": {"owner": {"id": 733}, "assignee": {"id": 872}, "organization": {"id": 959}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 462}, "assignee": {"id": 543}, "organization": {"id": 141}, "project": {"owner": {"id": 67}, "assignee": {"id": 819}, "organization": {"id": 976}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 101, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 393, "owner": {"id": 440}, "assignee": {"id": 551}, "organization": {"id": 101}, "project": {"owner": {"id": 29}, "assignee": {"id": 819}, "organization": {"id": 988}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 486}, "assignee": {"id": 556}, "organization": {"id": 652}, "project": {"owner": {"id": 75}, "assignee": {"id": 890}, "organization": {"id": 953}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 95}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 462}, "assignee": {"id": 509}, "organization": {"id": 619}, "project": {"owner": {"id": 95}, "assignee": {"id": 816}, "organization": {"id": 924}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 327, "owner": {"id": 405}, "assignee": {"id": 552}, "organization": {"id": 148}, "project": {"owner": {"id": 40}, "assignee": {"id": 852}, "organization": {"id": 936}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 483}, "assignee": {"id": 586}, "organization": {"id": 162}, "project": {"owner": {"id": 30}, "assignee": {"id": 866}, "organization": {"id": 986}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"id": 361, "owner": {"id": 449}, "assignee": {"id": 508}, "organization": {"id": 696}, "project": {"owner": {"id": 31}, "assignee": {"id": 892}, "organization": {"id": 948}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 489}, "assignee": {"id": 594}, "organization": {"id": 688}, "project": {"owner": {"id": 14}, "assignee": {"id": 855}, "organization": {"id": 922}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 454}, "assignee": {"id": 554}, "organization": {"id": 192}, "project": {"owner": {"id": 2}, "assignee": {"id": 818}, "organization": {"id": 950}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 310, "owner": {"id": 476}, "assignee": {"id": 507}, "organization": {"id": 148}, "project": {"owner": {"id": 86}, "assignee": {"id": 883}, "organization": {"id": 900}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"id": 363, "owner": {"id": 479}, "assignee": {"id": 559}, "organization": {"id": 672}, "project": {"owner": {"id": 46}, "assignee": {"id": 896}, "organization": {"id": 930}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"id": 303, "owner": {"id": 493}, "assignee": {"id": 521}, "organization": {"id": 603}, "project": {"owner": {"id": 96}, "assignee": {"id": 853}, "organization": {"id": 984}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 314, "owner": {"id": 404}, "assignee": {"id": 576}, "organization": {"id": 184}, "project": {"owner": {"id": 46}, "assignee": {"id": 888}, "organization": {"id": 978}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 405}, "assignee": {"id": 593}, "organization": {"id": 110}, "project": {"owner": {"id": 38}, "assignee": {"id": 844}, "organization": {"id": 966}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 417}, "assignee": {"id": 516}, "organization": {"id": 689}, "project": {"owner": {"id": 28}, "assignee": {"id": 898}, "organization": {"id": 974}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 228}, "user": {"role": "worker"}}}, "resource": {"id": 338, "owner": {"id": 421}, "assignee": {"id": 564}, "organization": {"id": 655}, "project": {"owner": {"id": 69}, "assignee": {"id": 811}, "organization": {"id": 968}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 364, "owner": {"id": 405}, "assignee": {"id": 554}, "organization": {"id": 134}, "project": {"owner": {"id": 92}, "assignee": {"id": 863}, "organization": {"id": 956}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 102, "owner": {"id": 266}, "user": {"role": null}}}, "resource": {"id": 305, "owner": {"id": 424}, "assignee": {"id": 505}, "organization": {"id": 102}, "project": {"owner": {"id": 14}, "assignee": {"id": 802}, "organization": {"id": 982}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"id": 387, "owner": {"id": 474}, "assignee": {"id": 552}, "organization": {"id": 661}, "project": {"owner": {"id": 8}, "assignee": {"id": 818}, "organization": {"id": 973}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 402}, "assignee": {"id": 551}, "organization": {"id": 631}, "project": {"owner": {"id": 32}, "assignee": {"id": 825}, "organization": {"id": 933}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 10}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 461}, "assignee": {"id": 510}, "organization": {"id": 105}, "project": {"owner": {"id": 10}, "assignee": {"id": 808}, "organization": {"id": 924}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 452}, "assignee": {"id": 527}, "organization": {"id": 177}, "project": {"owner": {"id": 37}, "assignee": {"id": 828}, "organization": {"id": 942}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 435}, "assignee": {"id": 548}, "organization": {"id": 696}, "project": {"owner": {"id": 78}, "assignee": {"id": 824}, "organization": {"id": 945}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 367, "owner": {"id": 453}, "assignee": {"id": 524}, "organization": {"id": 654}, "project": {"owner": {"id": 81}, "assignee": {"id": 818}, "organization": {"id": 940}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 113, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 445}, "assignee": {"id": 594}, "organization": {"id": 113}, "project": {"owner": {"id": 4}, "assignee": {"id": 888}, "organization": {"id": 924}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"id": 328, "owner": {"id": 483}, "assignee": {"id": 538}, "organization": {"id": 128}, "project": {"owner": {"id": 7}, "assignee": {"id": 839}, "organization": {"id": 920}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 454}, "assignee": {"id": 528}, "organization": {"id": 641}, "project": {"owner": {"id": 22}, "assignee": {"id": 857}, "organization": {"id": 995}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"id": 378, "owner": {"id": 409}, "assignee": {"id": 569}, "organization": {"id": 684}, "project": {"owner": {"id": 81}, "assignee": {"id": 895}, "organization": {"id": 945}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 467}, "assignee": {"id": 531}, "organization": {"id": 151}, "project": {"owner": {"id": 82}, "assignee": {"id": 826}, "organization": {"id": 988}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 242}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 457}, "assignee": {"id": 591}, "organization": {"id": 197}, "project": {"owner": {"id": 21}, "assignee": {"id": 880}, "organization": {"id": 905}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 370, "owner": {"id": 423}, "assignee": {"id": 527}, "organization": {"id": 631}, "project": {"owner": {"id": 54}, "assignee": {"id": 826}, "organization": {"id": 933}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"id": 376, "owner": {"id": 412}, "assignee": {"id": 587}, "organization": {"id": 618}, "project": {"owner": {"id": 89}, "assignee": {"id": 842}, "organization": {"id": 904}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"id": 335, "owner": {"id": 418}, "assignee": {"id": 574}, "organization": {"id": 183}, "project": {"owner": {"id": 13}, "assignee": {"id": 883}, "organization": {"id": 986}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 419}, "assignee": {"id": 572}, "organization": {"id": 171}, "project": {"owner": {"id": 67}, "assignee": {"id": 870}, "organization": {"id": 997}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"id": 335, "owner": {"id": 454}, "assignee": {"id": 537}, "organization": {"id": 673}, "project": {"owner": {"id": 44}, "assignee": {"id": 820}, "organization": {"id": 922}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"id": 382, "owner": {"id": 461}, "assignee": {"id": 571}, "organization": {"id": 648}, "project": {"owner": {"id": 97}, "assignee": {"id": 888}, "organization": {"id": 926}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 196, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 471}, "assignee": {"id": 557}, "organization": {"id": 196}, "project": {"owner": {"id": 98}, "assignee": {"id": 800}, "organization": {"id": 941}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"id": 357, "owner": {"id": 498}, "assignee": {"id": 541}, "organization": {"id": 160}, "project": {"owner": {"id": 11}, "assignee": {"id": 892}, "organization": {"id": 984}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 123, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 356, "owner": {"id": 433}, "assignee": {"id": 547}, "organization": {"id": 639}, "project": {"owner": {"id": 9}, "assignee": {"id": 897}, "organization": {"id": 907}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 400}, "assignee": {"id": 597}, "organization": {"id": 625}, "project": {"owner": {"id": 33}, "assignee": {"id": 804}, "organization": {"id": 992}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 122, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"id": 316, "owner": {"id": 462}, "assignee": {"id": 573}, "organization": {"id": 122}, "project": {"owner": {"id": 94}, "assignee": {"id": 821}, "organization": {"id": 991}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 59}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 491}, "assignee": {"id": 561}, "organization": {"id": 120}, "project": {"owner": {"id": 59}, "assignee": {"id": 857}, "organization": {"id": 918}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 478}, "assignee": {"id": 593}, "organization": {"id": 669}, "project": {"owner": {"id": 12}, "assignee": {"id": 864}, "organization": {"id": 960}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"id": 364, "owner": {"id": 444}, "assignee": {"id": 597}, "organization": {"id": 690}, "project": {"owner": {"id": 83}, "assignee": {"id": 867}, "organization": {"id": 932}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"id": 332, "owner": {"id": 497}, "assignee": {"id": 527}, "organization": {"id": 170}, "project": {"owner": {"id": 85}, "assignee": {"id": 872}, "organization": {"id": 990}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": {"id": 123, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"id": 332, "owner": {"id": 467}, "assignee": {"id": 546}, "organization": {"id": 123}, "project": {"owner": {"id": 8}, "assignee": {"id": 867}, "organization": {"id": 957}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 439}, "assignee": {"id": 572}, "organization": {"id": 660}, "project": {"owner": {"id": 79}, "assignee": {"id": 818}, "organization": {"id": 918}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"id": 366, "owner": {"id": 475}, "assignee": {"id": 520}, "organization": {"id": 619}, "project": {"owner": {"id": 95}, "assignee": {"id": 890}, "organization": {"id": 953}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 9, "privilege": "user"}, "organization": {"id": 105, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 422}, "assignee": {"id": 583}, "organization": {"id": 105}, "project": {"owner": {"id": 9}, "assignee": {"id": 882}, "organization": {"id": 935}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 205}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 400}, "assignee": {"id": 542}, "organization": {"id": 159}, "project": {"owner": {"id": 99}, "assignee": {"id": 830}, "organization": {"id": 914}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 20, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"id": 316, "owner": {"id": 408}, "assignee": {"id": 564}, "organization": {"id": 698}, "project": {"owner": {"id": 20}, "assignee": {"id": 871}, "organization": {"id": 916}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 379, "owner": {"id": 407}, "assignee": {"id": 501}, "organization": {"id": 620}, "project": {"owner": {"id": 23}, "assignee": {"id": 846}, "organization": {"id": 925}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"id": 324, "owner": {"id": 400}, "assignee": {"id": 552}, "organization": {"id": 176}, "project": {"owner": {"id": 13}, "assignee": {"id": 830}, "organization": {"id": 964}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"id": 343, "owner": {"id": 420}, "assignee": {"id": 518}, "organization": {"id": 168}, "project": {"owner": {"id": 29}, "assignee": {"id": 831}, "organization": {"id": 950}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 290}, "user": {"role": "worker"}}}, "resource": {"id": 374, "owner": {"id": 443}, "assignee": {"id": 518}, "organization": {"id": 629}, "project": {"owner": {"id": 23}, "assignee": {"id": 868}, "organization": {"id": 998}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 401}, "assignee": {"id": 533}, "organization": {"id": 608}, "project": {"owner": {"id": 31}, "assignee": {"id": 893}, "organization": {"id": 943}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 264}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 418}, "assignee": {"id": 533}, "organization": {"id": 190}, "project": {"owner": {"id": 94}, "assignee": {"id": 866}, "organization": {"id": 906}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 405}, "assignee": {"id": 581}, "organization": {"id": 115}, "project": {"owner": {"id": 5}, "assignee": {"id": 898}, "organization": {"id": 917}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 436}, "assignee": {"id": 553}, "organization": {"id": 679}, "project": {"owner": {"id": 40}, "assignee": {"id": 887}, "organization": {"id": 967}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 418}, "assignee": {"id": 543}, "organization": {"id": 603}, "project": {"owner": {"id": 97}, "assignee": {"id": 829}, "organization": {"id": 982}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 141, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"id": 318, "owner": {"id": 416}, "assignee": {"id": 557}, "organization": {"id": 141}, "project": {"owner": {"id": 56}, "assignee": {"id": 868}, "organization": {"id": 989}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 452}, "assignee": {"id": 583}, "organization": {"id": 172}, "project": {"owner": {"id": 29}, "assignee": {"id": 854}, "organization": {"id": 949}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 412}, "assignee": {"id": 582}, "organization": {"id": 628}, "project": {"owner": {"id": 56}, "assignee": {"id": 817}, "organization": {"id": 961}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 382, "owner": {"id": 472}, "assignee": {"id": 568}, "organization": {"id": 698}, "project": {"owner": {"id": 86}, "assignee": {"id": 854}, "organization": {"id": 998}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 334, "owner": {"id": 402}, "assignee": {"id": 572}, "organization": {"id": 102}, "project": {"owner": {"id": 10}, "assignee": {"id": 816}, "organization": {"id": 903}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 100, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 333, "owner": {"id": 409}, "assignee": {"id": 518}, "organization": {"id": 100}, "project": {"owner": {"id": 57}, "assignee": {"id": 851}, "organization": {"id": 914}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 445}, "assignee": {"id": 553}, "organization": {"id": 621}, "project": {"owner": {"id": 87}, "assignee": {"id": 820}, "organization": {"id": 951}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 135, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 454}, "assignee": {"id": 588}, "organization": {"id": 603}, "project": {"owner": {"id": 37}, "assignee": {"id": 810}, "organization": {"id": 934}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 391, "owner": {"id": 451}, "assignee": {"id": 585}, "organization": {"id": 127}, "project": {"owner": {"id": 86}, "assignee": {"id": 846}, "organization": {"id": 912}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 463}, "assignee": {"id": 578}, "organization": {"id": 120}, "project": {"owner": {"id": 69}, "assignee": {"id": 801}, "organization": {"id": 903}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 112, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"id": 353, "owner": {"id": 499}, "assignee": {"id": 571}, "organization": {"id": 692}, "project": {"owner": {"id": 81}, "assignee": {"id": 844}, "organization": {"id": 982}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": {"id": 193, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 398, "owner": {"id": 468}, "assignee": {"id": 529}, "organization": {"id": 690}, "project": {"owner": {"id": 18}, "assignee": {"id": 836}, "organization": {"id": 992}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"id": 356, "owner": {"id": 490}, "assignee": {"id": 545}, "organization": {"id": 175}, "project": {"owner": {"id": 49}, "assignee": {"id": 887}, "organization": {"id": 960}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 414}, "assignee": {"id": 508}, "organization": {"id": 115}, "project": {"owner": {"id": 88}, "assignee": {"id": 886}, "organization": {"id": 935}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"id": 396, "owner": {"id": 480}, "assignee": {"id": 522}, "organization": {"id": 648}, "project": {"owner": {"id": 88}, "assignee": {"id": 885}, "organization": {"id": 958}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 441}, "assignee": {"id": 523}, "organization": {"id": 679}, "project": {"owner": {"id": 57}, "assignee": {"id": 816}, "organization": {"id": 988}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 326, "owner": {"id": 416}, "assignee": {"id": 506}, "organization": {"id": 117}, "project": {"owner": {"id": 16}, "assignee": {"id": 833}, "organization": {"id": 952}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 450}, "assignee": {"id": 512}, "organization": {"id": 155}, "project": {"owner": {"id": 53}, "assignee": {"id": 832}, "organization": {"id": 993}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 417}, "assignee": {"id": 551}, "organization": {"id": 666}, "project": {"owner": {"id": 76}, "assignee": {"id": 806}, "organization": {"id": 956}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"id": 349, "owner": {"id": 407}, "assignee": {"id": 561}, "organization": {"id": 673}, "project": {"owner": {"id": 76}, "assignee": {"id": 812}, "organization": {"id": 964}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 324, "owner": {"id": 474}, "assignee": {"id": 564}, "organization": {"id": 191}, "project": {"owner": {"id": 24}, "assignee": {"id": 864}, "organization": {"id": 974}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"id": 379, "owner": {"id": 444}, "assignee": {"id": 540}, "organization": {"id": 131}, "project": {"owner": {"id": 26}, "assignee": {"id": 808}, "organization": {"id": 994}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 464}, "assignee": {"id": 560}, "organization": {"id": 644}, "project": {"owner": {"id": 34}, "assignee": {"id": 882}, "organization": {"id": 953}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 14}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 446}, "assignee": {"id": 538}, "organization": {"id": 635}, "project": {"owner": {"id": 14}, "assignee": {"id": 869}, "organization": {"id": 999}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 428}, "assignee": {"id": 545}, "organization": {"id": 173}, "project": {"owner": {"id": 37}, "assignee": {"id": 819}, "organization": {"id": 956}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 365, "owner": {"id": 452}, "assignee": {"id": 552}, "organization": {"id": 153}, "project": {"owner": {"id": 7}, "assignee": {"id": 851}, "organization": {"id": 907}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 242}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 482}, "assignee": {"id": 511}, "organization": {"id": 632}, "project": {"owner": {"id": 12}, "assignee": {"id": 871}, "organization": {"id": 988}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 176, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 389, "owner": {"id": 451}, "assignee": {"id": 502}, "organization": {"id": 602}, "project": {"owner": {"id": 3}, "assignee": {"id": 876}, "organization": {"id": 903}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 398, "owner": {"id": 481}, "assignee": {"id": 571}, "organization": {"id": 111}, "project": {"owner": {"id": 46}, "assignee": {"id": 839}, "organization": {"id": 951}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 294}, "user": {"role": "supervisor"}}}, "resource": {"id": 352, "owner": {"id": 403}, "assignee": {"id": 539}, "organization": {"id": 181}, "project": {"owner": {"id": 43}, "assignee": {"id": 825}, "organization": {"id": 982}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 307, "owner": {"id": 407}, "assignee": {"id": 528}, "organization": {"id": 690}, "project": {"owner": {"id": 96}, "assignee": {"id": 878}, "organization": {"id": 904}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 149, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"id": 301, "owner": {"id": 439}, "assignee": {"id": 542}, "organization": {"id": 629}, "project": {"owner": {"id": 32}, "assignee": {"id": 862}, "organization": {"id": 922}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 406}, "assignee": {"id": 506}, "organization": {"id": 148}, "project": {"owner": {"id": 20}, "assignee": {"id": 828}, "organization": {"id": 901}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 290}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 476}, "assignee": {"id": 597}, "organization": {"id": 191}, "project": {"owner": {"id": 5}, "assignee": {"id": 883}, "organization": {"id": 937}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 309, "owner": {"id": 437}, "assignee": {"id": 506}, "organization": {"id": 687}, "project": {"owner": {"id": 47}, "assignee": {"id": 858}, "organization": {"id": 972}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 366, "owner": {"id": 459}, "assignee": {"id": 530}, "organization": {"id": 699}, "project": {"owner": {"id": 38}, "assignee": {"id": 837}, "organization": {"id": 959}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 486}, "assignee": {"id": 553}, "organization": {"id": 192}, "project": {"owner": {"id": 76}, "assignee": {"id": 887}, "organization": {"id": 925}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 149, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 313, "owner": {"id": 464}, "assignee": {"id": 500}, "organization": {"id": 149}, "project": {"owner": {"id": 80}, "assignee": {"id": 826}, "organization": {"id": 996}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 239}, "user": {"role": null}}}, "resource": {"id": 394, "owner": {"id": 497}, "assignee": {"id": 592}, "organization": {"id": 645}, "project": {"owner": {"id": 65}, "assignee": {"id": 899}, "organization": {"id": 914}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 349, "owner": {"id": 493}, "assignee": {"id": 593}, "organization": {"id": 642}, "project": {"owner": {"id": 85}, "assignee": {"id": 843}, "organization": {"id": 959}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 349, "owner": {"id": 433}, "assignee": {"id": 540}, "organization": {"id": 168}, "project": {"owner": {"id": 755}, "assignee": {"id": 40}, "organization": {"id": 947}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 363, "owner": {"id": 485}, "assignee": {"id": 505}, "organization": {"id": 109}, "project": {"owner": {"id": 789}, "assignee": {"id": 13}, "organization": {"id": 970}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 467}, "assignee": {"id": 511}, "organization": {"id": 629}, "project": {"owner": {"id": 799}, "assignee": {"id": 39}, "organization": {"id": 932}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"id": 334, "owner": {"id": 497}, "assignee": {"id": 530}, "organization": {"id": 654}, "project": {"owner": {"id": 739}, "assignee": {"id": 2}, "organization": {"id": 949}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 303, "owner": {"id": 410}, "assignee": {"id": 553}, "organization": {"id": 158}, "project": {"owner": {"id": 738}, "assignee": {"id": 55}, "organization": {"id": 942}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 276}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 487}, "assignee": {"id": 568}, "organization": {"id": 112}, "project": {"owner": {"id": 785}, "assignee": {"id": 32}, "organization": {"id": 923}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 149, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 435}, "assignee": {"id": 537}, "organization": {"id": 624}, "project": {"owner": {"id": 738}, "assignee": {"id": 92}, "organization": {"id": 957}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 456}, "assignee": {"id": 559}, "organization": {"id": 692}, "project": {"owner": {"id": 791}, "assignee": {"id": 9}, "organization": {"id": 974}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"id": 328, "owner": {"id": 455}, "assignee": {"id": 556}, "organization": {"id": 150}, "project": {"owner": {"id": 729}, "assignee": {"id": 31}, "organization": {"id": 963}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 478}, "assignee": {"id": 542}, "organization": {"id": 114}, "project": {"owner": {"id": 715}, "assignee": {"id": 47}, "organization": {"id": 917}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 76, "privilege": "admin"}, "organization": {"id": 116, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 460}, "assignee": {"id": 506}, "organization": {"id": 609}, "project": {"owner": {"id": 700}, "assignee": {"id": 76}, "organization": {"id": 981}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 468}, "assignee": {"id": 513}, "organization": {"id": 685}, "project": {"owner": {"id": 707}, "assignee": {"id": 61}, "organization": {"id": 992}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 172, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 491}, "assignee": {"id": 543}, "organization": {"id": 172}, "project": {"owner": {"id": 734}, "assignee": {"id": 10}, "organization": {"id": 937}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 327, "owner": {"id": 402}, "assignee": {"id": 545}, "organization": {"id": 121}, "project": {"owner": {"id": 759}, "assignee": {"id": 41}, "organization": {"id": 931}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 388, "owner": {"id": 491}, "assignee": {"id": 531}, "organization": {"id": 665}, "project": {"owner": {"id": 764}, "assignee": {"id": 57}, "organization": {"id": 910}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 390, "owner": {"id": 452}, "assignee": {"id": 539}, "organization": {"id": 607}, "project": {"owner": {"id": 796}, "assignee": {"id": 73}, "organization": {"id": 951}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 249}, "user": {"role": null}}}, "resource": {"id": 333, "owner": {"id": 437}, "assignee": {"id": 532}, "organization": {"id": 122}, "project": {"owner": {"id": 781}, "assignee": {"id": 33}, "organization": {"id": 938}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 473}, "assignee": {"id": 524}, "organization": {"id": 193}, "project": {"owner": {"id": 789}, "assignee": {"id": 68}, "organization": {"id": 911}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"id": 319, "owner": {"id": 494}, "assignee": {"id": 571}, "organization": {"id": 607}, "project": {"owner": {"id": 787}, "assignee": {"id": 33}, "organization": {"id": 900}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 416}, "assignee": {"id": 585}, "organization": {"id": 632}, "project": {"owner": {"id": 735}, "assignee": {"id": 20}, "organization": {"id": 935}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 482}, "assignee": {"id": 580}, "organization": {"id": 135}, "project": {"owner": {"id": 796}, "assignee": {"id": 26}, "organization": {"id": 901}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 320, "owner": {"id": 415}, "assignee": {"id": 530}, "organization": {"id": 133}, "project": {"owner": {"id": 745}, "assignee": {"id": 6}, "organization": {"id": 986}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"id": 381, "owner": {"id": 460}, "assignee": {"id": 599}, "organization": {"id": 680}, "project": {"owner": {"id": 777}, "assignee": {"id": 60}, "organization": {"id": 948}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"id": 399, "owner": {"id": 455}, "assignee": {"id": 504}, "organization": {"id": 683}, "project": {"owner": {"id": 776}, "assignee": {"id": 31}, "organization": {"id": 974}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 472}, "assignee": {"id": 504}, "organization": {"id": 116}, "project": {"owner": {"id": 734}, "assignee": {"id": 18}, "organization": {"id": 911}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 494}, "assignee": {"id": 529}, "organization": {"id": 179}, "project": {"owner": {"id": 778}, "assignee": {"id": 42}, "organization": {"id": 995}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 488}, "assignee": {"id": 520}, "organization": {"id": 605}, "project": {"owner": {"id": 716}, "assignee": {"id": 12}, "organization": {"id": 922}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 267}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 489}, "assignee": {"id": 509}, "organization": {"id": 652}, "project": {"owner": {"id": 772}, "assignee": {"id": 84}, "organization": {"id": 988}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"id": 301, "owner": {"id": 464}, "assignee": {"id": 594}, "organization": {"id": 147}, "project": {"owner": {"id": 774}, "assignee": {"id": 99}, "organization": {"id": 938}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 409}, "assignee": {"id": 523}, "organization": {"id": 185}, "project": {"owner": {"id": 706}, "assignee": {"id": 60}, "organization": {"id": 978}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"id": 391, "owner": {"id": 408}, "assignee": {"id": 509}, "organization": {"id": 695}, "project": {"owner": {"id": 764}, "assignee": {"id": 37}, "organization": {"id": 907}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 409}, "assignee": {"id": 597}, "organization": {"id": 668}, "project": {"owner": {"id": 784}, "assignee": {"id": 3}, "organization": {"id": 977}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 258}, "user": {"role": "worker"}}}, "resource": {"id": 343, "owner": {"id": 416}, "assignee": {"id": 545}, "organization": {"id": 124}, "project": {"owner": {"id": 792}, "assignee": {"id": 97}, "organization": {"id": 985}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 481}, "assignee": {"id": 597}, "organization": {"id": 134}, "project": {"owner": {"id": 704}, "assignee": {"id": 26}, "organization": {"id": 979}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 209}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 463}, "assignee": {"id": 501}, "organization": {"id": 633}, "project": {"owner": {"id": 720}, "assignee": {"id": 78}, "organization": {"id": 941}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 309, "owner": {"id": 497}, "assignee": {"id": 574}, "organization": {"id": 603}, "project": {"owner": {"id": 796}, "assignee": {"id": 13}, "organization": {"id": 933}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 413}, "assignee": {"id": 575}, "organization": {"id": 191}, "project": {"owner": {"id": 737}, "assignee": {"id": 10}, "organization": {"id": 909}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 223}, "user": {"role": null}}}, "resource": {"id": 381, "owner": {"id": 441}, "assignee": {"id": 536}, "organization": {"id": 151}, "project": {"owner": {"id": 786}, "assignee": {"id": 74}, "organization": {"id": 966}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 207}, "user": {"role": null}}}, "resource": {"id": 301, "owner": {"id": 430}, "assignee": {"id": 561}, "organization": {"id": 660}, "project": {"owner": {"id": 775}, "assignee": {"id": 21}, "organization": {"id": 931}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 359, "owner": {"id": 472}, "assignee": {"id": 505}, "organization": {"id": 656}, "project": {"owner": {"id": 792}, "assignee": {"id": 4}, "organization": {"id": 935}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"id": 350, "owner": {"id": 415}, "assignee": {"id": 528}, "organization": {"id": 176}, "project": {"owner": {"id": 764}, "assignee": {"id": 50}, "organization": {"id": 906}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"id": 371, "owner": {"id": 468}, "assignee": {"id": 522}, "organization": {"id": 144}, "project": {"owner": {"id": 721}, "assignee": {"id": 23}, "organization": {"id": 962}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 352, "owner": {"id": 470}, "assignee": {"id": 557}, "organization": {"id": 674}, "project": {"owner": {"id": 700}, "assignee": {"id": 39}, "organization": {"id": 966}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 456}, "assignee": {"id": 526}, "organization": {"id": 687}, "project": {"owner": {"id": 784}, "assignee": {"id": 24}, "organization": {"id": 999}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 373, "owner": {"id": 457}, "assignee": {"id": 583}, "organization": {"id": 106}, "project": {"owner": {"id": 731}, "assignee": {"id": 34}, "organization": {"id": 928}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 317, "owner": {"id": 418}, "assignee": {"id": 517}, "organization": {"id": 130}, "project": {"owner": {"id": 786}, "assignee": {"id": 3}, "organization": {"id": 907}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 340, "owner": {"id": 413}, "assignee": {"id": 592}, "organization": {"id": 675}, "project": {"owner": {"id": 791}, "assignee": {"id": 69}, "organization": {"id": 969}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 122, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 462}, "assignee": {"id": 587}, "organization": {"id": 663}, "project": {"owner": {"id": 756}, "assignee": {"id": 13}, "organization": {"id": 989}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 245}, "user": {"role": "supervisor"}}}, "resource": {"id": 390, "owner": {"id": 483}, "assignee": {"id": 526}, "organization": {"id": 186}, "project": {"owner": {"id": 747}, "assignee": {"id": 49}, "organization": {"id": 965}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 68, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"id": 352, "owner": {"id": 419}, "assignee": {"id": 531}, "organization": {"id": 152}, "project": {"owner": {"id": 756}, "assignee": {"id": 68}, "organization": {"id": 924}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 174, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"id": 351, "owner": {"id": 400}, "assignee": {"id": 574}, "organization": {"id": 693}, "project": {"owner": {"id": 761}, "assignee": {"id": 86}, "organization": {"id": 989}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 404}, "assignee": {"id": 538}, "organization": {"id": 619}, "project": {"owner": {"id": 711}, "assignee": {"id": 30}, "organization": {"id": 957}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 68, "privilege": "user"}, "organization": {"id": 165, "owner": {"id": 262}, "user": {"role": "worker"}}}, "resource": {"id": 378, "owner": {"id": 447}, "assignee": {"id": 566}, "organization": {"id": 165}, "project": {"owner": {"id": 782}, "assignee": {"id": 68}, "organization": {"id": 923}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"id": 351, "owner": {"id": 493}, "assignee": {"id": 523}, "organization": {"id": 134}, "project": {"owner": {"id": 759}, "assignee": {"id": 10}, "organization": {"id": 908}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"id": 347, "owner": {"id": 474}, "assignee": {"id": 574}, "organization": {"id": 654}, "project": {"owner": {"id": 757}, "assignee": {"id": 31}, "organization": {"id": 906}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 209}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 423}, "assignee": {"id": 503}, "organization": {"id": 661}, "project": {"owner": {"id": 744}, "assignee": {"id": 87}, "organization": {"id": 921}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"id": 362, "owner": {"id": 450}, "assignee": {"id": 570}, "organization": {"id": 115}, "project": {"owner": {"id": 720}, "assignee": {"id": 42}, "organization": {"id": 965}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 408}, "assignee": {"id": 530}, "organization": {"id": 103}, "project": {"owner": {"id": 709}, "assignee": {"id": 17}, "organization": {"id": 966}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"id": 388, "owner": {"id": 455}, "assignee": {"id": 514}, "organization": {"id": 638}, "project": {"owner": {"id": 796}, "assignee": {"id": 64}, "organization": {"id": 941}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 409}, "assignee": {"id": 584}, "organization": {"id": 656}, "project": {"owner": {"id": 751}, "assignee": {"id": 86}, "organization": {"id": 971}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 33}, "user": {"role": "owner"}}}, "resource": {"id": 349, "owner": {"id": 448}, "assignee": {"id": 519}, "organization": {"id": 155}, "project": {"owner": {"id": 737}, "assignee": {"id": 33}, "organization": {"id": 971}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 317, "owner": {"id": 421}, "assignee": {"id": 535}, "organization": {"id": 146}, "project": {"owner": {"id": 734}, "assignee": {"id": 37}, "organization": {"id": 934}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 438}, "assignee": {"id": 584}, "organization": {"id": 647}, "project": {"owner": {"id": 754}, "assignee": {"id": 86}, "organization": {"id": 997}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 340, "owner": {"id": 489}, "assignee": {"id": 538}, "organization": {"id": 691}, "project": {"owner": {"id": 714}, "assignee": {"id": 65}, "organization": {"id": 947}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 150, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"id": 366, "owner": {"id": 485}, "assignee": {"id": 568}, "organization": {"id": 150}, "project": {"owner": {"id": 716}, "assignee": {"id": 32}, "organization": {"id": 934}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 188, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 406}, "assignee": {"id": 564}, "organization": {"id": 188}, "project": {"owner": {"id": 774}, "assignee": {"id": 59}, "organization": {"id": 973}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 388, "owner": {"id": 476}, "assignee": {"id": 549}, "organization": {"id": 611}, "project": {"owner": {"id": 752}, "assignee": {"id": 86}, "organization": {"id": 926}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 450}, "assignee": {"id": 597}, "organization": {"id": 659}, "project": {"owner": {"id": 777}, "assignee": {"id": 87}, "organization": {"id": 925}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"id": 314, "owner": {"id": 410}, "assignee": {"id": 531}, "organization": {"id": 169}, "project": {"owner": {"id": 759}, "assignee": {"id": 22}, "organization": {"id": 922}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 156, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 403}, "assignee": {"id": 502}, "organization": {"id": 156}, "project": {"owner": {"id": 797}, "assignee": {"id": 93}, "organization": {"id": 972}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 468}, "assignee": {"id": 517}, "organization": {"id": 685}, "project": {"owner": {"id": 793}, "assignee": {"id": 97}, "organization": {"id": 905}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 330, "owner": {"id": 418}, "assignee": {"id": 516}, "organization": {"id": 619}, "project": {"owner": {"id": 714}, "assignee": {"id": 81}, "organization": {"id": 940}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 214}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 487}, "assignee": {"id": 565}, "organization": {"id": 191}, "project": {"owner": {"id": 746}, "assignee": {"id": 77}, "organization": {"id": 953}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 250}, "user": {"role": "worker"}}}, "resource": {"id": 368, "owner": {"id": 416}, "assignee": {"id": 557}, "organization": {"id": 145}, "project": {"owner": {"id": 705}, "assignee": {"id": 7}, "organization": {"id": 902}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 326, "owner": {"id": 401}, "assignee": {"id": 563}, "organization": {"id": 665}, "project": {"owner": {"id": 733}, "assignee": {"id": 80}, "organization": {"id": 913}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 457}, "assignee": {"id": 501}, "organization": {"id": 691}, "project": {"owner": {"id": 773}, "assignee": {"id": 0}, "organization": {"id": 990}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 264}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 487}, "assignee": {"id": 583}, "organization": {"id": 153}, "project": {"owner": {"id": 782}, "assignee": {"id": 4}, "organization": {"id": 959}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 421}, "assignee": {"id": 535}, "organization": {"id": 169}, "project": {"owner": {"id": 798}, "assignee": {"id": 37}, "organization": {"id": 956}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 204}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 405}, "assignee": {"id": 593}, "organization": {"id": 690}, "project": {"owner": {"id": 708}, "assignee": {"id": 33}, "organization": {"id": 931}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 430}, "assignee": {"id": 515}, "organization": {"id": 654}, "project": {"owner": {"id": 725}, "assignee": {"id": 82}, "organization": {"id": 962}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 440}, "assignee": {"id": 593}, "organization": {"id": 106}, "project": {"owner": {"id": 747}, "assignee": {"id": 62}, "organization": {"id": 940}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 480}, "assignee": {"id": 507}, "organization": {"id": 158}, "project": {"owner": {"id": 785}, "assignee": {"id": 87}, "organization": {"id": 998}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 396, "owner": {"id": 496}, "assignee": {"id": 574}, "organization": {"id": 642}, "project": {"owner": {"id": 795}, "assignee": {"id": 54}, "organization": {"id": 958}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 20}, "user": {"role": "owner"}}}, "resource": {"id": 380, "owner": {"id": 421}, "assignee": {"id": 563}, "organization": {"id": 662}, "project": {"owner": {"id": 736}, "assignee": {"id": 20}, "organization": {"id": 915}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 484}, "assignee": {"id": 513}, "organization": {"id": 109}, "project": {"owner": {"id": 767}, "assignee": {"id": 76}, "organization": {"id": 997}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 472}, "assignee": {"id": 515}, "organization": {"id": 183}, "project": {"owner": {"id": 786}, "assignee": {"id": 24}, "organization": {"id": 942}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 340, "owner": {"id": 415}, "assignee": {"id": 577}, "organization": {"id": 621}, "project": {"owner": {"id": 724}, "assignee": {"id": 20}, "organization": {"id": 932}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 156, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 377, "owner": {"id": 455}, "assignee": {"id": 557}, "organization": {"id": 692}, "project": {"owner": {"id": 717}, "assignee": {"id": 16}, "organization": {"id": 960}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"id": 320, "owner": {"id": 462}, "assignee": {"id": 502}, "organization": {"id": 181}, "project": {"owner": {"id": 737}, "assignee": {"id": 10}, "organization": {"id": 921}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 450}, "assignee": {"id": 599}, "organization": {"id": 152}, "project": {"owner": {"id": 715}, "assignee": {"id": 4}, "organization": {"id": 901}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 445}, "assignee": {"id": 543}, "organization": {"id": 663}, "project": {"owner": {"id": 790}, "assignee": {"id": 42}, "organization": {"id": 971}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 471}, "assignee": {"id": 543}, "organization": {"id": 621}, "project": {"owner": {"id": 792}, "assignee": {"id": 6}, "organization": {"id": 983}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 262}, "user": {"role": "worker"}}}, "resource": {"id": 303, "owner": {"id": 458}, "assignee": {"id": 503}, "organization": {"id": 108}, "project": {"owner": {"id": 724}, "assignee": {"id": 45}, "organization": {"id": 920}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 398, "owner": {"id": 447}, "assignee": {"id": 546}, "organization": {"id": 161}, "project": {"owner": {"id": 716}, "assignee": {"id": 71}, "organization": {"id": 905}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 445}, "assignee": {"id": 552}, "organization": {"id": 634}, "project": {"owner": {"id": 768}, "assignee": {"id": 79}, "organization": {"id": 902}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 176, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 438}, "assignee": {"id": 593}, "organization": {"id": 662}, "project": {"owner": {"id": 769}, "assignee": {"id": 72}, "organization": {"id": 931}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 365, "owner": {"id": 442}, "assignee": {"id": 548}, "organization": {"id": 177}, "project": {"owner": {"id": 776}, "assignee": {"id": 9}, "organization": {"id": 943}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"id": 317, "owner": {"id": 408}, "assignee": {"id": 537}, "organization": {"id": 198}, "project": {"owner": {"id": 721}, "assignee": {"id": 51}, "organization": {"id": 901}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 325, "owner": {"id": 444}, "assignee": {"id": 521}, "organization": {"id": 638}, "project": {"owner": {"id": 734}, "assignee": {"id": 31}, "organization": {"id": 970}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 271}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 494}, "assignee": {"id": 579}, "organization": {"id": 602}, "project": {"owner": {"id": 797}, "assignee": {"id": 96}, "organization": {"id": 958}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 37, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 391, "owner": {"id": 37}, "assignee": {"id": 504}, "organization": {"id": 196}, "project": {"owner": {"id": 733}, "assignee": {"id": 851}, "organization": {"id": 988}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"id": 361, "owner": {"id": 61}, "assignee": {"id": 504}, "organization": {"id": 148}, "project": {"owner": {"id": 722}, "assignee": {"id": 821}, "organization": {"id": 990}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 53}, "assignee": {"id": 506}, "organization": {"id": 637}, "project": {"owner": {"id": 701}, "assignee": {"id": 868}, "organization": {"id": 934}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"id": 383, "owner": {"id": 36}, "assignee": {"id": 593}, "organization": {"id": 623}, "project": {"owner": {"id": 716}, "assignee": {"id": 855}, "organization": {"id": 938}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 102, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 353, "owner": {"id": 55}, "assignee": {"id": 595}, "organization": {"id": 102}, "project": {"owner": {"id": 779}, "assignee": {"id": 808}, "organization": {"id": 989}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 12}, "assignee": {"id": 567}, "organization": {"id": 138}, "project": {"owner": {"id": 762}, "assignee": {"id": 802}, "organization": {"id": 985}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 289}, "user": {"role": "maintainer"}}}, "resource": {"id": 358, "owner": {"id": 11}, "assignee": {"id": 568}, "organization": {"id": 655}, "project": {"owner": {"id": 743}, "assignee": {"id": 873}, "organization": {"id": 932}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 2}, "assignee": {"id": 522}, "organization": {"id": 658}, "project": {"owner": {"id": 755}, "assignee": {"id": 842}, "organization": {"id": 982}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 58}, "assignee": {"id": 543}, "organization": {"id": 155}, "project": {"owner": {"id": 740}, "assignee": {"id": 829}, "organization": {"id": 932}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 282}, "user": {"role": "supervisor"}}}, "resource": {"id": 343, "owner": {"id": 59}, "assignee": {"id": 573}, "organization": {"id": 138}, "project": {"owner": {"id": 708}, "assignee": {"id": 865}, "organization": {"id": 946}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 94}, "assignee": {"id": 567}, "organization": {"id": 620}, "project": {"owner": {"id": 775}, "assignee": {"id": 864}, "organization": {"id": 982}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 76, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 218}, "user": {"role": "supervisor"}}}, "resource": {"id": 340, "owner": {"id": 76}, "assignee": {"id": 518}, "organization": {"id": 688}, "project": {"owner": {"id": 790}, "assignee": {"id": 882}, "organization": {"id": 974}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"id": 312, "owner": {"id": 20}, "assignee": {"id": 511}, "organization": {"id": 134}, "project": {"owner": {"id": 722}, "assignee": {"id": 801}, "organization": {"id": 969}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 190, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 72}, "assignee": {"id": 501}, "organization": {"id": 190}, "project": {"owner": {"id": 709}, "assignee": {"id": 825}, "organization": {"id": 926}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"id": 312, "owner": {"id": 98}, "assignee": {"id": 594}, "organization": {"id": 671}, "project": {"owner": {"id": 723}, "assignee": {"id": 855}, "organization": {"id": 921}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"id": 383, "owner": {"id": 39}, "assignee": {"id": 595}, "organization": {"id": 683}, "project": {"owner": {"id": 736}, "assignee": {"id": 808}, "organization": {"id": 994}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 49}, "assignee": {"id": 594}, "organization": {"id": 166}, "project": {"owner": {"id": 799}, "assignee": {"id": 886}, "organization": {"id": 983}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 127, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 88}, "assignee": {"id": 528}, "organization": {"id": 127}, "project": {"owner": {"id": 769}, "assignee": {"id": 895}, "organization": {"id": 989}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 264}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 61}, "assignee": {"id": 565}, "organization": {"id": 685}, "project": {"owner": {"id": 735}, "assignee": {"id": 870}, "organization": {"id": 954}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 222}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 4}, "assignee": {"id": 592}, "organization": {"id": 639}, "project": {"owner": {"id": 726}, "assignee": {"id": 807}, "organization": {"id": 915}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"id": 386, "owner": {"id": 49}, "assignee": {"id": 595}, "organization": {"id": 195}, "project": {"owner": {"id": 747}, "assignee": {"id": 806}, "organization": {"id": 934}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 5}, "assignee": {"id": 524}, "organization": {"id": 161}, "project": {"owner": {"id": 712}, "assignee": {"id": 869}, "organization": {"id": 939}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 10}, "user": {"role": "owner"}}}, "resource": {"id": 374, "owner": {"id": 10}, "assignee": {"id": 589}, "organization": {"id": 649}, "project": {"owner": {"id": 702}, "assignee": {"id": 894}, "organization": {"id": 902}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 159, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 31}, "assignee": {"id": 551}, "organization": {"id": 621}, "project": {"owner": {"id": 767}, "assignee": {"id": 894}, "organization": {"id": 962}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 34}, "assignee": {"id": 521}, "organization": {"id": 161}, "project": {"owner": {"id": 792}, "assignee": {"id": 821}, "organization": {"id": 924}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 242}, "user": {"role": "maintainer"}}}, "resource": {"id": 325, "owner": {"id": 71}, "assignee": {"id": 565}, "organization": {"id": 153}, "project": {"owner": {"id": 778}, "assignee": {"id": 814}, "organization": {"id": 939}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"id": 388, "owner": {"id": 36}, "assignee": {"id": 568}, "organization": {"id": 687}, "project": {"owner": {"id": 703}, "assignee": {"id": 831}, "organization": {"id": 932}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 123, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 23}, "assignee": {"id": 587}, "organization": {"id": 635}, "project": {"owner": {"id": 796}, "assignee": {"id": 812}, "organization": {"id": 966}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 248}, "user": {"role": "supervisor"}}}, "resource": {"id": 333, "owner": {"id": 83}, "assignee": {"id": 568}, "organization": {"id": 185}, "project": {"owner": {"id": 713}, "assignee": {"id": 852}, "organization": {"id": 973}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"id": 346, "owner": {"id": 98}, "assignee": {"id": 524}, "organization": {"id": 115}, "project": {"owner": {"id": 796}, "assignee": {"id": 895}, "organization": {"id": 928}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 95}, "assignee": {"id": 582}, "organization": {"id": 666}, "project": {"owner": {"id": 723}, "assignee": {"id": 880}, "organization": {"id": 923}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 245}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 98}, "assignee": {"id": 580}, "organization": {"id": 661}, "project": {"owner": {"id": 714}, "assignee": {"id": 866}, "organization": {"id": 927}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 316, "owner": {"id": 37}, "assignee": {"id": 547}, "organization": {"id": 119}, "project": {"owner": {"id": 797}, "assignee": {"id": 818}, "organization": {"id": 916}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"id": 320, "owner": {"id": 72}, "assignee": {"id": 572}, "organization": {"id": 133}, "project": {"owner": {"id": 738}, "assignee": {"id": 802}, "organization": {"id": 931}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"id": 319, "owner": {"id": 69}, "assignee": {"id": 593}, "organization": {"id": 633}, "project": {"owner": {"id": 766}, "assignee": {"id": 800}, "organization": {"id": 953}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"id": 339, "owner": {"id": 40}, "assignee": {"id": 506}, "organization": {"id": 627}, "project": {"owner": {"id": 732}, "assignee": {"id": 879}, "organization": {"id": 968}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 70}, "assignee": {"id": 519}, "organization": {"id": 151}, "project": {"owner": {"id": 735}, "assignee": {"id": 833}, "organization": {"id": 951}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 222}, "user": {"role": null}}}, "resource": {"id": 364, "owner": {"id": 32}, "assignee": {"id": 566}, "organization": {"id": 152}, "project": {"owner": {"id": 772}, "assignee": {"id": 890}, "organization": {"id": 972}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 36}, "assignee": {"id": 567}, "organization": {"id": 644}, "project": {"owner": {"id": 796}, "assignee": {"id": 864}, "organization": {"id": 954}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 319, "owner": {"id": 98}, "assignee": {"id": 502}, "organization": {"id": 629}, "project": {"owner": {"id": 782}, "assignee": {"id": 868}, "organization": {"id": 950}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"id": 309, "owner": {"id": 52}, "assignee": {"id": 589}, "organization": {"id": 147}, "project": {"owner": {"id": 718}, "assignee": {"id": 849}, "organization": {"id": 940}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 69}, "assignee": {"id": 551}, "organization": {"id": 160}, "project": {"owner": {"id": 797}, "assignee": {"id": 886}, "organization": {"id": 919}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 97}, "assignee": {"id": 533}, "organization": {"id": 629}, "project": {"owner": {"id": 773}, "assignee": {"id": 861}, "organization": {"id": 913}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 393, "owner": {"id": 63}, "assignee": {"id": 583}, "organization": {"id": 657}, "project": {"owner": {"id": 719}, "assignee": {"id": 826}, "organization": {"id": 918}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 20, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 20}, "assignee": {"id": 539}, "organization": {"id": 132}, "project": {"owner": {"id": 776}, "assignee": {"id": 895}, "organization": {"id": 931}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 255}, "user": {"role": "maintainer"}}}, "resource": {"id": 303, "owner": {"id": 58}, "assignee": {"id": 571}, "organization": {"id": 179}, "project": {"owner": {"id": 779}, "assignee": {"id": 861}, "organization": {"id": 901}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"id": 362, "owner": {"id": 46}, "assignee": {"id": 599}, "organization": {"id": 632}, "project": {"owner": {"id": 753}, "assignee": {"id": 830}, "organization": {"id": 916}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"id": 364, "owner": {"id": 57}, "assignee": {"id": 527}, "organization": {"id": 665}, "project": {"owner": {"id": 797}, "assignee": {"id": 858}, "organization": {"id": 942}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"id": 359, "owner": {"id": 58}, "assignee": {"id": 596}, "organization": {"id": 129}, "project": {"owner": {"id": 731}, "assignee": {"id": 824}, "organization": {"id": 907}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 5}, "assignee": {"id": 527}, "organization": {"id": 196}, "project": {"owner": {"id": 791}, "assignee": {"id": 853}, "organization": {"id": 909}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 345, "owner": {"id": 53}, "assignee": {"id": 586}, "organization": {"id": 621}, "project": {"owner": {"id": 776}, "assignee": {"id": 896}, "organization": {"id": 908}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 69}, "assignee": {"id": 592}, "organization": {"id": 694}, "project": {"owner": {"id": 790}, "assignee": {"id": 872}, "organization": {"id": 995}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 292}, "user": {"role": "worker"}}}, "resource": {"id": 377, "owner": {"id": 41}, "assignee": {"id": 501}, "organization": {"id": 121}, "project": {"owner": {"id": 798}, "assignee": {"id": 837}, "organization": {"id": 970}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 373, "owner": {"id": 4}, "assignee": {"id": 546}, "organization": {"id": 164}, "project": {"owner": {"id": 777}, "assignee": {"id": 837}, "organization": {"id": 946}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 18}, "assignee": {"id": 508}, "organization": {"id": 636}, "project": {"owner": {"id": 713}, "assignee": {"id": 874}, "organization": {"id": 946}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 243}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 64}, "assignee": {"id": 591}, "organization": {"id": 636}, "project": {"owner": {"id": 744}, "assignee": {"id": 883}, "organization": {"id": 955}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"id": 302, "owner": {"id": 84}, "assignee": {"id": 535}, "organization": {"id": 103}, "project": {"owner": {"id": 765}, "assignee": {"id": 804}, "organization": {"id": 963}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 14, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 373, "owner": {"id": 14}, "assignee": {"id": 563}, "organization": {"id": 108}, "project": {"owner": {"id": 790}, "assignee": {"id": 872}, "organization": {"id": 996}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 12}, "assignee": {"id": 571}, "organization": {"id": 667}, "project": {"owner": {"id": 731}, "assignee": {"id": 802}, "organization": {"id": 929}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 81, "privilege": "user"}, "organization": {"id": 192, "owner": {"id": 237}, "user": {"role": null}}}, "resource": {"id": 391, "owner": {"id": 81}, "assignee": {"id": 522}, "organization": {"id": 617}, "project": {"owner": {"id": 789}, "assignee": {"id": 809}, "organization": {"id": 939}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 96, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 96}, "assignee": {"id": 562}, "organization": {"id": 182}, "project": {"owner": {"id": 738}, "assignee": {"id": 861}, "organization": {"id": 957}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 141, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"id": 303, "owner": {"id": 94}, "assignee": {"id": 595}, "organization": {"id": 141}, "project": {"owner": {"id": 703}, "assignee": {"id": 858}, "organization": {"id": 992}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 64}, "user": {"role": "owner"}}}, "resource": {"id": 384, "owner": {"id": 64}, "assignee": {"id": 562}, "organization": {"id": 687}, "project": {"owner": {"id": 790}, "assignee": {"id": 882}, "organization": {"id": 948}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 59}, "user": {"role": "owner"}}}, "resource": {"id": 372, "owner": {"id": 59}, "assignee": {"id": 565}, "organization": {"id": 674}, "project": {"owner": {"id": 722}, "assignee": {"id": 867}, "organization": {"id": 915}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 48, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 48}, "assignee": {"id": 506}, "organization": {"id": 161}, "project": {"owner": {"id": 790}, "assignee": {"id": 831}, "organization": {"id": 941}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 356, "owner": {"id": 53}, "assignee": {"id": 573}, "organization": {"id": 174}, "project": {"owner": {"id": 785}, "assignee": {"id": 856}, "organization": {"id": 977}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 47}, "assignee": {"id": 503}, "organization": {"id": 604}, "project": {"owner": {"id": 713}, "assignee": {"id": 871}, "organization": {"id": 981}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"id": 355, "owner": {"id": 16}, "assignee": {"id": 531}, "organization": {"id": 619}, "project": {"owner": {"id": 786}, "assignee": {"id": 803}, "organization": {"id": 968}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 362, "owner": {"id": 46}, "assignee": {"id": 518}, "organization": {"id": 157}, "project": {"owner": {"id": 744}, "assignee": {"id": 810}, "organization": {"id": 913}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 61}, "assignee": {"id": 523}, "organization": {"id": 137}, "project": {"owner": {"id": 703}, "assignee": {"id": 826}, "organization": {"id": 993}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 373, "owner": {"id": 83}, "assignee": {"id": 594}, "organization": {"id": 664}, "project": {"owner": {"id": 792}, "assignee": {"id": 805}, "organization": {"id": 988}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 395, "owner": {"id": 22}, "assignee": {"id": 507}, "organization": {"id": 603}, "project": {"owner": {"id": 711}, "assignee": {"id": 846}, "organization": {"id": 996}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 335, "owner": {"id": 46}, "assignee": {"id": 572}, "organization": {"id": 174}, "project": {"owner": {"id": 772}, "assignee": {"id": 833}, "organization": {"id": 974}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 100, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 2}, "assignee": {"id": 558}, "organization": {"id": 100}, "project": {"owner": {"id": 742}, "assignee": {"id": 824}, "organization": {"id": 947}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 389, "owner": {"id": 28}, "assignee": {"id": 523}, "organization": {"id": 645}, "project": {"owner": {"id": 705}, "assignee": {"id": 816}, "organization": {"id": 927}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 372, "owner": {"id": 4}, "assignee": {"id": 509}, "organization": {"id": 681}, "project": {"owner": {"id": 711}, "assignee": {"id": 823}, "organization": {"id": 994}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 263}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 45}, "assignee": {"id": 589}, "organization": {"id": 131}, "project": {"owner": {"id": 769}, "assignee": {"id": 822}, "organization": {"id": 959}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 380, "owner": {"id": 89}, "assignee": {"id": 512}, "organization": {"id": 130}, "project": {"owner": {"id": 798}, "assignee": {"id": 858}, "organization": {"id": 997}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 23}, "assignee": {"id": 529}, "organization": {"id": 671}, "project": {"owner": {"id": 721}, "assignee": {"id": 870}, "organization": {"id": 906}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 277}, "user": {"role": null}}}, "resource": {"id": 369, "owner": {"id": 40}, "assignee": {"id": 578}, "organization": {"id": 660}, "project": {"owner": {"id": 765}, "assignee": {"id": 825}, "organization": {"id": 959}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 6}, "assignee": {"id": 504}, "organization": {"id": 183}, "project": {"owner": {"id": 776}, "assignee": {"id": 887}, "organization": {"id": 920}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 77}, "user": {"role": "owner"}}}, "resource": {"id": 318, "owner": {"id": 77}, "assignee": {"id": 558}, "organization": {"id": 157}, "project": {"owner": {"id": 760}, "assignee": {"id": 811}, "organization": {"id": 980}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 334, "owner": {"id": 19}, "assignee": {"id": 550}, "organization": {"id": 667}, "project": {"owner": {"id": 714}, "assignee": {"id": 877}, "organization": {"id": 929}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 75}, "assignee": {"id": 554}, "organization": {"id": 654}, "project": {"owner": {"id": 732}, "assignee": {"id": 883}, "organization": {"id": 916}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 340, "owner": {"id": 52}, "assignee": {"id": 542}, "organization": {"id": 131}, "project": {"owner": {"id": 713}, "assignee": {"id": 897}, "organization": {"id": 979}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"id": 356, "owner": {"id": 73}, "assignee": {"id": 553}, "organization": {"id": 185}, "project": {"owner": {"id": 773}, "assignee": {"id": 894}, "organization": {"id": 901}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"id": 318, "owner": {"id": 35}, "assignee": {"id": 584}, "organization": {"id": 682}, "project": {"owner": {"id": 726}, "assignee": {"id": 878}, "organization": {"id": 914}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 0}, "assignee": {"id": 508}, "organization": {"id": 614}, "project": {"owner": {"id": 784}, "assignee": {"id": 823}, "organization": {"id": 941}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 78}, "assignee": {"id": 570}, "organization": {"id": 111}, "project": {"owner": {"id": 731}, "assignee": {"id": 800}, "organization": {"id": 955}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 335, "owner": {"id": 26}, "assignee": {"id": 559}, "organization": {"id": 105}, "project": {"owner": {"id": 720}, "assignee": {"id": 831}, "organization": {"id": 949}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 90}, "assignee": {"id": 553}, "organization": {"id": 634}, "project": {"owner": {"id": 794}, "assignee": {"id": 897}, "organization": {"id": 949}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 338, "owner": {"id": 12}, "assignee": {"id": 537}, "organization": {"id": 601}, "project": {"owner": {"id": 702}, "assignee": {"id": 812}, "organization": {"id": 974}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 67}, "assignee": {"id": 545}, "organization": {"id": 184}, "project": {"owner": {"id": 724}, "assignee": {"id": 872}, "organization": {"id": 948}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": {"id": 150, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"id": 326, "owner": {"id": 47}, "assignee": {"id": 511}, "organization": {"id": 150}, "project": {"owner": {"id": 796}, "assignee": {"id": 805}, "organization": {"id": 919}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"id": 390, "owner": {"id": 52}, "assignee": {"id": 533}, "organization": {"id": 665}, "project": {"owner": {"id": 724}, "assignee": {"id": 832}, "organization": {"id": 911}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 334, "owner": {"id": 53}, "assignee": {"id": 529}, "organization": {"id": 671}, "project": {"owner": {"id": 756}, "assignee": {"id": 848}, "organization": {"id": 924}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 336, "owner": {"id": 55}, "assignee": {"id": 592}, "organization": {"id": 177}, "project": {"owner": {"id": 727}, "assignee": {"id": 899}, "organization": {"id": 975}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 363, "owner": {"id": 25}, "assignee": {"id": 560}, "organization": {"id": 131}, "project": {"owner": {"id": 766}, "assignee": {"id": 843}, "organization": {"id": 924}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 9}, "assignee": {"id": 576}, "organization": {"id": 652}, "project": {"owner": {"id": 753}, "assignee": {"id": 810}, "organization": {"id": 984}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 142, "owner": {"id": 222}, "user": {"role": null}}}, "resource": {"id": 342, "owner": {"id": 55}, "assignee": {"id": 501}, "organization": {"id": 659}, "project": {"owner": {"id": 795}, "assignee": {"id": 886}, "organization": {"id": 917}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 380, "owner": {"id": 428}, "assignee": {"id": 39}, "organization": {"id": 154}, "project": {"owner": {"id": 778}, "assignee": {"id": 880}, "organization": {"id": 990}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"id": 391, "owner": {"id": 459}, "assignee": {"id": 49}, "organization": {"id": 130}, "project": {"owner": {"id": 797}, "assignee": {"id": 840}, "organization": {"id": 997}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 439}, "assignee": {"id": 19}, "organization": {"id": 626}, "project": {"owner": {"id": 794}, "assignee": {"id": 801}, "organization": {"id": 927}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 382, "owner": {"id": 424}, "assignee": {"id": 86}, "organization": {"id": 676}, "project": {"owner": {"id": 716}, "assignee": {"id": 860}, "organization": {"id": 932}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 255}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 498}, "assignee": {"id": 66}, "organization": {"id": 199}, "project": {"owner": {"id": 716}, "assignee": {"id": 857}, "organization": {"id": 964}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 137, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 365, "owner": {"id": 496}, "assignee": {"id": 98}, "organization": {"id": 137}, "project": {"owner": {"id": 733}, "assignee": {"id": 829}, "organization": {"id": 927}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 381, "owner": {"id": 419}, "assignee": {"id": 66}, "organization": {"id": 692}, "project": {"owner": {"id": 742}, "assignee": {"id": 814}, "organization": {"id": 955}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 156, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"id": 345, "owner": {"id": 415}, "assignee": {"id": 59}, "organization": {"id": 661}, "project": {"owner": {"id": 744}, "assignee": {"id": 845}, "organization": {"id": 940}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"id": 337, "owner": {"id": 404}, "assignee": {"id": 3}, "organization": {"id": 143}, "project": {"owner": {"id": 763}, "assignee": {"id": 899}, "organization": {"id": 917}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 156, "owner": {"id": 291}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 497}, "assignee": {"id": 97}, "organization": {"id": 156}, "project": {"owner": {"id": 716}, "assignee": {"id": 825}, "organization": {"id": 914}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 370, "owner": {"id": 496}, "assignee": {"id": 23}, "organization": {"id": 693}, "project": {"owner": {"id": 790}, "assignee": {"id": 849}, "organization": {"id": 924}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 329, "owner": {"id": 456}, "assignee": {"id": 40}, "organization": {"id": 667}, "project": {"owner": {"id": 750}, "assignee": {"id": 889}, "organization": {"id": 951}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 355, "owner": {"id": 420}, "assignee": {"id": 72}, "organization": {"id": 153}, "project": {"owner": {"id": 783}, "assignee": {"id": 850}, "organization": {"id": 997}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 202}, "user": {"role": "worker"}}}, "resource": {"id": 347, "owner": {"id": 449}, "assignee": {"id": 66}, "organization": {"id": 112}, "project": {"owner": {"id": 769}, "assignee": {"id": 891}, "organization": {"id": 948}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 224}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 437}, "assignee": {"id": 34}, "organization": {"id": 670}, "project": {"owner": {"id": 725}, "assignee": {"id": 816}, "organization": {"id": 983}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"id": 328, "owner": {"id": 416}, "assignee": {"id": 74}, "organization": {"id": 675}, "project": {"owner": {"id": 741}, "assignee": {"id": 831}, "organization": {"id": 980}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 373, "owner": {"id": 434}, "assignee": {"id": 12}, "organization": {"id": 182}, "project": {"owner": {"id": 763}, "assignee": {"id": 848}, "organization": {"id": 962}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 243}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 450}, "assignee": {"id": 6}, "organization": {"id": 178}, "project": {"owner": {"id": 777}, "assignee": {"id": 861}, "organization": {"id": 954}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 172, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"id": 317, "owner": {"id": 489}, "assignee": {"id": 63}, "organization": {"id": 684}, "project": {"owner": {"id": 773}, "assignee": {"id": 837}, "organization": {"id": 984}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": {"id": 127, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 381, "owner": {"id": 454}, "assignee": {"id": 31}, "organization": {"id": 618}, "project": {"owner": {"id": 792}, "assignee": {"id": 838}, "organization": {"id": 922}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 374, "owner": {"id": 421}, "assignee": {"id": 21}, "organization": {"id": 121}, "project": {"owner": {"id": 754}, "assignee": {"id": 802}, "organization": {"id": 991}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 384, "owner": {"id": 495}, "assignee": {"id": 81}, "organization": {"id": 121}, "project": {"owner": {"id": 717}, "assignee": {"id": 867}, "organization": {"id": 933}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 488}, "assignee": {"id": 42}, "organization": {"id": 698}, "project": {"owner": {"id": 767}, "assignee": {"id": 830}, "organization": {"id": 953}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 33}, "user": {"role": "owner"}}}, "resource": {"id": 316, "owner": {"id": 444}, "assignee": {"id": 33}, "organization": {"id": 615}, "project": {"owner": {"id": 717}, "assignee": {"id": 812}, "organization": {"id": 927}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 281}, "user": {"role": "maintainer"}}}, "resource": {"id": 336, "owner": {"id": 406}, "assignee": {"id": 39}, "organization": {"id": 137}, "project": {"owner": {"id": 702}, "assignee": {"id": 816}, "organization": {"id": 926}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 174, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 312, "owner": {"id": 480}, "assignee": {"id": 43}, "organization": {"id": 174}, "project": {"owner": {"id": 700}, "assignee": {"id": 813}, "organization": {"id": 959}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 474}, "assignee": {"id": 53}, "organization": {"id": 695}, "project": {"owner": {"id": 741}, "assignee": {"id": 880}, "organization": {"id": 905}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 364, "owner": {"id": 431}, "assignee": {"id": 59}, "organization": {"id": 633}, "project": {"owner": {"id": 733}, "assignee": {"id": 876}, "organization": {"id": 924}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 415}, "assignee": {"id": 31}, "organization": {"id": 198}, "project": {"owner": {"id": 754}, "assignee": {"id": 867}, "organization": {"id": 992}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"id": 366, "owner": {"id": 483}, "assignee": {"id": 18}, "organization": {"id": 122}, "project": {"owner": {"id": 755}, "assignee": {"id": 830}, "organization": {"id": 956}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 359, "owner": {"id": 491}, "assignee": {"id": 78}, "organization": {"id": 639}, "project": {"owner": {"id": 763}, "assignee": {"id": 812}, "organization": {"id": 940}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"id": 379, "owner": {"id": 447}, "assignee": {"id": 23}, "organization": {"id": 674}, "project": {"owner": {"id": 774}, "assignee": {"id": 868}, "organization": {"id": 902}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 328, "owner": {"id": 464}, "assignee": {"id": 62}, "organization": {"id": 151}, "project": {"owner": {"id": 759}, "assignee": {"id": 853}, "organization": {"id": 918}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 228}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 422}, "assignee": {"id": 77}, "organization": {"id": 114}, "project": {"owner": {"id": 710}, "assignee": {"id": 877}, "organization": {"id": 959}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 320, "owner": {"id": 444}, "assignee": {"id": 13}, "organization": {"id": 644}, "project": {"owner": {"id": 727}, "assignee": {"id": 875}, "organization": {"id": 951}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 123, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 446}, "assignee": {"id": 82}, "organization": {"id": 643}, "project": {"owner": {"id": 741}, "assignee": {"id": 821}, "organization": {"id": 909}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 364, "owner": {"id": 420}, "assignee": {"id": 2}, "organization": {"id": 180}, "project": {"owner": {"id": 716}, "assignee": {"id": 842}, "organization": {"id": 913}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 381, "owner": {"id": 487}, "assignee": {"id": 19}, "organization": {"id": 116}, "project": {"owner": {"id": 708}, "assignee": {"id": 851}, "organization": {"id": 944}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 223}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 477}, "assignee": {"id": 49}, "organization": {"id": 668}, "project": {"owner": {"id": 780}, "assignee": {"id": 819}, "organization": {"id": 956}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 452}, "assignee": {"id": 31}, "organization": {"id": 617}, "project": {"owner": {"id": 782}, "assignee": {"id": 871}, "organization": {"id": 986}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 172, "owner": {"id": 72}, "user": {"role": "owner"}}}, "resource": {"id": 391, "owner": {"id": 417}, "assignee": {"id": 72}, "organization": {"id": 172}, "project": {"owner": {"id": 752}, "assignee": {"id": 800}, "organization": {"id": 917}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 145, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 343, "owner": {"id": 401}, "assignee": {"id": 54}, "organization": {"id": 145}, "project": {"owner": {"id": 746}, "assignee": {"id": 893}, "organization": {"id": 968}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 33}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 419}, "assignee": {"id": 33}, "organization": {"id": 665}, "project": {"owner": {"id": 717}, "assignee": {"id": 816}, "organization": {"id": 922}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 174, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 326, "owner": {"id": 478}, "assignee": {"id": 6}, "organization": {"id": 684}, "project": {"owner": {"id": 712}, "assignee": {"id": 854}, "organization": {"id": 915}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": {"id": 128, "owner": {"id": 290}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 431}, "assignee": {"id": 38}, "organization": {"id": 128}, "project": {"owner": {"id": 798}, "assignee": {"id": 867}, "organization": {"id": 909}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"id": 314, "owner": {"id": 481}, "assignee": {"id": 74}, "organization": {"id": 161}, "project": {"owner": {"id": 726}, "assignee": {"id": 841}, "organization": {"id": 921}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"id": 366, "owner": {"id": 485}, "assignee": {"id": 29}, "organization": {"id": 685}, "project": {"owner": {"id": 759}, "assignee": {"id": 804}, "organization": {"id": 944}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 348, "owner": {"id": 420}, "assignee": {"id": 65}, "organization": {"id": 697}, "project": {"owner": {"id": 787}, "assignee": {"id": 877}, "organization": {"id": 910}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"id": 336, "owner": {"id": 499}, "assignee": {"id": 88}, "organization": {"id": 143}, "project": {"owner": {"id": 729}, "assignee": {"id": 850}, "organization": {"id": 987}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 447}, "assignee": {"id": 1}, "organization": {"id": 155}, "project": {"owner": {"id": 734}, "assignee": {"id": 816}, "organization": {"id": 966}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"id": 305, "owner": {"id": 447}, "assignee": {"id": 76}, "organization": {"id": 611}, "project": {"owner": {"id": 748}, "assignee": {"id": 894}, "organization": {"id": 952}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"id": 320, "owner": {"id": 487}, "assignee": {"id": 34}, "organization": {"id": 605}, "project": {"owner": {"id": 737}, "assignee": {"id": 867}, "organization": {"id": 925}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"id": 370, "owner": {"id": 483}, "assignee": {"id": 6}, "organization": {"id": 104}, "project": {"owner": {"id": 785}, "assignee": {"id": 827}, "organization": {"id": 911}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 228}, "user": {"role": "worker"}}}, "resource": {"id": 397, "owner": {"id": 420}, "assignee": {"id": 41}, "organization": {"id": 103}, "project": {"owner": {"id": 733}, "assignee": {"id": 829}, "organization": {"id": 945}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 128, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 314, "owner": {"id": 402}, "assignee": {"id": 96}, "organization": {"id": 613}, "project": {"owner": {"id": 703}, "assignee": {"id": 813}, "organization": {"id": 947}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 68, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 441}, "assignee": {"id": 68}, "organization": {"id": 631}, "project": {"owner": {"id": 746}, "assignee": {"id": 831}, "organization": {"id": 983}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"id": 320, "owner": {"id": 402}, "assignee": {"id": 91}, "organization": {"id": 181}, "project": {"owner": {"id": 779}, "assignee": {"id": 850}, "organization": {"id": 973}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 434}, "assignee": {"id": 52}, "organization": {"id": 107}, "project": {"owner": {"id": 771}, "assignee": {"id": 811}, "organization": {"id": 901}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 273}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 400}, "assignee": {"id": 87}, "organization": {"id": 658}, "project": {"owner": {"id": 738}, "assignee": {"id": 842}, "organization": {"id": 980}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 495}, "assignee": {"id": 26}, "organization": {"id": 649}, "project": {"owner": {"id": 720}, "assignee": {"id": 828}, "organization": {"id": 914}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 444}, "assignee": {"id": 74}, "organization": {"id": 151}, "project": {"owner": {"id": 769}, "assignee": {"id": 869}, "organization": {"id": 984}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 387, "owner": {"id": 483}, "assignee": {"id": 32}, "organization": {"id": 191}, "project": {"owner": {"id": 740}, "assignee": {"id": 839}, "organization": {"id": 957}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 391, "owner": {"id": 435}, "assignee": {"id": 13}, "organization": {"id": 691}, "project": {"owner": {"id": 703}, "assignee": {"id": 863}, "organization": {"id": 966}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 428}, "assignee": {"id": 62}, "organization": {"id": 649}, "project": {"owner": {"id": 703}, "assignee": {"id": 810}, "organization": {"id": 935}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 340, "owner": {"id": 408}, "assignee": {"id": 32}, "organization": {"id": 146}, "project": {"owner": {"id": 782}, "assignee": {"id": 841}, "organization": {"id": 920}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 458}, "assignee": {"id": 18}, "organization": {"id": 142}, "project": {"owner": {"id": 772}, "assignee": {"id": 838}, "organization": {"id": 962}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 303, "owner": {"id": 402}, "assignee": {"id": 26}, "organization": {"id": 671}, "project": {"owner": {"id": 779}, "assignee": {"id": 807}, "organization": {"id": 973}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 276}, "user": {"role": "maintainer"}}}, "resource": {"id": 362, "owner": {"id": 417}, "assignee": {"id": 40}, "organization": {"id": 618}, "project": {"owner": {"id": 748}, "assignee": {"id": 815}, "organization": {"id": 981}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 103, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 374, "owner": {"id": 433}, "assignee": {"id": 38}, "organization": {"id": 103}, "project": {"owner": {"id": 764}, "assignee": {"id": 894}, "organization": {"id": 905}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 441}, "assignee": {"id": 7}, "organization": {"id": 122}, "project": {"owner": {"id": 700}, "assignee": {"id": 868}, "organization": {"id": 960}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 426}, "assignee": {"id": 19}, "organization": {"id": 612}, "project": {"owner": {"id": 742}, "assignee": {"id": 871}, "organization": {"id": 998}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"id": 393, "owner": {"id": 443}, "assignee": {"id": 70}, "organization": {"id": 686}, "project": {"owner": {"id": 770}, "assignee": {"id": 893}, "organization": {"id": 933}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 228}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 483}, "assignee": {"id": 74}, "organization": {"id": 190}, "project": {"owner": {"id": 765}, "assignee": {"id": 806}, "organization": {"id": 926}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 250}, "user": {"role": "worker"}}}, "resource": {"id": 341, "owner": {"id": 440}, "assignee": {"id": 29}, "organization": {"id": 130}, "project": {"owner": {"id": 770}, "assignee": {"id": 839}, "organization": {"id": 987}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 472}, "assignee": {"id": 19}, "organization": {"id": 613}, "project": {"owner": {"id": 724}, "assignee": {"id": 817}, "organization": {"id": 903}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 25, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 395, "owner": {"id": 417}, "assignee": {"id": 25}, "organization": {"id": 670}, "project": {"owner": {"id": 743}, "assignee": {"id": 806}, "organization": {"id": 913}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 263}, "user": {"role": null}}}, "resource": {"id": 320, "owner": {"id": 444}, "assignee": {"id": 68}, "organization": {"id": 124}, "project": {"owner": {"id": 756}, "assignee": {"id": 857}, "organization": {"id": 948}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 301, "owner": {"id": 408}, "assignee": {"id": 84}, "organization": {"id": 181}, "project": {"owner": {"id": 745}, "assignee": {"id": 832}, "organization": {"id": 979}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 204}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 408}, "assignee": {"id": 41}, "organization": {"id": 600}, "project": {"owner": {"id": 702}, "assignee": {"id": 868}, "organization": {"id": 916}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 363, "owner": {"id": 449}, "assignee": {"id": 8}, "organization": {"id": 648}, "project": {"owner": {"id": 755}, "assignee": {"id": 878}, "organization": {"id": 933}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 488}, "assignee": {"id": 6}, "organization": {"id": 184}, "project": {"owner": {"id": 737}, "assignee": {"id": 810}, "organization": {"id": 999}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 432}, "assignee": {"id": 48}, "organization": {"id": 192}, "project": {"owner": {"id": 754}, "assignee": {"id": 817}, "organization": {"id": 939}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 449}, "assignee": {"id": 26}, "organization": {"id": 617}, "project": {"owner": {"id": 717}, "assignee": {"id": 846}, "organization": {"id": 967}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 8}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 408}, "assignee": {"id": 8}, "organization": {"id": 677}, "project": {"owner": {"id": 767}, "assignee": {"id": 835}, "organization": {"id": 934}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 429}, "assignee": {"id": 60}, "organization": {"id": 123}, "project": {"owner": {"id": 719}, "assignee": {"id": 873}, "organization": {"id": 926}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 388, "owner": {"id": 460}, "assignee": {"id": 76}, "organization": {"id": 168}, "project": {"owner": {"id": 780}, "assignee": {"id": 806}, "organization": {"id": 975}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 467}, "assignee": {"id": 4}, "organization": {"id": 636}, "project": {"owner": {"id": 796}, "assignee": {"id": 847}, "organization": {"id": 973}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 416}, "assignee": {"id": 7}, "organization": {"id": 603}, "project": {"owner": {"id": 724}, "assignee": {"id": 852}, "organization": {"id": 930}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"id": 385, "owner": {"id": 411}, "assignee": {"id": 43}, "organization": {"id": 103}, "project": {"owner": {"id": 766}, "assignee": {"id": 816}, "organization": {"id": 947}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 322, "owner": {"id": 445}, "assignee": {"id": 43}, "organization": {"id": 113}, "project": {"owner": {"id": 720}, "assignee": {"id": 821}, "organization": {"id": 983}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 364, "owner": {"id": 483}, "assignee": {"id": 52}, "organization": {"id": 662}, "project": {"owner": {"id": 762}, "assignee": {"id": 890}, "organization": {"id": 911}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 345, "owner": {"id": 496}, "assignee": {"id": 79}, "organization": {"id": 638}, "project": {"owner": {"id": 723}, "assignee": {"id": 807}, "organization": {"id": 911}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"id": 353, "owner": {"id": 457}, "assignee": {"id": 65}, "organization": {"id": 112}, "project": {"owner": {"id": 767}, "assignee": {"id": 893}, "organization": {"id": 918}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"id": 320, "owner": {"id": 457}, "assignee": {"id": 95}, "organization": {"id": 134}, "project": {"owner": {"id": 715}, "assignee": {"id": 867}, "organization": {"id": 919}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 357, "owner": {"id": 425}, "assignee": {"id": 53}, "organization": {"id": 678}, "project": {"owner": {"id": 716}, "assignee": {"id": 890}, "organization": {"id": 970}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"id": 320, "owner": {"id": 420}, "assignee": {"id": 54}, "organization": {"id": 603}, "project": {"owner": {"id": 753}, "assignee": {"id": 890}, "organization": {"id": 907}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"id": 318, "owner": {"id": 470}, "assignee": {"id": 38}, "organization": {"id": 127}, "project": {"owner": {"id": 713}, "assignee": {"id": 851}, "organization": {"id": 946}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"id": 305, "owner": {"id": 476}, "assignee": {"id": 83}, "organization": {"id": 127}, "project": {"owner": {"id": 741}, "assignee": {"id": 843}, "organization": {"id": 965}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 431}, "assignee": {"id": 27}, "organization": {"id": 673}, "project": {"owner": {"id": 790}, "assignee": {"id": 860}, "organization": {"id": 967}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 421}, "assignee": {"id": 97}, "organization": {"id": 620}, "project": {"owner": {"id": 725}, "assignee": {"id": 863}, "organization": {"id": 930}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 479}, "assignee": {"id": 501}, "organization": {"id": 140}, "project": {"owner": {"id": 716}, "assignee": {"id": 853}, "organization": {"id": 987}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 80}, "user": {"role": "owner"}}}, "resource": {"id": 322, "owner": {"id": 405}, "assignee": {"id": 557}, "organization": {"id": 147}, "project": {"owner": {"id": 779}, "assignee": {"id": 862}, "organization": {"id": 972}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 353, "owner": {"id": 496}, "assignee": {"id": 528}, "organization": {"id": 637}, "project": {"owner": {"id": 773}, "assignee": {"id": 871}, "organization": {"id": 983}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 414}, "assignee": {"id": 504}, "organization": {"id": 675}, "project": {"owner": {"id": 724}, "assignee": {"id": 811}, "organization": {"id": 900}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"id": 304, "owner": {"id": 461}, "assignee": {"id": 589}, "organization": {"id": 111}, "project": {"owner": {"id": 722}, "assignee": {"id": 861}, "organization": {"id": 976}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"id": 398, "owner": {"id": 498}, "assignee": {"id": 518}, "organization": {"id": 196}, "project": {"owner": {"id": 713}, "assignee": {"id": 804}, "organization": {"id": 959}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 490}, "assignee": {"id": 536}, "organization": {"id": 627}, "project": {"owner": {"id": 789}, "assignee": {"id": 832}, "organization": {"id": 927}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 460}, "assignee": {"id": 581}, "organization": {"id": 612}, "project": {"owner": {"id": 722}, "assignee": {"id": 898}, "organization": {"id": 902}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"id": 374, "owner": {"id": 493}, "assignee": {"id": 578}, "organization": {"id": 111}, "project": {"owner": {"id": 740}, "assignee": {"id": 862}, "organization": {"id": 932}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 353, "owner": {"id": 406}, "assignee": {"id": 517}, "organization": {"id": 176}, "project": {"owner": {"id": 710}, "assignee": {"id": 871}, "organization": {"id": 989}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 394, "owner": {"id": 416}, "assignee": {"id": 548}, "organization": {"id": 679}, "project": {"owner": {"id": 767}, "assignee": {"id": 813}, "organization": {"id": 915}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 426}, "assignee": {"id": 575}, "organization": {"id": 687}, "project": {"owner": {"id": 712}, "assignee": {"id": 807}, "organization": {"id": 915}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 37, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 436}, "assignee": {"id": 590}, "organization": {"id": 187}, "project": {"owner": {"id": 721}, "assignee": {"id": 840}, "organization": {"id": 946}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 338, "owner": {"id": 448}, "assignee": {"id": 530}, "organization": {"id": 184}, "project": {"owner": {"id": 773}, "assignee": {"id": 814}, "organization": {"id": 938}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 463}, "assignee": {"id": 511}, "organization": {"id": 661}, "project": {"owner": {"id": 756}, "assignee": {"id": 852}, "organization": {"id": 995}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 475}, "assignee": {"id": 584}, "organization": {"id": 639}, "project": {"owner": {"id": 784}, "assignee": {"id": 873}, "organization": {"id": 970}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 320, "owner": {"id": 425}, "assignee": {"id": 584}, "organization": {"id": 144}, "project": {"owner": {"id": 710}, "assignee": {"id": 898}, "organization": {"id": 940}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 493}, "assignee": {"id": 561}, "organization": {"id": 167}, "project": {"owner": {"id": 714}, "assignee": {"id": 864}, "organization": {"id": 985}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 197, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"id": 331, "owner": {"id": 478}, "assignee": {"id": 516}, "organization": {"id": 657}, "project": {"owner": {"id": 741}, "assignee": {"id": 896}, "organization": {"id": 907}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"id": 326, "owner": {"id": 427}, "assignee": {"id": 568}, "organization": {"id": 687}, "project": {"owner": {"id": 770}, "assignee": {"id": 850}, "organization": {"id": 946}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 455}, "assignee": {"id": 523}, "organization": {"id": 126}, "project": {"owner": {"id": 784}, "assignee": {"id": 804}, "organization": {"id": 997}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 352, "owner": {"id": 466}, "assignee": {"id": 568}, "organization": {"id": 160}, "project": {"owner": {"id": 790}, "assignee": {"id": 861}, "organization": {"id": 956}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 493}, "assignee": {"id": 515}, "organization": {"id": 658}, "project": {"owner": {"id": 757}, "assignee": {"id": 879}, "organization": {"id": 955}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 460}, "assignee": {"id": 558}, "organization": {"id": 689}, "project": {"owner": {"id": 701}, "assignee": {"id": 844}, "organization": {"id": 968}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 398, "owner": {"id": 419}, "assignee": {"id": 597}, "organization": {"id": 151}, "project": {"owner": {"id": 705}, "assignee": {"id": 866}, "organization": {"id": 946}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"id": 348, "owner": {"id": 436}, "assignee": {"id": 550}, "organization": {"id": 198}, "project": {"owner": {"id": 769}, "assignee": {"id": 817}, "organization": {"id": 920}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"id": 368, "owner": {"id": 459}, "assignee": {"id": 599}, "organization": {"id": 609}, "project": {"owner": {"id": 730}, "assignee": {"id": 835}, "organization": {"id": 935}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 432}, "assignee": {"id": 529}, "organization": {"id": 675}, "project": {"owner": {"id": 770}, "assignee": {"id": 879}, "organization": {"id": 936}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 283}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 431}, "assignee": {"id": 574}, "organization": {"id": 158}, "project": {"owner": {"id": 795}, "assignee": {"id": 848}, "organization": {"id": 932}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 468}, "assignee": {"id": 599}, "organization": {"id": 147}, "project": {"owner": {"id": 785}, "assignee": {"id": 827}, "organization": {"id": 960}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 496}, "assignee": {"id": 563}, "organization": {"id": 628}, "project": {"owner": {"id": 772}, "assignee": {"id": 808}, "organization": {"id": 923}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 465}, "assignee": {"id": 505}, "organization": {"id": 625}, "project": {"owner": {"id": 725}, "assignee": {"id": 808}, "organization": {"id": 956}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 189, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 448}, "assignee": {"id": 523}, "organization": {"id": 189}, "project": {"owner": {"id": 786}, "assignee": {"id": 849}, "organization": {"id": 913}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 405}, "assignee": {"id": 561}, "organization": {"id": 152}, "project": {"owner": {"id": 778}, "assignee": {"id": 854}, "organization": {"id": 958}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"id": 355, "owner": {"id": 477}, "assignee": {"id": 545}, "organization": {"id": 643}, "project": {"owner": {"id": 756}, "assignee": {"id": 861}, "organization": {"id": 939}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 475}, "assignee": {"id": 552}, "organization": {"id": 616}, "project": {"owner": {"id": 744}, "assignee": {"id": 831}, "organization": {"id": 947}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 317, "owner": {"id": 427}, "assignee": {"id": 582}, "organization": {"id": 108}, "project": {"owner": {"id": 765}, "assignee": {"id": 867}, "organization": {"id": 900}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"id": 312, "owner": {"id": 464}, "assignee": {"id": 596}, "organization": {"id": 129}, "project": {"owner": {"id": 788}, "assignee": {"id": 899}, "organization": {"id": 969}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 460}, "assignee": {"id": 516}, "organization": {"id": 645}, "project": {"owner": {"id": 743}, "assignee": {"id": 811}, "organization": {"id": 962}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 496}, "assignee": {"id": 566}, "organization": {"id": 646}, "project": {"owner": {"id": 783}, "assignee": {"id": 848}, "organization": {"id": 948}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 122, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 345, "owner": {"id": 438}, "assignee": {"id": 532}, "organization": {"id": 122}, "project": {"owner": {"id": 734}, "assignee": {"id": 840}, "organization": {"id": 927}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 416}, "assignee": {"id": 581}, "organization": {"id": 167}, "project": {"owner": {"id": 736}, "assignee": {"id": 821}, "organization": {"id": 924}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 45, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 45}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 440}, "assignee": {"id": 560}, "organization": {"id": 673}, "project": {"owner": {"id": 768}, "assignee": {"id": 807}, "organization": {"id": 925}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 484}, "assignee": {"id": 554}, "organization": {"id": 634}, "project": {"owner": {"id": 789}, "assignee": {"id": 831}, "organization": {"id": 977}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:owner", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 350, "owner": {"id": 486}, "assignee": {"id": 551}, "organization": {"id": 170}, "project": {"owner": {"id": 706}, "assignee": {"id": 850}, "organization": {"id": 997}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 436}, "assignee": {"id": 548}, "organization": {"id": 166}, "project": {"owner": {"id": 779}, "assignee": {"id": 825}, "organization": {"id": 978}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"id": 327, "owner": {"id": 443}, "assignee": {"id": 506}, "organization": {"id": 628}, "project": {"owner": {"id": 790}, "assignee": {"id": 846}, "organization": {"id": 912}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 422}, "assignee": {"id": 540}, "organization": {"id": 609}, "project": {"owner": {"id": 783}, "assignee": {"id": 826}, "organization": {"id": 915}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 295}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 495}, "assignee": {"id": 540}, "organization": {"id": 176}, "project": {"owner": {"id": 739}, "assignee": {"id": 835}, "organization": {"id": 913}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 362, "owner": {"id": 427}, "assignee": {"id": 569}, "organization": {"id": 169}, "project": {"owner": {"id": 742}, "assignee": {"id": 884}, "organization": {"id": 928}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 461}, "assignee": {"id": 565}, "organization": {"id": 660}, "project": {"owner": {"id": 799}, "assignee": {"id": 898}, "organization": {"id": 905}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 469}, "assignee": {"id": 513}, "organization": {"id": 615}, "project": {"owner": {"id": 705}, "assignee": {"id": 868}, "organization": {"id": 976}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 408}, "assignee": {"id": 500}, "organization": {"id": 178}, "project": {"owner": {"id": 708}, "assignee": {"id": 822}, "organization": {"id": 998}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 347, "owner": {"id": 415}, "assignee": {"id": 524}, "organization": {"id": 137}, "project": {"owner": {"id": 724}, "assignee": {"id": 844}, "organization": {"id": 977}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 288}, "user": {"role": "worker"}}}, "resource": {"id": 398, "owner": {"id": 485}, "assignee": {"id": 546}, "organization": {"id": 693}, "project": {"owner": {"id": 779}, "assignee": {"id": 837}, "organization": {"id": 926}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 422}, "assignee": {"id": 548}, "organization": {"id": 698}, "project": {"owner": {"id": 775}, "assignee": {"id": 847}, "organization": {"id": 994}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 165, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 410}, "assignee": {"id": 528}, "organization": {"id": 165}, "project": {"owner": {"id": 729}, "assignee": {"id": 810}, "organization": {"id": 956}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 401}, "assignee": {"id": 546}, "organization": {"id": 127}, "project": {"owner": {"id": 759}, "assignee": {"id": 821}, "organization": {"id": 928}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 371, "owner": {"id": 444}, "assignee": {"id": 520}, "organization": {"id": 649}, "project": {"owner": {"id": 760}, "assignee": {"id": 883}, "organization": {"id": 945}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 463}, "assignee": {"id": 500}, "organization": {"id": 694}, "project": {"owner": {"id": 729}, "assignee": {"id": 887}, "organization": {"id": 991}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"id": 319, "owner": {"id": 433}, "assignee": {"id": 569}, "organization": {"id": 105}, "project": {"owner": {"id": 751}, "assignee": {"id": 867}, "organization": {"id": 971}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 48, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"id": 340, "owner": {"id": 417}, "assignee": {"id": 578}, "organization": {"id": 167}, "project": {"owner": {"id": 791}, "assignee": {"id": 866}, "organization": {"id": 944}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": {"id": 129, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"id": 364, "owner": {"id": 429}, "assignee": {"id": 557}, "organization": {"id": 604}, "project": {"owner": {"id": 737}, "assignee": {"id": 893}, "organization": {"id": 999}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"id": 317, "owner": {"id": 441}, "assignee": {"id": 532}, "organization": {"id": 632}, "project": {"owner": {"id": 746}, "assignee": {"id": 889}, "organization": {"id": 982}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 447}, "assignee": {"id": 552}, "organization": {"id": 180}, "project": {"owner": {"id": 711}, "assignee": {"id": 883}, "organization": {"id": 954}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"id": 314, "owner": {"id": 497}, "assignee": {"id": 539}, "organization": {"id": 194}, "project": {"owner": {"id": 776}, "assignee": {"id": 873}, "organization": {"id": 954}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 376, "owner": {"id": 480}, "assignee": {"id": 550}, "organization": {"id": 649}, "project": {"owner": {"id": 794}, "assignee": {"id": 856}, "organization": {"id": 909}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 333, "owner": {"id": 405}, "assignee": {"id": 513}, "organization": {"id": 661}, "project": {"owner": {"id": 745}, "assignee": {"id": 855}, "organization": {"id": 970}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"id": 399, "owner": {"id": 414}, "assignee": {"id": 508}, "organization": {"id": 170}, "project": {"owner": {"id": 712}, "assignee": {"id": 835}, "organization": {"id": 914}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 419}, "assignee": {"id": 549}, "organization": {"id": 164}, "project": {"owner": {"id": 785}, "assignee": {"id": 884}, "organization": {"id": 981}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 200}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 482}, "assignee": {"id": 568}, "organization": {"id": 601}, "project": {"owner": {"id": 707}, "assignee": {"id": 858}, "organization": {"id": 949}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 25, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 264}, "user": {"role": "supervisor"}}}, "resource": {"id": 337, "owner": {"id": 416}, "assignee": {"id": 597}, "organization": {"id": 699}, "project": {"owner": {"id": 712}, "assignee": {"id": 892}, "organization": {"id": 914}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 330, "owner": {"id": 480}, "assignee": {"id": 520}, "organization": {"id": 176}, "project": {"owner": {"id": 769}, "assignee": {"id": 899}, "organization": {"id": 910}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"id": 366, "owner": {"id": 412}, "assignee": {"id": 546}, "organization": {"id": 138}, "project": {"owner": {"id": 701}, "assignee": {"id": 850}, "organization": {"id": 927}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 493}, "assignee": {"id": 588}, "organization": {"id": 673}, "project": {"owner": {"id": 776}, "assignee": {"id": 827}, "organization": {"id": 942}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 361, "owner": {"id": 482}, "assignee": {"id": 545}, "organization": {"id": 651}, "project": {"owner": {"id": 765}, "assignee": {"id": 881}, "organization": {"id": 928}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 424}, "assignee": {"id": 561}, "organization": {"id": 134}, "project": {"owner": {"id": 778}, "assignee": {"id": 819}, "organization": {"id": 918}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 266}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 435}, "assignee": {"id": 548}, "organization": {"id": 102}, "project": {"owner": {"id": 744}, "assignee": {"id": 851}, "organization": {"id": 961}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 417}, "assignee": {"id": 532}, "organization": {"id": 606}, "project": {"owner": {"id": 798}, "assignee": {"id": 806}, "organization": {"id": 951}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 254}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 415}, "assignee": {"id": 518}, "organization": {"id": 610}, "project": {"owner": {"id": 700}, "assignee": {"id": 838}, "organization": {"id": 939}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 432}, "assignee": {"id": 542}, "organization": {"id": 102}, "project": {"owner": {"id": 774}, "assignee": {"id": 855}, "organization": {"id": 978}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 487}, "assignee": {"id": 525}, "organization": {"id": 189}, "project": {"owner": {"id": 716}, "assignee": {"id": 811}, "organization": {"id": 979}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 190, "owner": {"id": 15}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 466}, "assignee": {"id": 575}, "organization": {"id": 693}, "project": {"owner": {"id": 771}, "assignee": {"id": 892}, "organization": {"id": 965}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"id": 320, "owner": {"id": 468}, "assignee": {"id": 595}, "organization": {"id": 657}, "project": {"owner": {"id": 789}, "assignee": {"id": 824}, "organization": {"id": 928}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 320, "owner": {"id": 494}, "assignee": {"id": 578}, "organization": {"id": 155}, "project": {"owner": {"id": 783}, "assignee": {"id": 803}, "organization": {"id": 959}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 362, "owner": {"id": 481}, "assignee": {"id": 563}, "organization": {"id": 119}, "project": {"owner": {"id": 781}, "assignee": {"id": 826}, "organization": {"id": 907}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 328, "owner": {"id": 477}, "assignee": {"id": 530}, "organization": {"id": 610}, "project": {"owner": {"id": 738}, "assignee": {"id": 873}, "organization": {"id": 937}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"id": 346, "owner": {"id": 426}, "assignee": {"id": 544}, "organization": {"id": 677}, "project": {"owner": {"id": 704}, "assignee": {"id": 885}, "organization": {"id": 951}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 116, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 387, "owner": {"id": 414}, "assignee": {"id": 522}, "organization": {"id": 116}, "project": {"owner": {"id": 750}, "assignee": {"id": 889}, "organization": {"id": 921}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"id": 345, "owner": {"id": 482}, "assignee": {"id": 529}, "organization": {"id": 125}, "project": {"owner": {"id": 734}, "assignee": {"id": 816}, "organization": {"id": 907}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 107, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"id": 346, "owner": {"id": 488}, "assignee": {"id": 545}, "organization": {"id": 663}, "project": {"owner": {"id": 718}, "assignee": {"id": 822}, "organization": {"id": 934}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"id": 376, "owner": {"id": 445}, "assignee": {"id": 525}, "organization": {"id": 675}, "project": {"owner": {"id": 741}, "assignee": {"id": 802}, "organization": {"id": 993}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 382, "owner": {"id": 461}, "assignee": {"id": 575}, "organization": {"id": 101}, "project": {"owner": {"id": 786}, "assignee": {"id": 832}, "organization": {"id": 966}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"id": 342, "owner": {"id": 464}, "assignee": {"id": 566}, "organization": {"id": 105}, "project": {"owner": {"id": 736}, "assignee": {"id": 836}, "organization": {"id": 959}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"id": 321, "owner": {"id": 462}, "assignee": {"id": 533}, "organization": {"id": 662}, "project": {"owner": {"id": 783}, "assignee": {"id": 882}, "organization": {"id": 902}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"id": 309, "owner": {"id": 432}, "assignee": {"id": 547}, "organization": {"id": 697}, "project": {"owner": {"id": 748}, "assignee": {"id": 864}, "organization": {"id": 913}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 237}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 484}, "assignee": {"id": 557}, "organization": {"id": 102}, "project": {"owner": {"id": 774}, "assignee": {"id": 813}, "organization": {"id": 948}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 421}, "assignee": {"id": 520}, "organization": {"id": 146}, "project": {"owner": {"id": 720}, "assignee": {"id": 823}, "organization": {"id": 925}}}} } -test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 313, "owner": {"id": 442}, "assignee": {"id": 579}, "organization": {"id": 651}, "project": {"owner": {"id": 720}, "assignee": {"id": 878}, "organization": {"id": 902}}}} +test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 391, "owner": {"id": 497}, "assignee": {"id": 535}, "organization": {"id": 677}, "project": {"owner": {"id": 734}, "assignee": {"id": 845}, "organization": {"id": 985}}}} } -test_scope_DELETE_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": null}, "resource": {"id": 345, "owner": {"id": 434}, "assignee": {"id": 511}, "organization": {"id": 620}, "project": {"owner": {"id": 74}, "assignee": {"id": 865}, "organization": {"id": 949}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": null}, "resource": {"id": 321, "owner": {"id": 460}, "assignee": {"id": 516}, "organization": {"id": 697}, "project": {"owner": {"id": 77}, "assignee": {"id": 856}, "organization": {"id": 996}}}} } -test_scope_DELETE_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": null}, "resource": {"id": 362, "owner": {"id": 403}, "assignee": {"id": 569}, "organization": {"id": 652}, "project": {"owner": {"id": 53}, "assignee": {"id": 849}, "organization": {"id": 956}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": null}, "resource": {"id": 387, "owner": {"id": 484}, "assignee": {"id": 595}, "organization": {"id": 664}, "project": {"owner": {"id": 12}, "assignee": {"id": 877}, "organization": {"id": 959}}}} } -test_scope_DELETE_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": null}, "resource": {"id": 346, "owner": {"id": 422}, "assignee": {"id": 501}, "organization": {"id": 606}, "project": {"owner": {"id": 29}, "assignee": {"id": 897}, "organization": {"id": 973}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": null}, "resource": {"id": 305, "owner": {"id": 441}, "assignee": {"id": 520}, "organization": {"id": 656}, "project": {"owner": {"id": 57}, "assignee": {"id": 890}, "organization": {"id": 988}}}} } -test_scope_DELETE_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": null}, "resource": {"id": 305, "owner": {"id": 406}, "assignee": {"id": 579}, "organization": {"id": 665}, "project": {"owner": {"id": 41}, "assignee": {"id": 806}, "organization": {"id": 934}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": null}, "resource": {"id": 349, "owner": {"id": 425}, "assignee": {"id": 590}, "organization": {"id": 690}, "project": {"owner": {"id": 58}, "assignee": {"id": 858}, "organization": {"id": 909}}}} } -test_scope_DELETE_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": null}, "resource": {"id": 307, "owner": {"id": 494}, "assignee": {"id": 500}, "organization": {"id": 638}, "project": {"owner": {"id": 79}, "assignee": {"id": 860}, "organization": {"id": 963}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": null}, "resource": {"id": 365, "owner": {"id": 460}, "assignee": {"id": 556}, "organization": {"id": 648}, "project": {"owner": {"id": 5}, "assignee": {"id": 885}, "organization": {"id": 940}}}} } -test_scope_DELETE_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": null}, "resource": {"id": 385, "owner": {"id": 445}, "assignee": {"id": 524}, "organization": {"id": 630}, "project": {"owner": {"id": 721}, "assignee": {"id": 66}, "organization": {"id": 998}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": null}, "resource": {"id": 332, "owner": {"id": 412}, "assignee": {"id": 507}, "organization": {"id": 649}, "project": {"owner": {"id": 736}, "assignee": {"id": 58}, "organization": {"id": 951}}}} } -test_scope_DELETE_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": null}, "resource": {"id": 379, "owner": {"id": 484}, "assignee": {"id": 542}, "organization": {"id": 639}, "project": {"owner": {"id": 746}, "assignee": {"id": 12}, "organization": {"id": 918}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 496}, "assignee": {"id": 563}, "organization": {"id": 649}, "project": {"owner": {"id": 738}, "assignee": {"id": 1}, "organization": {"id": 961}}}} } -test_scope_DELETE_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 22, "privilege": "user"}, "organization": null}, "resource": {"id": 378, "owner": {"id": 422}, "assignee": {"id": 506}, "organization": {"id": 679}, "project": {"owner": {"id": 710}, "assignee": {"id": 22}, "organization": {"id": 911}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": null}, "resource": {"id": 311, "owner": {"id": 412}, "assignee": {"id": 545}, "organization": {"id": 651}, "project": {"owner": {"id": 756}, "assignee": {"id": 59}, "organization": {"id": 944}}}} } -test_scope_DELETE_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": null}, "resource": {"id": 382, "owner": {"id": 470}, "assignee": {"id": 596}, "organization": {"id": 687}, "project": {"owner": {"id": 774}, "assignee": {"id": 99}, "organization": {"id": 991}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": null}, "resource": {"id": 316, "owner": {"id": 446}, "assignee": {"id": 596}, "organization": {"id": 606}, "project": {"owner": {"id": 795}, "assignee": {"id": 46}, "organization": {"id": 945}}}} } -test_scope_DELETE_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": null}, "resource": {"id": 384, "owner": {"id": 421}, "assignee": {"id": 595}, "organization": {"id": 654}, "project": {"owner": {"id": 778}, "assignee": {"id": 42}, "organization": {"id": 900}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": null}, "resource": {"id": 383, "owner": {"id": 435}, "assignee": {"id": 585}, "organization": {"id": 651}, "project": {"owner": {"id": 752}, "assignee": {"id": 56}, "organization": {"id": 992}}}} } -test_scope_DELETE_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": null}, "resource": {"id": 328, "owner": {"id": 3}, "assignee": {"id": 598}, "organization": {"id": 616}, "project": {"owner": {"id": 728}, "assignee": {"id": 844}, "organization": {"id": 971}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": null}, "resource": {"id": 346, "owner": {"id": 83}, "assignee": {"id": 548}, "organization": {"id": 675}, "project": {"owner": {"id": 758}, "assignee": {"id": 873}, "organization": {"id": 973}}}} } -test_scope_DELETE_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": null}, "resource": {"id": 323, "owner": {"id": 13}, "assignee": {"id": 549}, "organization": {"id": 683}, "project": {"owner": {"id": 716}, "assignee": {"id": 857}, "organization": {"id": 973}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": null}, "resource": {"id": 387, "owner": {"id": 76}, "assignee": {"id": 591}, "organization": {"id": 620}, "project": {"owner": {"id": 779}, "assignee": {"id": 887}, "organization": {"id": 995}}}} } -test_scope_DELETE_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": null}, "resource": {"id": 323, "owner": {"id": 46}, "assignee": {"id": 580}, "organization": {"id": 677}, "project": {"owner": {"id": 721}, "assignee": {"id": 884}, "organization": {"id": 959}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": null}, "resource": {"id": 379, "owner": {"id": 34}, "assignee": {"id": 572}, "organization": {"id": 629}, "project": {"owner": {"id": 762}, "assignee": {"id": 865}, "organization": {"id": 958}}}} } -test_scope_DELETE_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": null}, "resource": {"id": 328, "owner": {"id": 72}, "assignee": {"id": 534}, "organization": {"id": 614}, "project": {"owner": {"id": 744}, "assignee": {"id": 810}, "organization": {"id": 960}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": null}, "resource": {"id": 323, "owner": {"id": 67}, "assignee": {"id": 514}, "organization": {"id": 658}, "project": {"owner": {"id": 704}, "assignee": {"id": 882}, "organization": {"id": 967}}}} } -test_scope_DELETE_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": null}, "resource": {"id": 320, "owner": {"id": 34}, "assignee": {"id": 521}, "organization": {"id": 653}, "project": {"owner": {"id": 710}, "assignee": {"id": 893}, "organization": {"id": 900}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": null}, "resource": {"id": 397, "owner": {"id": 55}, "assignee": {"id": 568}, "organization": {"id": 609}, "project": {"owner": {"id": 798}, "assignee": {"id": 830}, "organization": {"id": 975}}}} } -test_scope_DELETE_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": null}, "resource": {"id": 386, "owner": {"id": 453}, "assignee": {"id": 51}, "organization": {"id": 617}, "project": {"owner": {"id": 782}, "assignee": {"id": 832}, "organization": {"id": 963}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": null}, "resource": {"id": 310, "owner": {"id": 420}, "assignee": {"id": 86}, "organization": {"id": 692}, "project": {"owner": {"id": 739}, "assignee": {"id": 807}, "organization": {"id": 976}}}} } -test_scope_DELETE_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": null}, "resource": {"id": 316, "owner": {"id": 417}, "assignee": {"id": 46}, "organization": {"id": 688}, "project": {"owner": {"id": 703}, "assignee": {"id": 823}, "organization": {"id": 995}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": null}, "resource": {"id": 372, "owner": {"id": 402}, "assignee": {"id": 12}, "organization": {"id": 660}, "project": {"owner": {"id": 763}, "assignee": {"id": 895}, "organization": {"id": 976}}}} } -test_scope_DELETE_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": null}, "resource": {"id": 358, "owner": {"id": 451}, "assignee": {"id": 88}, "organization": {"id": 608}, "project": {"owner": {"id": 779}, "assignee": {"id": 870}, "organization": {"id": 968}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 482}, "assignee": {"id": 36}, "organization": {"id": 627}, "project": {"owner": {"id": 727}, "assignee": {"id": 816}, "organization": {"id": 900}}}} } -test_scope_DELETE_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": null}, "resource": {"id": 357, "owner": {"id": 424}, "assignee": {"id": 64}, "organization": {"id": 632}, "project": {"owner": {"id": 713}, "assignee": {"id": 850}, "organization": {"id": 913}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 25, "privilege": "worker"}, "organization": null}, "resource": {"id": 309, "owner": {"id": 465}, "assignee": {"id": 25}, "organization": {"id": 667}, "project": {"owner": {"id": 773}, "assignee": {"id": 852}, "organization": {"id": 994}}}} } -test_scope_DELETE_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": null}, "resource": {"id": 305, "owner": {"id": 475}, "assignee": {"id": 16}, "organization": {"id": 645}, "project": {"owner": {"id": 762}, "assignee": {"id": 828}, "organization": {"id": 971}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": null}, "resource": {"id": 367, "owner": {"id": 405}, "assignee": {"id": 33}, "organization": {"id": 659}, "project": {"owner": {"id": 765}, "assignee": {"id": 814}, "organization": {"id": 981}}}} } -test_scope_DELETE_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": null}, "resource": {"id": 313, "owner": {"id": 447}, "assignee": {"id": 556}, "organization": {"id": 633}, "project": {"owner": {"id": 711}, "assignee": {"id": 807}, "organization": {"id": 963}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": null}, "resource": {"id": 342, "owner": {"id": 466}, "assignee": {"id": 586}, "organization": {"id": 682}, "project": {"owner": {"id": 718}, "assignee": {"id": 894}, "organization": {"id": 999}}}} } -test_scope_DELETE_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": null}, "resource": {"id": 301, "owner": {"id": 426}, "assignee": {"id": 526}, "organization": {"id": 631}, "project": {"owner": {"id": 783}, "assignee": {"id": 881}, "organization": {"id": 959}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": null}, "resource": {"id": 338, "owner": {"id": 425}, "assignee": {"id": 539}, "organization": {"id": 679}, "project": {"owner": {"id": 795}, "assignee": {"id": 809}, "organization": {"id": 972}}}} } -test_scope_DELETE_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": null}, "resource": {"id": 323, "owner": {"id": 419}, "assignee": {"id": 520}, "organization": {"id": 643}, "project": {"owner": {"id": 775}, "assignee": {"id": 821}, "organization": {"id": 913}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": null}, "resource": {"id": 389, "owner": {"id": 480}, "assignee": {"id": 531}, "organization": {"id": 608}, "project": {"owner": {"id": 704}, "assignee": {"id": 822}, "organization": {"id": 957}}}} } -test_scope_DELETE_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": null}, "resource": {"id": 347, "owner": {"id": 418}, "assignee": {"id": 593}, "organization": {"id": 649}, "project": {"owner": {"id": 716}, "assignee": {"id": 858}, "organization": {"id": 975}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": null}, "resource": {"id": 392, "owner": {"id": 472}, "assignee": {"id": 573}, "organization": {"id": 672}, "project": {"owner": {"id": 795}, "assignee": {"id": 872}, "organization": {"id": 978}}}} } -test_scope_DELETE_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": null}, "resource": {"id": 357, "owner": {"id": 496}, "assignee": {"id": 527}, "organization": {"id": 658}, "project": {"owner": {"id": 702}, "assignee": {"id": 883}, "organization": {"id": 955}}}} +test_scope_EXPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": null}, "resource": {"id": 377, "owner": {"id": 433}, "assignee": {"id": 590}, "organization": {"id": 649}, "project": {"owner": {"id": 712}, "assignee": {"id": 844}, "organization": {"id": 964}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 430}, "assignee": {"id": 521}, "organization": {"id": 104}, "project": {"owner": {"id": 0}, "assignee": {"id": 847}, "organization": {"id": 907}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 324, "owner": {"id": 463}, "assignee": {"id": 515}, "organization": {"id": 168}, "project": {"owner": {"id": 44}, "assignee": {"id": 805}, "organization": {"id": 918}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 403}, "assignee": {"id": 564}, "organization": {"id": 612}, "project": {"owner": {"id": 11}, "assignee": {"id": 816}, "organization": {"id": 983}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 172, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 405}, "assignee": {"id": 525}, "organization": {"id": 603}, "project": {"owner": {"id": 74}, "assignee": {"id": 877}, "organization": {"id": 957}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"id": 331, "owner": {"id": 441}, "assignee": {"id": 517}, "organization": {"id": 198}, "project": {"owner": {"id": 24}, "assignee": {"id": 886}, "organization": {"id": 980}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 472}, "assignee": {"id": 539}, "organization": {"id": 162}, "project": {"owner": {"id": 59}, "assignee": {"id": 864}, "organization": {"id": 924}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 197, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 427}, "assignee": {"id": 543}, "organization": {"id": 659}, "project": {"owner": {"id": 79}, "assignee": {"id": 827}, "organization": {"id": 981}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"id": 374, "owner": {"id": 451}, "assignee": {"id": 568}, "organization": {"id": 620}, "project": {"owner": {"id": 67}, "assignee": {"id": 849}, "organization": {"id": 975}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 132, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"id": 316, "owner": {"id": 495}, "assignee": {"id": 524}, "organization": {"id": 132}, "project": {"owner": {"id": 5}, "assignee": {"id": 804}, "organization": {"id": 983}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"id": 387, "owner": {"id": 491}, "assignee": {"id": 503}, "organization": {"id": 128}, "project": {"owner": {"id": 77}, "assignee": {"id": 897}, "organization": {"id": 935}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 7, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"id": 367, "owner": {"id": 446}, "assignee": {"id": 584}, "organization": {"id": 650}, "project": {"owner": {"id": 7}, "assignee": {"id": 800}, "organization": {"id": 984}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 160, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"id": 369, "owner": {"id": 491}, "assignee": {"id": 529}, "organization": {"id": 685}, "project": {"owner": {"id": 35}, "assignee": {"id": 852}, "organization": {"id": 922}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 471}, "assignee": {"id": 580}, "organization": {"id": 196}, "project": {"owner": {"id": 98}, "assignee": {"id": 824}, "organization": {"id": 985}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 288}, "user": {"role": "worker"}}}, "resource": {"id": 336, "owner": {"id": 454}, "assignee": {"id": 524}, "organization": {"id": 112}, "project": {"owner": {"id": 84}, "assignee": {"id": 875}, "organization": {"id": 946}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 485}, "assignee": {"id": 528}, "organization": {"id": 658}, "project": {"owner": {"id": 3}, "assignee": {"id": 860}, "organization": {"id": 938}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 481}, "assignee": {"id": 526}, "organization": {"id": 666}, "project": {"owner": {"id": 87}, "assignee": {"id": 880}, "organization": {"id": 983}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 190, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"id": 374, "owner": {"id": 476}, "assignee": {"id": 516}, "organization": {"id": 190}, "project": {"owner": {"id": 23}, "assignee": {"id": 887}, "organization": {"id": 929}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 492}, "assignee": {"id": 584}, "organization": {"id": 157}, "project": {"owner": {"id": 52}, "assignee": {"id": 822}, "organization": {"id": 915}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 210}, "user": {"role": null}}}, "resource": {"id": 301, "owner": {"id": 405}, "assignee": {"id": 599}, "organization": {"id": 685}, "project": {"owner": {"id": 14}, "assignee": {"id": 811}, "organization": {"id": 931}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 312, "owner": {"id": 401}, "assignee": {"id": 562}, "organization": {"id": 618}, "project": {"owner": {"id": 43}, "assignee": {"id": 867}, "organization": {"id": 990}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 495}, "assignee": {"id": 572}, "organization": {"id": 126}, "project": {"owner": {"id": 32}, "assignee": {"id": 846}, "organization": {"id": 930}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 415}, "assignee": {"id": 504}, "organization": {"id": 120}, "project": {"owner": {"id": 61}, "assignee": {"id": 837}, "organization": {"id": 960}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 91, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 494}, "assignee": {"id": 585}, "organization": {"id": 668}, "project": {"owner": {"id": 91}, "assignee": {"id": 832}, "organization": {"id": 937}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 175, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 379, "owner": {"id": 406}, "assignee": {"id": 582}, "organization": {"id": 620}, "project": {"owner": {"id": 21}, "assignee": {"id": 874}, "organization": {"id": 935}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 320, "owner": {"id": 414}, "assignee": {"id": 595}, "organization": {"id": 121}, "project": {"owner": {"id": 38}, "assignee": {"id": 812}, "organization": {"id": 993}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 159, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"id": 353, "owner": {"id": 469}, "assignee": {"id": 513}, "organization": {"id": 159}, "project": {"owner": {"id": 83}, "assignee": {"id": 846}, "organization": {"id": 903}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"id": 397, "owner": {"id": 481}, "assignee": {"id": 547}, "organization": {"id": 666}, "project": {"owner": {"id": 60}, "assignee": {"id": 806}, "organization": {"id": 900}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 323, "owner": {"id": 470}, "assignee": {"id": 580}, "organization": {"id": 656}, "project": {"owner": {"id": 7}, "assignee": {"id": 887}, "organization": {"id": 948}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"id": 309, "owner": {"id": 413}, "assignee": {"id": 580}, "organization": {"id": 185}, "project": {"owner": {"id": 97}, "assignee": {"id": 843}, "organization": {"id": 963}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 348, "owner": {"id": 450}, "assignee": {"id": 539}, "organization": {"id": 104}, "project": {"owner": {"id": 74}, "assignee": {"id": 827}, "organization": {"id": 941}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"id": 394, "owner": {"id": 484}, "assignee": {"id": 508}, "organization": {"id": 616}, "project": {"owner": {"id": 28}, "assignee": {"id": 870}, "organization": {"id": 934}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 481}, "assignee": {"id": 500}, "organization": {"id": 657}, "project": {"owner": {"id": 37}, "assignee": {"id": 870}, "organization": {"id": 917}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"id": 381, "owner": {"id": 420}, "assignee": {"id": 523}, "organization": {"id": 150}, "project": {"owner": {"id": 85}, "assignee": {"id": 845}, "organization": {"id": 992}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 64, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 318, "owner": {"id": 474}, "assignee": {"id": 547}, "organization": {"id": 168}, "project": {"owner": {"id": 64}, "assignee": {"id": 863}, "organization": {"id": 909}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 307, "owner": {"id": 477}, "assignee": {"id": 565}, "organization": {"id": 681}, "project": {"owner": {"id": 87}, "assignee": {"id": 831}, "organization": {"id": 985}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"id": 339, "owner": {"id": 474}, "assignee": {"id": 537}, "organization": {"id": 637}, "project": {"owner": {"id": 72}, "assignee": {"id": 838}, "organization": {"id": 950}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 273}, "user": {"role": null}}}, "resource": {"id": 397, "owner": {"id": 419}, "assignee": {"id": 503}, "organization": {"id": 177}, "project": {"owner": {"id": 88}, "assignee": {"id": 837}, "organization": {"id": 983}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 149, "owner": {"id": 237}, "user": {"role": null}}}, "resource": {"id": 383, "owner": {"id": 475}, "assignee": {"id": 551}, "organization": {"id": 149}, "project": {"owner": {"id": 45}, "assignee": {"id": 808}, "organization": {"id": 989}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 438}, "assignee": {"id": 553}, "organization": {"id": 623}, "project": {"owner": {"id": 41}, "assignee": {"id": 800}, "organization": {"id": 952}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 312, "owner": {"id": 405}, "assignee": {"id": 541}, "organization": {"id": 628}, "project": {"owner": {"id": 90}, "assignee": {"id": 805}, "organization": {"id": 997}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"id": 303, "owner": {"id": 473}, "assignee": {"id": 557}, "organization": {"id": 189}, "project": {"owner": {"id": 46}, "assignee": {"id": 890}, "organization": {"id": 950}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"id": 307, "owner": {"id": 453}, "assignee": {"id": 500}, "organization": {"id": 108}, "project": {"owner": {"id": 66}, "assignee": {"id": 842}, "organization": {"id": 965}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": {"id": 165, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"id": 337, "owner": {"id": 486}, "assignee": {"id": 527}, "organization": {"id": 607}, "project": {"owner": {"id": 82}, "assignee": {"id": 882}, "organization": {"id": 916}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 150, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 374, "owner": {"id": 453}, "assignee": {"id": 546}, "organization": {"id": 658}, "project": {"owner": {"id": 21}, "assignee": {"id": 892}, "organization": {"id": 909}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 379, "owner": {"id": 466}, "assignee": {"id": 557}, "organization": {"id": 178}, "project": {"owner": {"id": 6}, "assignee": {"id": 857}, "organization": {"id": 933}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"id": 366, "owner": {"id": 481}, "assignee": {"id": 511}, "organization": {"id": 126}, "project": {"owner": {"id": 35}, "assignee": {"id": 852}, "organization": {"id": 974}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"id": 312, "owner": {"id": 412}, "assignee": {"id": 586}, "organization": {"id": 622}, "project": {"owner": {"id": 97}, "assignee": {"id": 857}, "organization": {"id": 944}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 312, "owner": {"id": 449}, "assignee": {"id": 529}, "organization": {"id": 650}, "project": {"owner": {"id": 92}, "assignee": {"id": 855}, "organization": {"id": 966}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 333, "owner": {"id": 465}, "assignee": {"id": 572}, "organization": {"id": 106}, "project": {"owner": {"id": 72}, "assignee": {"id": 821}, "organization": {"id": 939}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 361, "owner": {"id": 496}, "assignee": {"id": 545}, "organization": {"id": 126}, "project": {"owner": {"id": 54}, "assignee": {"id": 897}, "organization": {"id": 904}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 352, "owner": {"id": 442}, "assignee": {"id": 503}, "organization": {"id": 648}, "project": {"owner": {"id": 18}, "assignee": {"id": 805}, "organization": {"id": 940}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 291}, "user": {"role": "supervisor"}}}, "resource": {"id": 331, "owner": {"id": 435}, "assignee": {"id": 584}, "organization": {"id": 604}, "project": {"owner": {"id": 5}, "assignee": {"id": 828}, "organization": {"id": 921}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 461}, "assignee": {"id": 582}, "organization": {"id": 111}, "project": {"owner": {"id": 2}, "assignee": {"id": 821}, "organization": {"id": 909}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 131, "owner": {"id": 288}, "user": {"role": "worker"}}}, "resource": {"id": 327, "owner": {"id": 450}, "assignee": {"id": 520}, "organization": {"id": 131}, "project": {"owner": {"id": 60}, "assignee": {"id": 859}, "organization": {"id": 938}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 404}, "assignee": {"id": 503}, "organization": {"id": 632}, "project": {"owner": {"id": 44}, "assignee": {"id": 807}, "organization": {"id": 930}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 486}, "assignee": {"id": 558}, "organization": {"id": 687}, "project": {"owner": {"id": 55}, "assignee": {"id": 807}, "organization": {"id": 905}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 182, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 471}, "assignee": {"id": 511}, "organization": {"id": 182}, "project": {"owner": {"id": 19}, "assignee": {"id": 840}, "organization": {"id": 902}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 439}, "assignee": {"id": 565}, "organization": {"id": 166}, "project": {"owner": {"id": 29}, "assignee": {"id": 827}, "organization": {"id": 993}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 20, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 397, "owner": {"id": 460}, "assignee": {"id": 530}, "organization": {"id": 669}, "project": {"owner": {"id": 20}, "assignee": {"id": 800}, "organization": {"id": 982}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 390, "owner": {"id": 487}, "assignee": {"id": 565}, "organization": {"id": 613}, "project": {"owner": {"id": 36}, "assignee": {"id": 874}, "organization": {"id": 950}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 375, "owner": {"id": 400}, "assignee": {"id": 533}, "organization": {"id": 130}, "project": {"owner": {"id": 40}, "assignee": {"id": 888}, "organization": {"id": 992}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 96, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 306, "owner": {"id": 407}, "assignee": {"id": 534}, "organization": {"id": 145}, "project": {"owner": {"id": 96}, "assignee": {"id": 830}, "organization": {"id": 950}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 386, "owner": {"id": 447}, "assignee": {"id": 577}, "organization": {"id": 655}, "project": {"owner": {"id": 6}, "assignee": {"id": 853}, "organization": {"id": 992}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 348, "owner": {"id": 461}, "assignee": {"id": 552}, "organization": {"id": 696}, "project": {"owner": {"id": 99}, "assignee": {"id": 837}, "organization": {"id": 921}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"id": 314, "owner": {"id": 487}, "assignee": {"id": 503}, "organization": {"id": 145}, "project": {"owner": {"id": 52}, "assignee": {"id": 870}, "organization": {"id": 965}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 422}, "assignee": {"id": 579}, "organization": {"id": 194}, "project": {"owner": {"id": 7}, "assignee": {"id": 808}, "organization": {"id": 995}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 446}, "assignee": {"id": 591}, "organization": {"id": 610}, "project": {"owner": {"id": 44}, "assignee": {"id": 886}, "organization": {"id": 911}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 345, "owner": {"id": 403}, "assignee": {"id": 544}, "organization": {"id": 623}, "project": {"owner": {"id": 47}, "assignee": {"id": 807}, "organization": {"id": 939}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 465}, "assignee": {"id": 543}, "organization": {"id": 164}, "project": {"owner": {"id": 37}, "assignee": {"id": 842}, "organization": {"id": 906}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 195, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 352, "owner": {"id": 428}, "assignee": {"id": 528}, "organization": {"id": 195}, "project": {"owner": {"id": 31}, "assignee": {"id": 836}, "organization": {"id": 969}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 208}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 454}, "assignee": {"id": 521}, "organization": {"id": 687}, "project": {"owner": {"id": 91}, "assignee": {"id": 831}, "organization": {"id": 960}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 452}, "assignee": {"id": 570}, "organization": {"id": 647}, "project": {"owner": {"id": 27}, "assignee": {"id": 826}, "organization": {"id": 921}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 476}, "assignee": {"id": 586}, "organization": {"id": 118}, "project": {"owner": {"id": 75}, "assignee": {"id": 878}, "organization": {"id": 951}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 430}, "assignee": {"id": 591}, "organization": {"id": 170}, "project": {"owner": {"id": 2}, "assignee": {"id": 846}, "organization": {"id": 988}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 439}, "assignee": {"id": 591}, "organization": {"id": 600}, "project": {"owner": {"id": 17}, "assignee": {"id": 889}, "organization": {"id": 948}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 358, "owner": {"id": 428}, "assignee": {"id": 518}, "organization": {"id": 627}, "project": {"owner": {"id": 20}, "assignee": {"id": 847}, "organization": {"id": 942}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"id": 334, "owner": {"id": 434}, "assignee": {"id": 509}, "organization": {"id": 185}, "project": {"owner": {"id": 43}, "assignee": {"id": 822}, "organization": {"id": 930}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"id": 361, "owner": {"id": 477}, "assignee": {"id": 537}, "organization": {"id": 139}, "project": {"owner": {"id": 39}, "assignee": {"id": 875}, "organization": {"id": 934}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"id": 356, "owner": {"id": 463}, "assignee": {"id": 590}, "organization": {"id": 680}, "project": {"owner": {"id": 18}, "assignee": {"id": 851}, "organization": {"id": 945}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 345, "owner": {"id": 401}, "assignee": {"id": 596}, "organization": {"id": 638}, "project": {"owner": {"id": 75}, "assignee": {"id": 831}, "organization": {"id": 927}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 433}, "assignee": {"id": 574}, "organization": {"id": 162}, "project": {"owner": {"id": 55}, "assignee": {"id": 830}, "organization": {"id": 932}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 199, "owner": {"id": 80}, "user": {"role": "owner"}}}, "resource": {"id": 311, "owner": {"id": 421}, "assignee": {"id": 570}, "organization": {"id": 199}, "project": {"owner": {"id": 80}, "assignee": {"id": 875}, "organization": {"id": 926}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"id": 330, "owner": {"id": 432}, "assignee": {"id": 590}, "organization": {"id": 671}, "project": {"owner": {"id": 83}, "assignee": {"id": 853}, "organization": {"id": 990}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 357, "owner": {"id": 481}, "assignee": {"id": 502}, "organization": {"id": 640}, "project": {"owner": {"id": 74}, "assignee": {"id": 858}, "organization": {"id": 965}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 188, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 376, "owner": {"id": 410}, "assignee": {"id": 544}, "organization": {"id": 188}, "project": {"owner": {"id": 43}, "assignee": {"id": 837}, "organization": {"id": 905}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"id": 324, "owner": {"id": 494}, "assignee": {"id": 536}, "organization": {"id": 170}, "project": {"owner": {"id": 17}, "assignee": {"id": 820}, "organization": {"id": 986}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"id": 312, "owner": {"id": 438}, "assignee": {"id": 538}, "organization": {"id": 653}, "project": {"owner": {"id": 91}, "assignee": {"id": 859}, "organization": {"id": 909}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 366, "owner": {"id": 456}, "assignee": {"id": 579}, "organization": {"id": 623}, "project": {"owner": {"id": 55}, "assignee": {"id": 816}, "organization": {"id": 941}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 154, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 310, "owner": {"id": 402}, "assignee": {"id": 513}, "organization": {"id": 154}, "project": {"owner": {"id": 60}, "assignee": {"id": 897}, "organization": {"id": 969}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 421}, "assignee": {"id": 506}, "organization": {"id": 104}, "project": {"owner": {"id": 37}, "assignee": {"id": 829}, "organization": {"id": 930}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 467}, "assignee": {"id": 556}, "organization": {"id": 622}, "project": {"owner": {"id": 85}, "assignee": {"id": 873}, "organization": {"id": 985}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 440}, "assignee": {"id": 549}, "organization": {"id": 635}, "project": {"owner": {"id": 5}, "assignee": {"id": 870}, "organization": {"id": 993}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"id": 331, "owner": {"id": 410}, "assignee": {"id": 541}, "organization": {"id": 180}, "project": {"owner": {"id": 98}, "assignee": {"id": 847}, "organization": {"id": 920}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 283}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 439}, "assignee": {"id": 548}, "organization": {"id": 104}, "project": {"owner": {"id": 33}, "assignee": {"id": 807}, "organization": {"id": 910}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 436}, "assignee": {"id": 544}, "organization": {"id": 670}, "project": {"owner": {"id": 54}, "assignee": {"id": 850}, "organization": {"id": 928}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 190, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 477}, "assignee": {"id": 550}, "organization": {"id": 626}, "project": {"owner": {"id": 68}, "assignee": {"id": 891}, "organization": {"id": 974}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 340, "owner": {"id": 452}, "assignee": {"id": 551}, "organization": {"id": 191}, "project": {"owner": {"id": 55}, "assignee": {"id": 883}, "organization": {"id": 911}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 178, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 407}, "assignee": {"id": 507}, "organization": {"id": 178}, "project": {"owner": {"id": 85}, "assignee": {"id": 841}, "organization": {"id": 957}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"id": 374, "owner": {"id": 483}, "assignee": {"id": 522}, "organization": {"id": 642}, "project": {"owner": {"id": 62}, "assignee": {"id": 800}, "organization": {"id": 921}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 301, "owner": {"id": 401}, "assignee": {"id": 514}, "organization": {"id": 625}, "project": {"owner": {"id": 31}, "assignee": {"id": 899}, "organization": {"id": 926}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 333, "owner": {"id": 428}, "assignee": {"id": 591}, "organization": {"id": 122}, "project": {"owner": {"id": 751}, "assignee": {"id": 55}, "organization": {"id": 913}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 197, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 413}, "assignee": {"id": 592}, "organization": {"id": 197}, "project": {"owner": {"id": 717}, "assignee": {"id": 54}, "organization": {"id": 934}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 37, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 311, "owner": {"id": 462}, "assignee": {"id": 558}, "organization": {"id": 698}, "project": {"owner": {"id": 778}, "assignee": {"id": 37}, "organization": {"id": 958}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 475}, "assignee": {"id": 515}, "organization": {"id": 697}, "project": {"owner": {"id": 766}, "assignee": {"id": 78}, "organization": {"id": 900}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"id": 320, "owner": {"id": 416}, "assignee": {"id": 527}, "organization": {"id": 187}, "project": {"owner": {"id": 704}, "assignee": {"id": 98}, "organization": {"id": 947}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 116, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 400}, "assignee": {"id": 554}, "organization": {"id": 116}, "project": {"owner": {"id": 769}, "assignee": {"id": 21}, "organization": {"id": 912}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 429}, "assignee": {"id": 535}, "organization": {"id": 658}, "project": {"owner": {"id": 725}, "assignee": {"id": 5}, "organization": {"id": 927}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"id": 328, "owner": {"id": 466}, "assignee": {"id": 592}, "organization": {"id": 625}, "project": {"owner": {"id": 760}, "assignee": {"id": 87}, "organization": {"id": 927}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 319, "owner": {"id": 436}, "assignee": {"id": 554}, "organization": {"id": 112}, "project": {"owner": {"id": 732}, "assignee": {"id": 14}, "organization": {"id": 978}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"id": 389, "owner": {"id": 484}, "assignee": {"id": 515}, "organization": {"id": 198}, "project": {"owner": {"id": 735}, "assignee": {"id": 96}, "organization": {"id": 994}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"id": 338, "owner": {"id": 490}, "assignee": {"id": 570}, "organization": {"id": 615}, "project": {"owner": {"id": 718}, "assignee": {"id": 85}, "organization": {"id": 900}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 453}, "assignee": {"id": 587}, "organization": {"id": 669}, "project": {"owner": {"id": 793}, "assignee": {"id": 39}, "organization": {"id": 943}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 372, "owner": {"id": 406}, "assignee": {"id": 597}, "organization": {"id": 159}, "project": {"owner": {"id": 784}, "assignee": {"id": 92}, "organization": {"id": 921}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"id": 382, "owner": {"id": 494}, "assignee": {"id": 594}, "organization": {"id": 115}, "project": {"owner": {"id": 757}, "assignee": {"id": 20}, "organization": {"id": 948}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 163, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 462}, "assignee": {"id": 599}, "organization": {"id": 603}, "project": {"owner": {"id": 729}, "assignee": {"id": 47}, "organization": {"id": 912}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"id": 367, "owner": {"id": 460}, "assignee": {"id": 557}, "organization": {"id": 642}, "project": {"owner": {"id": 707}, "assignee": {"id": 47}, "organization": {"id": 926}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"id": 347, "owner": {"id": 406}, "assignee": {"id": 504}, "organization": {"id": 159}, "project": {"owner": {"id": 799}, "assignee": {"id": 57}, "organization": {"id": 909}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 342, "owner": {"id": 490}, "assignee": {"id": 529}, "organization": {"id": 106}, "project": {"owner": {"id": 714}, "assignee": {"id": 25}, "organization": {"id": 912}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 357, "owner": {"id": 422}, "assignee": {"id": 559}, "organization": {"id": 619}, "project": {"owner": {"id": 712}, "assignee": {"id": 90}, "organization": {"id": 920}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 431}, "assignee": {"id": 556}, "organization": {"id": 692}, "project": {"owner": {"id": 730}, "assignee": {"id": 62}, "organization": {"id": 949}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 421}, "assignee": {"id": 531}, "organization": {"id": 192}, "project": {"owner": {"id": 782}, "assignee": {"id": 9}, "organization": {"id": 917}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 38}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 448}, "assignee": {"id": 500}, "organization": {"id": 164}, "project": {"owner": {"id": 776}, "assignee": {"id": 38}, "organization": {"id": 947}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 374, "owner": {"id": 492}, "assignee": {"id": 590}, "organization": {"id": 691}, "project": {"owner": {"id": 724}, "assignee": {"id": 41}, "organization": {"id": 991}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 416}, "assignee": {"id": 529}, "organization": {"id": 669}, "project": {"owner": {"id": 777}, "assignee": {"id": 63}, "organization": {"id": 991}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"id": 304, "owner": {"id": 445}, "assignee": {"id": 537}, "organization": {"id": 165}, "project": {"owner": {"id": 743}, "assignee": {"id": 83}, "organization": {"id": 948}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 281}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 498}, "assignee": {"id": 546}, "organization": {"id": 102}, "project": {"owner": {"id": 783}, "assignee": {"id": 5}, "organization": {"id": 937}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 324, "owner": {"id": 485}, "assignee": {"id": 525}, "organization": {"id": 621}, "project": {"owner": {"id": 702}, "assignee": {"id": 53}, "organization": {"id": 901}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 456}, "assignee": {"id": 589}, "organization": {"id": 627}, "project": {"owner": {"id": 721}, "assignee": {"id": 9}, "organization": {"id": 937}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 416}, "assignee": {"id": 560}, "organization": {"id": 122}, "project": {"owner": {"id": 754}, "assignee": {"id": 75}, "organization": {"id": 945}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 196, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 414}, "assignee": {"id": 530}, "organization": {"id": 196}, "project": {"owner": {"id": 740}, "assignee": {"id": 34}, "organization": {"id": 919}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 277}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 493}, "assignee": {"id": 586}, "organization": {"id": 601}, "project": {"owner": {"id": 724}, "assignee": {"id": 30}, "organization": {"id": 984}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 245}, "user": {"role": "supervisor"}}}, "resource": {"id": 389, "owner": {"id": 450}, "assignee": {"id": 521}, "organization": {"id": 620}, "project": {"owner": {"id": 762}, "assignee": {"id": 39}, "organization": {"id": 992}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"id": 353, "owner": {"id": 414}, "assignee": {"id": 519}, "organization": {"id": 102}, "project": {"owner": {"id": 746}, "assignee": {"id": 4}, "organization": {"id": 984}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"id": 328, "owner": {"id": 448}, "assignee": {"id": 535}, "organization": {"id": 104}, "project": {"owner": {"id": 774}, "assignee": {"id": 35}, "organization": {"id": 951}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 286}, "user": {"role": "worker"}}}, "resource": {"id": 378, "owner": {"id": 473}, "assignee": {"id": 534}, "organization": {"id": 660}, "project": {"owner": {"id": 728}, "assignee": {"id": 27}, "organization": {"id": 968}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 175, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 395, "owner": {"id": 485}, "assignee": {"id": 576}, "organization": {"id": 643}, "project": {"owner": {"id": 757}, "assignee": {"id": 47}, "organization": {"id": 947}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 286}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 405}, "assignee": {"id": 541}, "organization": {"id": 154}, "project": {"owner": {"id": 705}, "assignee": {"id": 78}, "organization": {"id": 981}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 123, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"id": 302, "owner": {"id": 421}, "assignee": {"id": 572}, "organization": {"id": 123}, "project": {"owner": {"id": 790}, "assignee": {"id": 67}, "organization": {"id": 926}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 480}, "assignee": {"id": 549}, "organization": {"id": 612}, "project": {"owner": {"id": 707}, "assignee": {"id": 33}, "organization": {"id": 958}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 364, "owner": {"id": 462}, "assignee": {"id": 503}, "organization": {"id": 653}, "project": {"owner": {"id": 716}, "assignee": {"id": 82}, "organization": {"id": 935}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 413}, "assignee": {"id": 529}, "organization": {"id": 137}, "project": {"owner": {"id": 799}, "assignee": {"id": 58}, "organization": {"id": 993}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 320, "owner": {"id": 474}, "assignee": {"id": 538}, "organization": {"id": 127}, "project": {"owner": {"id": 727}, "assignee": {"id": 37}, "organization": {"id": 951}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 357, "owner": {"id": 423}, "assignee": {"id": 537}, "organization": {"id": 652}, "project": {"owner": {"id": 766}, "assignee": {"id": 51}, "organization": {"id": 966}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"id": 347, "owner": {"id": 499}, "assignee": {"id": 530}, "organization": {"id": 694}, "project": {"owner": {"id": 734}, "assignee": {"id": 85}, "organization": {"id": 964}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 334, "owner": {"id": 489}, "assignee": {"id": 578}, "organization": {"id": 177}, "project": {"owner": {"id": 736}, "assignee": {"id": 0}, "organization": {"id": 961}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 402}, "assignee": {"id": 529}, "organization": {"id": 117}, "project": {"owner": {"id": 729}, "assignee": {"id": 25}, "organization": {"id": 974}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 11, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 367, "owner": {"id": 471}, "assignee": {"id": 530}, "organization": {"id": 685}, "project": {"owner": {"id": 726}, "assignee": {"id": 11}, "organization": {"id": 924}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 473}, "assignee": {"id": 535}, "organization": {"id": 610}, "project": {"owner": {"id": 719}, "assignee": {"id": 60}, "organization": {"id": 991}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 391, "owner": {"id": 425}, "assignee": {"id": 501}, "organization": {"id": 109}, "project": {"owner": {"id": 791}, "assignee": {"id": 62}, "organization": {"id": 919}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"id": 335, "owner": {"id": 410}, "assignee": {"id": 554}, "organization": {"id": 112}, "project": {"owner": {"id": 760}, "assignee": {"id": 58}, "organization": {"id": 994}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 282}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 460}, "assignee": {"id": 573}, "organization": {"id": 610}, "project": {"owner": {"id": 783}, "assignee": {"id": 69}, "organization": {"id": 919}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"id": 329, "owner": {"id": 422}, "assignee": {"id": 552}, "organization": {"id": 679}, "project": {"owner": {"id": 717}, "assignee": {"id": 8}, "organization": {"id": 925}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 283}, "user": {"role": "worker"}}}, "resource": {"id": 366, "owner": {"id": 498}, "assignee": {"id": 544}, "organization": {"id": 104}, "project": {"owner": {"id": 754}, "assignee": {"id": 21}, "organization": {"id": 956}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 495}, "assignee": {"id": 589}, "organization": {"id": 102}, "project": {"owner": {"id": 747}, "assignee": {"id": 74}, "organization": {"id": 906}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 367, "owner": {"id": 495}, "assignee": {"id": 533}, "organization": {"id": 689}, "project": {"owner": {"id": 704}, "assignee": {"id": 92}, "organization": {"id": 936}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 482}, "assignee": {"id": 547}, "organization": {"id": 668}, "project": {"owner": {"id": 778}, "assignee": {"id": 27}, "organization": {"id": 986}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 334, "owner": {"id": 476}, "assignee": {"id": 572}, "organization": {"id": 148}, "project": {"owner": {"id": 726}, "assignee": {"id": 61}, "organization": {"id": 926}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"id": 373, "owner": {"id": 416}, "assignee": {"id": 598}, "organization": {"id": 104}, "project": {"owner": {"id": 714}, "assignee": {"id": 52}, "organization": {"id": 919}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 122, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 331, "owner": {"id": 412}, "assignee": {"id": 541}, "organization": {"id": 677}, "project": {"owner": {"id": 722}, "assignee": {"id": 78}, "organization": {"id": 988}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 204}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 452}, "assignee": {"id": 529}, "organization": {"id": 694}, "project": {"owner": {"id": 762}, "assignee": {"id": 3}, "organization": {"id": 947}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 129, "owner": {"id": 15}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 480}, "assignee": {"id": 597}, "organization": {"id": 129}, "project": {"owner": {"id": 790}, "assignee": {"id": 15}, "organization": {"id": 936}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"id": 347, "owner": {"id": 453}, "assignee": {"id": 503}, "organization": {"id": 170}, "project": {"owner": {"id": 750}, "assignee": {"id": 26}, "organization": {"id": 946}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 150, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 357, "owner": {"id": 467}, "assignee": {"id": 573}, "organization": {"id": 689}, "project": {"owner": {"id": 714}, "assignee": {"id": 97}, "organization": {"id": 913}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"id": 348, "owner": {"id": 457}, "assignee": {"id": 561}, "organization": {"id": 655}, "project": {"owner": {"id": 725}, "assignee": {"id": 61}, "organization": {"id": 916}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"id": 349, "owner": {"id": 494}, "assignee": {"id": 548}, "organization": {"id": 121}, "project": {"owner": {"id": 784}, "assignee": {"id": 91}, "organization": {"id": 996}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 424}, "assignee": {"id": 571}, "organization": {"id": 151}, "project": {"owner": {"id": 720}, "assignee": {"id": 85}, "organization": {"id": 965}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 474}, "assignee": {"id": 581}, "organization": {"id": 681}, "project": {"owner": {"id": 737}, "assignee": {"id": 98}, "organization": {"id": 964}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 320, "owner": {"id": 401}, "assignee": {"id": 535}, "organization": {"id": 626}, "project": {"owner": {"id": 771}, "assignee": {"id": 61}, "organization": {"id": 952}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 277}, "user": {"role": "supervisor"}}}, "resource": {"id": 333, "owner": {"id": 456}, "assignee": {"id": 506}, "organization": {"id": 176}, "project": {"owner": {"id": 728}, "assignee": {"id": 42}, "organization": {"id": 976}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"id": 359, "owner": {"id": 432}, "assignee": {"id": 595}, "organization": {"id": 128}, "project": {"owner": {"id": 747}, "assignee": {"id": 67}, "organization": {"id": 958}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"id": 390, "owner": {"id": 437}, "assignee": {"id": 596}, "organization": {"id": 624}, "project": {"owner": {"id": 773}, "assignee": {"id": 71}, "organization": {"id": 915}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"id": 300, "owner": {"id": 426}, "assignee": {"id": 560}, "organization": {"id": 613}, "project": {"owner": {"id": 709}, "assignee": {"id": 94}, "organization": {"id": 983}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 312, "owner": {"id": 416}, "assignee": {"id": 525}, "organization": {"id": 180}, "project": {"owner": {"id": 720}, "assignee": {"id": 94}, "organization": {"id": 976}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 382, "owner": {"id": 420}, "assignee": {"id": 533}, "organization": {"id": 147}, "project": {"owner": {"id": 756}, "assignee": {"id": 17}, "organization": {"id": 947}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 427}, "assignee": {"id": 553}, "organization": {"id": 624}, "project": {"owner": {"id": 713}, "assignee": {"id": 35}, "organization": {"id": 913}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 135, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 389, "owner": {"id": 499}, "assignee": {"id": 528}, "organization": {"id": 617}, "project": {"owner": {"id": 793}, "assignee": {"id": 84}, "organization": {"id": 945}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 491}, "assignee": {"id": 507}, "organization": {"id": 151}, "project": {"owner": {"id": 749}, "assignee": {"id": 27}, "organization": {"id": 902}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 195, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 364, "owner": {"id": 486}, "assignee": {"id": 530}, "organization": {"id": 195}, "project": {"owner": {"id": 799}, "assignee": {"id": 15}, "organization": {"id": 938}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"id": 342, "owner": {"id": 418}, "assignee": {"id": 506}, "organization": {"id": 603}, "project": {"owner": {"id": 762}, "assignee": {"id": 4}, "organization": {"id": 936}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 210}, "user": {"role": null}}}, "resource": {"id": 398, "owner": {"id": 418}, "assignee": {"id": 584}, "organization": {"id": 679}, "project": {"owner": {"id": 766}, "assignee": {"id": 82}, "organization": {"id": 963}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"id": 340, "owner": {"id": 477}, "assignee": {"id": 532}, "organization": {"id": 175}, "project": {"owner": {"id": 766}, "assignee": {"id": 85}, "organization": {"id": 959}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 489}, "assignee": {"id": 534}, "organization": {"id": 157}, "project": {"owner": {"id": 737}, "assignee": {"id": 47}, "organization": {"id": 969}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 327, "owner": {"id": 427}, "assignee": {"id": 554}, "organization": {"id": 668}, "project": {"owner": {"id": 735}, "assignee": {"id": 74}, "organization": {"id": 994}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"id": 393, "owner": {"id": 434}, "assignee": {"id": 530}, "organization": {"id": 603}, "project": {"owner": {"id": 765}, "assignee": {"id": 22}, "organization": {"id": 979}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 270}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 401}, "assignee": {"id": 535}, "organization": {"id": 187}, "project": {"owner": {"id": 789}, "assignee": {"id": 30}, "organization": {"id": 982}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"id": 346, "owner": {"id": 461}, "assignee": {"id": 519}, "organization": {"id": 193}, "project": {"owner": {"id": 766}, "assignee": {"id": 65}, "organization": {"id": 951}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 107, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 486}, "assignee": {"id": 500}, "organization": {"id": 655}, "project": {"owner": {"id": 790}, "assignee": {"id": 84}, "organization": {"id": 995}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 188, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"id": 383, "owner": {"id": 450}, "assignee": {"id": 564}, "organization": {"id": 655}, "project": {"owner": {"id": 702}, "assignee": {"id": 1}, "organization": {"id": 992}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 336, "owner": {"id": 441}, "assignee": {"id": 582}, "organization": {"id": 197}, "project": {"owner": {"id": 794}, "assignee": {"id": 0}, "organization": {"id": 944}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 362, "owner": {"id": 446}, "assignee": {"id": 598}, "organization": {"id": 183}, "project": {"owner": {"id": 769}, "assignee": {"id": 13}, "organization": {"id": 940}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 323, "owner": {"id": 451}, "assignee": {"id": 540}, "organization": {"id": 681}, "project": {"owner": {"id": 758}, "assignee": {"id": 44}, "organization": {"id": 936}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 295}, "user": {"role": "supervisor"}}}, "resource": {"id": 307, "owner": {"id": 491}, "assignee": {"id": 547}, "organization": {"id": 604}, "project": {"owner": {"id": 773}, "assignee": {"id": 32}, "organization": {"id": 926}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"id": 378, "owner": {"id": 448}, "assignee": {"id": 523}, "organization": {"id": 111}, "project": {"owner": {"id": 727}, "assignee": {"id": 38}, "organization": {"id": 970}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 488}, "assignee": {"id": 501}, "organization": {"id": 129}, "project": {"owner": {"id": 763}, "assignee": {"id": 31}, "organization": {"id": 928}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 310, "owner": {"id": 418}, "assignee": {"id": 500}, "organization": {"id": 644}, "project": {"owner": {"id": 723}, "assignee": {"id": 4}, "organization": {"id": 990}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 463}, "assignee": {"id": 540}, "organization": {"id": 640}, "project": {"owner": {"id": 794}, "assignee": {"id": 56}, "organization": {"id": 960}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"id": 396, "owner": {"id": 463}, "assignee": {"id": 513}, "organization": {"id": 104}, "project": {"owner": {"id": 717}, "assignee": {"id": 61}, "organization": {"id": 999}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 482}, "assignee": {"id": 585}, "organization": {"id": 179}, "project": {"owner": {"id": 754}, "assignee": {"id": 75}, "organization": {"id": 925}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 237}, "user": {"role": null}}}, "resource": {"id": 330, "owner": {"id": 488}, "assignee": {"id": 506}, "organization": {"id": 670}, "project": {"owner": {"id": 798}, "assignee": {"id": 95}, "organization": {"id": 930}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 386, "owner": {"id": 481}, "assignee": {"id": 546}, "organization": {"id": 647}, "project": {"owner": {"id": 777}, "assignee": {"id": 15}, "organization": {"id": 918}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 72}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 72}, "assignee": {"id": 520}, "organization": {"id": 140}, "project": {"owner": {"id": 732}, "assignee": {"id": 830}, "organization": {"id": 914}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"id": 365, "owner": {"id": 18}, "assignee": {"id": 553}, "organization": {"id": 171}, "project": {"owner": {"id": 723}, "assignee": {"id": 887}, "organization": {"id": 959}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 81, "privilege": "admin"}, "organization": {"id": 117, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 387, "owner": {"id": 81}, "assignee": {"id": 550}, "organization": {"id": 663}, "project": {"owner": {"id": 745}, "assignee": {"id": 862}, "organization": {"id": 965}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 70}, "assignee": {"id": 538}, "organization": {"id": 626}, "project": {"owner": {"id": 766}, "assignee": {"id": 830}, "organization": {"id": 958}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 71, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 71}, "assignee": {"id": 520}, "organization": {"id": 143}, "project": {"owner": {"id": 799}, "assignee": {"id": 816}, "organization": {"id": 997}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": {"id": 189, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 328, "owner": {"id": 12}, "assignee": {"id": 544}, "organization": {"id": 189}, "project": {"owner": {"id": 717}, "assignee": {"id": 845}, "organization": {"id": 995}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 227}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 39}, "assignee": {"id": 580}, "organization": {"id": 692}, "project": {"owner": {"id": 706}, "assignee": {"id": 838}, "organization": {"id": 954}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 61}, "assignee": {"id": 523}, "organization": {"id": 657}, "project": {"owner": {"id": 722}, "assignee": {"id": 843}, "organization": {"id": 967}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"id": 314, "owner": {"id": 79}, "assignee": {"id": 515}, "organization": {"id": 177}, "project": {"owner": {"id": 723}, "assignee": {"id": 854}, "organization": {"id": 998}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 56}, "assignee": {"id": 505}, "organization": {"id": 125}, "project": {"owner": {"id": 789}, "assignee": {"id": 898}, "organization": {"id": 995}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 87}, "assignee": {"id": 584}, "organization": {"id": 693}, "project": {"owner": {"id": 710}, "assignee": {"id": 808}, "organization": {"id": 970}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"id": 314, "owner": {"id": 31}, "assignee": {"id": 552}, "organization": {"id": 662}, "project": {"owner": {"id": 793}, "assignee": {"id": 842}, "organization": {"id": 923}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 30}, "assignee": {"id": 516}, "organization": {"id": 166}, "project": {"owner": {"id": 731}, "assignee": {"id": 805}, "organization": {"id": 990}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 40}, "assignee": {"id": 508}, "organization": {"id": 187}, "project": {"owner": {"id": 787}, "assignee": {"id": 843}, "organization": {"id": 995}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"id": 356, "owner": {"id": 24}, "assignee": {"id": 505}, "organization": {"id": 667}, "project": {"owner": {"id": 793}, "assignee": {"id": 829}, "organization": {"id": 965}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 5}, "assignee": {"id": 515}, "organization": {"id": 657}, "project": {"owner": {"id": 736}, "assignee": {"id": 842}, "organization": {"id": 968}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 32}, "assignee": {"id": 553}, "organization": {"id": 185}, "project": {"owner": {"id": 741}, "assignee": {"id": 827}, "organization": {"id": 921}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 21}, "assignee": {"id": 526}, "organization": {"id": 104}, "project": {"owner": {"id": 708}, "assignee": {"id": 854}, "organization": {"id": 944}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 123, "owner": {"id": 214}, "user": {"role": null}}}, "resource": {"id": 393, "owner": {"id": 9}, "assignee": {"id": 597}, "organization": {"id": 620}, "project": {"owner": {"id": 796}, "assignee": {"id": 895}, "organization": {"id": 937}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"id": 334, "owner": {"id": 78}, "assignee": {"id": 587}, "organization": {"id": 605}, "project": {"owner": {"id": 707}, "assignee": {"id": 843}, "organization": {"id": 990}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 85}, "assignee": {"id": 502}, "organization": {"id": 110}, "project": {"owner": {"id": 798}, "assignee": {"id": 875}, "organization": {"id": 919}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 95}, "user": {"role": "owner"}}}, "resource": {"id": 371, "owner": {"id": 95}, "assignee": {"id": 583}, "organization": {"id": 172}, "project": {"owner": {"id": 733}, "assignee": {"id": 833}, "organization": {"id": 921}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 303, "owner": {"id": 62}, "assignee": {"id": 513}, "organization": {"id": 686}, "project": {"owner": {"id": 710}, "assignee": {"id": 888}, "organization": {"id": 949}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 95}, "user": {"role": "owner"}}}, "resource": {"id": 318, "owner": {"id": 95}, "assignee": {"id": 584}, "organization": {"id": 647}, "project": {"owner": {"id": 715}, "assignee": {"id": 859}, "organization": {"id": 928}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 21}, "assignee": {"id": 503}, "organization": {"id": 182}, "project": {"owner": {"id": 776}, "assignee": {"id": 873}, "organization": {"id": 979}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 329, "owner": {"id": 11}, "assignee": {"id": 557}, "organization": {"id": 132}, "project": {"owner": {"id": 772}, "assignee": {"id": 866}, "organization": {"id": 980}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 55}, "assignee": {"id": 593}, "organization": {"id": 655}, "project": {"owner": {"id": 785}, "assignee": {"id": 869}, "organization": {"id": 980}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 87}, "assignee": {"id": 536}, "organization": {"id": 611}, "project": {"owner": {"id": 714}, "assignee": {"id": 896}, "organization": {"id": 910}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 364, "owner": {"id": 32}, "assignee": {"id": 507}, "organization": {"id": 153}, "project": {"owner": {"id": 777}, "assignee": {"id": 896}, "organization": {"id": 958}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 330, "owner": {"id": 92}, "assignee": {"id": 536}, "organization": {"id": 132}, "project": {"owner": {"id": 732}, "assignee": {"id": 851}, "organization": {"id": 902}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 196, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 350, "owner": {"id": 49}, "assignee": {"id": 590}, "organization": {"id": 661}, "project": {"owner": {"id": 719}, "assignee": {"id": 895}, "organization": {"id": 934}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 238}, "user": {"role": "supervisor"}}}, "resource": {"id": 362, "owner": {"id": 62}, "assignee": {"id": 526}, "organization": {"id": 618}, "project": {"owner": {"id": 748}, "assignee": {"id": 877}, "organization": {"id": 923}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"id": 333, "owner": {"id": 76}, "assignee": {"id": 589}, "organization": {"id": 101}, "project": {"owner": {"id": 756}, "assignee": {"id": 840}, "organization": {"id": 934}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 2}, "assignee": {"id": 574}, "organization": {"id": 160}, "project": {"owner": {"id": 797}, "assignee": {"id": 869}, "organization": {"id": 993}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 89}, "assignee": {"id": 541}, "organization": {"id": 604}, "project": {"owner": {"id": 770}, "assignee": {"id": 821}, "organization": {"id": 942}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"id": 300, "owner": {"id": 99}, "assignee": {"id": 555}, "organization": {"id": 670}, "project": {"owner": {"id": 736}, "assignee": {"id": 896}, "organization": {"id": 963}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 123, "owner": {"id": 233}, "user": {"role": null}}}, "resource": {"id": 381, "owner": {"id": 24}, "assignee": {"id": 519}, "organization": {"id": 123}, "project": {"owner": {"id": 783}, "assignee": {"id": 810}, "organization": {"id": 941}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 302, "owner": {"id": 58}, "assignee": {"id": 530}, "organization": {"id": 172}, "project": {"owner": {"id": 744}, "assignee": {"id": 876}, "organization": {"id": 973}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"id": 360, "owner": {"id": 6}, "assignee": {"id": 502}, "organization": {"id": 675}, "project": {"owner": {"id": 768}, "assignee": {"id": 886}, "organization": {"id": 950}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 243}, "user": {"role": null}}}, "resource": {"id": 347, "owner": {"id": 15}, "assignee": {"id": 577}, "organization": {"id": 676}, "project": {"owner": {"id": 764}, "assignee": {"id": 822}, "organization": {"id": 976}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 55}, "assignee": {"id": 505}, "organization": {"id": 173}, "project": {"owner": {"id": 762}, "assignee": {"id": 815}, "organization": {"id": 922}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 81, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 323, "owner": {"id": 81}, "assignee": {"id": 542}, "organization": {"id": 158}, "project": {"owner": {"id": 763}, "assignee": {"id": 872}, "organization": {"id": 908}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 90, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 303, "owner": {"id": 90}, "assignee": {"id": 585}, "organization": {"id": 664}, "project": {"owner": {"id": 799}, "assignee": {"id": 814}, "organization": {"id": 992}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 25}, "assignee": {"id": 546}, "organization": {"id": 693}, "project": {"owner": {"id": 705}, "assignee": {"id": 892}, "organization": {"id": 973}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 329, "owner": {"id": 38}, "assignee": {"id": 596}, "organization": {"id": 113}, "project": {"owner": {"id": 771}, "assignee": {"id": 834}, "organization": {"id": 956}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 8}, "assignee": {"id": 563}, "organization": {"id": 121}, "project": {"owner": {"id": 796}, "assignee": {"id": 826}, "organization": {"id": 981}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 220}, "user": {"role": "maintainer"}}}, "resource": {"id": 377, "owner": {"id": 3}, "assignee": {"id": 511}, "organization": {"id": 603}, "project": {"owner": {"id": 796}, "assignee": {"id": 875}, "organization": {"id": 995}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 66}, "assignee": {"id": 576}, "organization": {"id": 694}, "project": {"owner": {"id": 745}, "assignee": {"id": 812}, "organization": {"id": 993}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 78}, "assignee": {"id": 560}, "organization": {"id": 118}, "project": {"owner": {"id": 798}, "assignee": {"id": 837}, "organization": {"id": 918}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 172, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 369, "owner": {"id": 59}, "assignee": {"id": 514}, "organization": {"id": 172}, "project": {"owner": {"id": 715}, "assignee": {"id": 840}, "organization": {"id": 954}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"id": 387, "owner": {"id": 57}, "assignee": {"id": 595}, "organization": {"id": 658}, "project": {"owner": {"id": 756}, "assignee": {"id": 865}, "organization": {"id": 990}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 193, "owner": {"id": 293}, "user": {"role": "supervisor"}}}, "resource": {"id": 348, "owner": {"id": 48}, "assignee": {"id": 521}, "organization": {"id": 680}, "project": {"owner": {"id": 776}, "assignee": {"id": 826}, "organization": {"id": 977}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 138, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"id": 357, "owner": {"id": 92}, "assignee": {"id": 507}, "organization": {"id": 138}, "project": {"owner": {"id": 721}, "assignee": {"id": 870}, "organization": {"id": 934}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 262}, "user": {"role": "worker"}}}, "resource": {"id": 381, "owner": {"id": 71}, "assignee": {"id": 544}, "organization": {"id": 188}, "project": {"owner": {"id": 770}, "assignee": {"id": 854}, "organization": {"id": 994}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 37}, "assignee": {"id": 567}, "organization": {"id": 603}, "project": {"owner": {"id": 713}, "assignee": {"id": 867}, "organization": {"id": 952}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 75}, "assignee": {"id": 530}, "organization": {"id": 667}, "project": {"owner": {"id": 739}, "assignee": {"id": 831}, "organization": {"id": 929}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 364, "owner": {"id": 6}, "assignee": {"id": 534}, "organization": {"id": 167}, "project": {"owner": {"id": 778}, "assignee": {"id": 882}, "organization": {"id": 933}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 365, "owner": {"id": 78}, "assignee": {"id": 557}, "organization": {"id": 161}, "project": {"owner": {"id": 718}, "assignee": {"id": 829}, "organization": {"id": 949}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 204}, "user": {"role": null}}}, "resource": {"id": 397, "owner": {"id": 10}, "assignee": {"id": 570}, "organization": {"id": 672}, "project": {"owner": {"id": 766}, "assignee": {"id": 840}, "organization": {"id": 954}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 76}, "assignee": {"id": 547}, "organization": {"id": 658}, "project": {"owner": {"id": 781}, "assignee": {"id": 832}, "organization": {"id": 993}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 330, "owner": {"id": 65}, "assignee": {"id": 511}, "organization": {"id": 161}, "project": {"owner": {"id": 752}, "assignee": {"id": 884}, "organization": {"id": 956}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 379, "owner": {"id": 62}, "assignee": {"id": 587}, "organization": {"id": 134}, "project": {"owner": {"id": 758}, "assignee": {"id": 859}, "organization": {"id": 919}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 41}, "assignee": {"id": 587}, "organization": {"id": 689}, "project": {"owner": {"id": 756}, "assignee": {"id": 850}, "organization": {"id": 924}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 36}, "assignee": {"id": 540}, "organization": {"id": 691}, "project": {"owner": {"id": 737}, "assignee": {"id": 821}, "organization": {"id": 957}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"id": 383, "owner": {"id": 74}, "assignee": {"id": 510}, "organization": {"id": 192}, "project": {"owner": {"id": 777}, "assignee": {"id": 859}, "organization": {"id": 972}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 399, "owner": {"id": 36}, "assignee": {"id": 594}, "organization": {"id": 138}, "project": {"owner": {"id": 741}, "assignee": {"id": 860}, "organization": {"id": 975}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 42}, "assignee": {"id": 559}, "organization": {"id": 606}, "project": {"owner": {"id": 789}, "assignee": {"id": 866}, "organization": {"id": 951}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 51, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 51}, "assignee": {"id": 599}, "organization": {"id": 698}, "project": {"owner": {"id": 730}, "assignee": {"id": 866}, "organization": {"id": 934}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"id": 343, "owner": {"id": 29}, "assignee": {"id": 531}, "organization": {"id": 131}, "project": {"owner": {"id": 701}, "assignee": {"id": 871}, "organization": {"id": 983}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 91}, "assignee": {"id": 561}, "organization": {"id": 128}, "project": {"owner": {"id": 745}, "assignee": {"id": 812}, "organization": {"id": 975}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 78}, "assignee": {"id": 551}, "organization": {"id": 629}, "project": {"owner": {"id": 740}, "assignee": {"id": 833}, "organization": {"id": 969}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 348, "owner": {"id": 98}, "assignee": {"id": 515}, "organization": {"id": 617}, "project": {"owner": {"id": 781}, "assignee": {"id": 843}, "organization": {"id": 936}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 395, "owner": {"id": 50}, "assignee": {"id": 556}, "organization": {"id": 185}, "project": {"owner": {"id": 775}, "assignee": {"id": 819}, "organization": {"id": 976}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 67}, "assignee": {"id": 509}, "organization": {"id": 160}, "project": {"owner": {"id": 732}, "assignee": {"id": 836}, "organization": {"id": 961}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 283}, "user": {"role": "worker"}}}, "resource": {"id": 321, "owner": {"id": 33}, "assignee": {"id": 530}, "organization": {"id": 645}, "project": {"owner": {"id": 726}, "assignee": {"id": 870}, "organization": {"id": 991}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 16}, "assignee": {"id": 575}, "organization": {"id": 677}, "project": {"owner": {"id": 745}, "assignee": {"id": 859}, "organization": {"id": 978}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"id": 322, "owner": {"id": 65}, "assignee": {"id": 592}, "organization": {"id": 177}, "project": {"owner": {"id": 734}, "assignee": {"id": 874}, "organization": {"id": 929}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 96, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 207}, "user": {"role": null}}}, "resource": {"id": 345, "owner": {"id": 96}, "assignee": {"id": 505}, "organization": {"id": 185}, "project": {"owner": {"id": 732}, "assignee": {"id": 898}, "organization": {"id": 962}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 96, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"id": 390, "owner": {"id": 96}, "assignee": {"id": 539}, "organization": {"id": 648}, "project": {"owner": {"id": 750}, "assignee": {"id": 811}, "organization": {"id": 920}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 196, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"id": 378, "owner": {"id": 24}, "assignee": {"id": 508}, "organization": {"id": 699}, "project": {"owner": {"id": 738}, "assignee": {"id": 899}, "organization": {"id": 957}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 67}, "assignee": {"id": 509}, "organization": {"id": 169}, "project": {"owner": {"id": 748}, "assignee": {"id": 840}, "organization": {"id": 991}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 91}, "assignee": {"id": 516}, "organization": {"id": 180}, "project": {"owner": {"id": 716}, "assignee": {"id": 888}, "organization": {"id": 974}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 386, "owner": {"id": 7}, "assignee": {"id": 596}, "organization": {"id": 673}, "project": {"owner": {"id": 761}, "assignee": {"id": 811}, "organization": {"id": 903}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 14}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 14}, "assignee": {"id": 551}, "organization": {"id": 606}, "project": {"owner": {"id": 749}, "assignee": {"id": 879}, "organization": {"id": 971}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 142, "owner": {"id": 278}, "user": {"role": "maintainer"}}}, "resource": {"id": 373, "owner": {"id": 29}, "assignee": {"id": 574}, "organization": {"id": 142}, "project": {"owner": {"id": 739}, "assignee": {"id": 824}, "organization": {"id": 936}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"id": 301, "owner": {"id": 64}, "assignee": {"id": 543}, "organization": {"id": 135}, "project": {"owner": {"id": 761}, "assignee": {"id": 863}, "organization": {"id": 937}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 149, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 301, "owner": {"id": 85}, "assignee": {"id": 582}, "organization": {"id": 694}, "project": {"owner": {"id": 779}, "assignee": {"id": 805}, "organization": {"id": 931}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 368, "owner": {"id": 55}, "assignee": {"id": 566}, "organization": {"id": 600}, "project": {"owner": {"id": 715}, "assignee": {"id": 855}, "organization": {"id": 920}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 56}, "assignee": {"id": 531}, "organization": {"id": 134}, "project": {"owner": {"id": 792}, "assignee": {"id": 898}, "organization": {"id": 919}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"id": 348, "owner": {"id": 14}, "assignee": {"id": 508}, "organization": {"id": 170}, "project": {"owner": {"id": 732}, "assignee": {"id": 838}, "organization": {"id": 986}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 353, "owner": {"id": 81}, "assignee": {"id": 511}, "organization": {"id": 601}, "project": {"owner": {"id": 728}, "assignee": {"id": 807}, "organization": {"id": 905}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"id": 350, "owner": {"id": 9}, "assignee": {"id": 545}, "organization": {"id": 671}, "project": {"owner": {"id": 724}, "assignee": {"id": 840}, "organization": {"id": 989}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 63}, "assignee": {"id": 574}, "organization": {"id": 195}, "project": {"owner": {"id": 731}, "assignee": {"id": 829}, "organization": {"id": 902}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"id": 389, "owner": {"id": 80}, "assignee": {"id": 578}, "organization": {"id": 100}, "project": {"owner": {"id": 717}, "assignee": {"id": 834}, "organization": {"id": 971}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 330, "owner": {"id": 70}, "assignee": {"id": 589}, "organization": {"id": 620}, "project": {"owner": {"id": 749}, "assignee": {"id": 817}, "organization": {"id": 906}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 286}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 32}, "assignee": {"id": 590}, "organization": {"id": 658}, "project": {"owner": {"id": 782}, "assignee": {"id": 809}, "organization": {"id": 975}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"id": 367, "owner": {"id": 58}, "assignee": {"id": 578}, "organization": {"id": 181}, "project": {"owner": {"id": 797}, "assignee": {"id": 896}, "organization": {"id": 928}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"id": 378, "owner": {"id": 74}, "assignee": {"id": 535}, "organization": {"id": 127}, "project": {"owner": {"id": 772}, "assignee": {"id": 899}, "organization": {"id": 971}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 204}, "user": {"role": null}}}, "resource": {"id": 373, "owner": {"id": 42}, "assignee": {"id": 521}, "organization": {"id": 632}, "project": {"owner": {"id": 793}, "assignee": {"id": 811}, "organization": {"id": 913}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 44}, "assignee": {"id": 507}, "organization": {"id": 692}, "project": {"owner": {"id": 700}, "assignee": {"id": 822}, "organization": {"id": 933}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 482}, "assignee": {"id": 67}, "organization": {"id": 110}, "project": {"owner": {"id": 774}, "assignee": {"id": 824}, "organization": {"id": 918}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 399, "owner": {"id": 426}, "assignee": {"id": 78}, "organization": {"id": 179}, "project": {"owner": {"id": 729}, "assignee": {"id": 830}, "organization": {"id": 948}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 466}, "assignee": {"id": 4}, "organization": {"id": 694}, "project": {"owner": {"id": 730}, "assignee": {"id": 898}, "organization": {"id": 945}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 64}, "user": {"role": "owner"}}}, "resource": {"id": 300, "owner": {"id": 465}, "assignee": {"id": 64}, "organization": {"id": 677}, "project": {"owner": {"id": 703}, "assignee": {"id": 802}, "organization": {"id": 907}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 492}, "assignee": {"id": 47}, "organization": {"id": 173}, "project": {"owner": {"id": 776}, "assignee": {"id": 862}, "organization": {"id": 992}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 451}, "assignee": {"id": 5}, "organization": {"id": 147}, "project": {"owner": {"id": 706}, "assignee": {"id": 872}, "organization": {"id": 953}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 421}, "assignee": {"id": 27}, "organization": {"id": 677}, "project": {"owner": {"id": 773}, "assignee": {"id": 802}, "organization": {"id": 928}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 50, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 438}, "assignee": {"id": 50}, "organization": {"id": 637}, "project": {"owner": {"id": 788}, "assignee": {"id": 869}, "organization": {"id": 929}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 378, "owner": {"id": 480}, "assignee": {"id": 92}, "organization": {"id": 177}, "project": {"owner": {"id": 755}, "assignee": {"id": 889}, "organization": {"id": 972}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 420}, "assignee": {"id": 9}, "organization": {"id": 106}, "project": {"owner": {"id": 730}, "assignee": {"id": 872}, "organization": {"id": 992}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"id": 373, "owner": {"id": 417}, "assignee": {"id": 55}, "organization": {"id": 620}, "project": {"owner": {"id": 702}, "assignee": {"id": 876}, "organization": {"id": 950}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 411}, "assignee": {"id": 88}, "organization": {"id": 622}, "project": {"owner": {"id": 774}, "assignee": {"id": 803}, "organization": {"id": 968}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 245}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 402}, "assignee": {"id": 65}, "organization": {"id": 167}, "project": {"owner": {"id": 769}, "assignee": {"id": 885}, "organization": {"id": 927}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 478}, "assignee": {"id": 35}, "organization": {"id": 182}, "project": {"owner": {"id": 798}, "assignee": {"id": 859}, "organization": {"id": 933}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 163, "owner": {"id": 283}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 473}, "assignee": {"id": 90}, "organization": {"id": 670}, "project": {"owner": {"id": 762}, "assignee": {"id": 853}, "organization": {"id": 929}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 317, "owner": {"id": 454}, "assignee": {"id": 56}, "organization": {"id": 616}, "project": {"owner": {"id": 743}, "assignee": {"id": 866}, "organization": {"id": 982}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 443}, "assignee": {"id": 31}, "organization": {"id": 161}, "project": {"owner": {"id": 767}, "assignee": {"id": 826}, "organization": {"id": 951}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 214}, "user": {"role": null}}}, "resource": {"id": 381, "owner": {"id": 433}, "assignee": {"id": 86}, "organization": {"id": 194}, "project": {"owner": {"id": 719}, "assignee": {"id": 867}, "organization": {"id": 943}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 249}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 448}, "assignee": {"id": 84}, "organization": {"id": 647}, "project": {"owner": {"id": 785}, "assignee": {"id": 847}, "organization": {"id": 914}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"id": 394, "owner": {"id": 403}, "assignee": {"id": 11}, "organization": {"id": 625}, "project": {"owner": {"id": 781}, "assignee": {"id": 877}, "organization": {"id": 903}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 395, "owner": {"id": 425}, "assignee": {"id": 53}, "organization": {"id": 129}, "project": {"owner": {"id": 722}, "assignee": {"id": 823}, "organization": {"id": 929}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 337, "owner": {"id": 494}, "assignee": {"id": 70}, "organization": {"id": 152}, "project": {"owner": {"id": 785}, "assignee": {"id": 835}, "organization": {"id": 942}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 493}, "assignee": {"id": 88}, "organization": {"id": 690}, "project": {"owner": {"id": 794}, "assignee": {"id": 845}, "organization": {"id": 954}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 387, "owner": {"id": 440}, "assignee": {"id": 97}, "organization": {"id": 679}, "project": {"owner": {"id": 787}, "assignee": {"id": 881}, "organization": {"id": 951}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 91, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 346, "owner": {"id": 499}, "assignee": {"id": 91}, "organization": {"id": 160}, "project": {"owner": {"id": 728}, "assignee": {"id": 804}, "organization": {"id": 999}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 401}, "assignee": {"id": 9}, "organization": {"id": 160}, "project": {"owner": {"id": 792}, "assignee": {"id": 859}, "organization": {"id": 906}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 404}, "assignee": {"id": 82}, "organization": {"id": 636}, "project": {"owner": {"id": 786}, "assignee": {"id": 841}, "organization": {"id": 964}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 16, "privilege": "business"}, "organization": {"id": 123, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"id": 379, "owner": {"id": 427}, "assignee": {"id": 16}, "organization": {"id": 642}, "project": {"owner": {"id": 722}, "assignee": {"id": 892}, "organization": {"id": 914}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 282}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 447}, "assignee": {"id": 73}, "organization": {"id": 144}, "project": {"owner": {"id": 790}, "assignee": {"id": 835}, "organization": {"id": 935}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 304, "owner": {"id": 436}, "assignee": {"id": 8}, "organization": {"id": 152}, "project": {"owner": {"id": 735}, "assignee": {"id": 842}, "organization": {"id": 952}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 331, "owner": {"id": 476}, "assignee": {"id": 57}, "organization": {"id": 684}, "project": {"owner": {"id": 731}, "assignee": {"id": 813}, "organization": {"id": 993}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 484}, "assignee": {"id": 60}, "organization": {"id": 667}, "project": {"owner": {"id": 739}, "assignee": {"id": 899}, "organization": {"id": 923}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 290}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 428}, "assignee": {"id": 52}, "organization": {"id": 146}, "project": {"owner": {"id": 743}, "assignee": {"id": 895}, "organization": {"id": 925}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 441}, "assignee": {"id": 11}, "organization": {"id": 101}, "project": {"owner": {"id": 733}, "assignee": {"id": 860}, "organization": {"id": 944}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"id": 341, "owner": {"id": 456}, "assignee": {"id": 23}, "organization": {"id": 604}, "project": {"owner": {"id": 722}, "assignee": {"id": 860}, "organization": {"id": 958}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"id": 332, "owner": {"id": 407}, "assignee": {"id": 11}, "organization": {"id": 633}, "project": {"owner": {"id": 701}, "assignee": {"id": 805}, "organization": {"id": 987}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 326, "owner": {"id": 477}, "assignee": {"id": 78}, "organization": {"id": 131}, "project": {"owner": {"id": 785}, "assignee": {"id": 819}, "organization": {"id": 984}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 491}, "assignee": {"id": 20}, "organization": {"id": 164}, "project": {"owner": {"id": 782}, "assignee": {"id": 807}, "organization": {"id": 917}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 175, "owner": {"id": 270}, "user": {"role": null}}}, "resource": {"id": 322, "owner": {"id": 422}, "assignee": {"id": 38}, "organization": {"id": 660}, "project": {"owner": {"id": 772}, "assignee": {"id": 863}, "organization": {"id": 989}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 472}, "assignee": {"id": 65}, "organization": {"id": 688}, "project": {"owner": {"id": 716}, "assignee": {"id": 800}, "organization": {"id": 935}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 483}, "assignee": {"id": 56}, "organization": {"id": 169}, "project": {"owner": {"id": 764}, "assignee": {"id": 859}, "organization": {"id": 900}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 320, "owner": {"id": 421}, "assignee": {"id": 73}, "organization": {"id": 108}, "project": {"owner": {"id": 772}, "assignee": {"id": 819}, "organization": {"id": 948}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 336, "owner": {"id": 455}, "assignee": {"id": 37}, "organization": {"id": 681}, "project": {"owner": {"id": 787}, "assignee": {"id": 829}, "organization": {"id": 905}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 192, "owner": {"id": 59}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 440}, "assignee": {"id": 59}, "organization": {"id": 687}, "project": {"owner": {"id": 764}, "assignee": {"id": 891}, "organization": {"id": 969}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 220}, "user": {"role": "maintainer"}}}, "resource": {"id": 308, "owner": {"id": 476}, "assignee": {"id": 56}, "organization": {"id": 161}, "project": {"owner": {"id": 726}, "assignee": {"id": 842}, "organization": {"id": 951}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 205}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 464}, "assignee": {"id": 52}, "organization": {"id": 179}, "project": {"owner": {"id": 753}, "assignee": {"id": 830}, "organization": {"id": 966}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"id": 311, "owner": {"id": 460}, "assignee": {"id": 1}, "organization": {"id": 674}, "project": {"owner": {"id": 787}, "assignee": {"id": 811}, "organization": {"id": 957}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 390, "owner": {"id": 490}, "assignee": {"id": 27}, "organization": {"id": 633}, "project": {"owner": {"id": 741}, "assignee": {"id": 800}, "organization": {"id": 950}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 200}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 493}, "assignee": {"id": 85}, "organization": {"id": 121}, "project": {"owner": {"id": 793}, "assignee": {"id": 833}, "organization": {"id": 966}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 205}, "user": {"role": "supervisor"}}}, "resource": {"id": 300, "owner": {"id": 469}, "assignee": {"id": 98}, "organization": {"id": 136}, "project": {"owner": {"id": 734}, "assignee": {"id": 888}, "organization": {"id": 998}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 345, "owner": {"id": 413}, "assignee": {"id": 36}, "organization": {"id": 658}, "project": {"owner": {"id": 741}, "assignee": {"id": 801}, "organization": {"id": 932}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 367, "owner": {"id": 484}, "assignee": {"id": 2}, "organization": {"id": 698}, "project": {"owner": {"id": 764}, "assignee": {"id": 870}, "organization": {"id": 931}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 81, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 418}, "assignee": {"id": 81}, "organization": {"id": 183}, "project": {"owner": {"id": 745}, "assignee": {"id": 886}, "organization": {"id": 951}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 105, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 454}, "assignee": {"id": 75}, "organization": {"id": 105}, "project": {"owner": {"id": 784}, "assignee": {"id": 829}, "organization": {"id": 951}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 383, "owner": {"id": 494}, "assignee": {"id": 64}, "organization": {"id": 654}, "project": {"owner": {"id": 712}, "assignee": {"id": 807}, "organization": {"id": 906}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 440}, "assignee": {"id": 98}, "organization": {"id": 658}, "project": {"owner": {"id": 705}, "assignee": {"id": 875}, "organization": {"id": 937}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"id": 343, "owner": {"id": 416}, "assignee": {"id": 43}, "organization": {"id": 187}, "project": {"owner": {"id": 751}, "assignee": {"id": 837}, "organization": {"id": 919}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 243}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 489}, "assignee": {"id": 10}, "organization": {"id": 111}, "project": {"owner": {"id": 716}, "assignee": {"id": 820}, "organization": {"id": 996}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 222}, "user": {"role": null}}}, "resource": {"id": 360, "owner": {"id": 451}, "assignee": {"id": 72}, "organization": {"id": 639}, "project": {"owner": {"id": 743}, "assignee": {"id": 833}, "organization": {"id": 957}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 149, "owner": {"id": 277}, "user": {"role": null}}}, "resource": {"id": 341, "owner": {"id": 442}, "assignee": {"id": 43}, "organization": {"id": 662}, "project": {"owner": {"id": 763}, "assignee": {"id": 806}, "organization": {"id": 970}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 193, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 323, "owner": {"id": 465}, "assignee": {"id": 24}, "organization": {"id": 193}, "project": {"owner": {"id": 782}, "assignee": {"id": 804}, "organization": {"id": 946}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 96, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 374, "owner": {"id": 409}, "assignee": {"id": 96}, "organization": {"id": 136}, "project": {"owner": {"id": 717}, "assignee": {"id": 877}, "organization": {"id": 936}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 315, "owner": {"id": 474}, "assignee": {"id": 29}, "organization": {"id": 634}, "project": {"owner": {"id": 732}, "assignee": {"id": 897}, "organization": {"id": 962}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 407}, "assignee": {"id": 93}, "organization": {"id": 600}, "project": {"owner": {"id": 745}, "assignee": {"id": 848}, "organization": {"id": 920}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 220}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 421}, "assignee": {"id": 45}, "organization": {"id": 114}, "project": {"owner": {"id": 721}, "assignee": {"id": 826}, "organization": {"id": 921}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"id": 362, "owner": {"id": 410}, "assignee": {"id": 78}, "organization": {"id": 192}, "project": {"owner": {"id": 702}, "assignee": {"id": 806}, "organization": {"id": 912}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 267}, "user": {"role": "maintainer"}}}, "resource": {"id": 378, "owner": {"id": 435}, "assignee": {"id": 2}, "organization": {"id": 656}, "project": {"owner": {"id": 717}, "assignee": {"id": 872}, "organization": {"id": 940}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 278}, "user": {"role": "maintainer"}}}, "resource": {"id": 382, "owner": {"id": 498}, "assignee": {"id": 89}, "organization": {"id": 691}, "project": {"owner": {"id": 740}, "assignee": {"id": 818}, "organization": {"id": 920}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 152, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"id": 316, "owner": {"id": 456}, "assignee": {"id": 97}, "organization": {"id": 152}, "project": {"owner": {"id": 759}, "assignee": {"id": 831}, "organization": {"id": 983}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"id": 321, "owner": {"id": 479}, "assignee": {"id": 24}, "organization": {"id": 140}, "project": {"owner": {"id": 718}, "assignee": {"id": 887}, "organization": {"id": 953}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 367, "owner": {"id": 439}, "assignee": {"id": 89}, "organization": {"id": 606}, "project": {"owner": {"id": 734}, "assignee": {"id": 851}, "organization": {"id": 930}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 387, "owner": {"id": 438}, "assignee": {"id": 85}, "organization": {"id": 600}, "project": {"owner": {"id": 761}, "assignee": {"id": 815}, "organization": {"id": 946}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"id": 331, "owner": {"id": 453}, "assignee": {"id": 94}, "organization": {"id": 139}, "project": {"owner": {"id": 787}, "assignee": {"id": 805}, "organization": {"id": 972}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 301, "owner": {"id": 440}, "assignee": {"id": 99}, "organization": {"id": 108}, "project": {"owner": {"id": 774}, "assignee": {"id": 821}, "organization": {"id": 916}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 209}, "user": {"role": "worker"}}}, "resource": {"id": 307, "owner": {"id": 413}, "assignee": {"id": 50}, "organization": {"id": 645}, "project": {"owner": {"id": 727}, "assignee": {"id": 864}, "organization": {"id": 911}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 476}, "assignee": {"id": 54}, "organization": {"id": 698}, "project": {"owner": {"id": 779}, "assignee": {"id": 858}, "organization": {"id": 983}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 349, "owner": {"id": 419}, "assignee": {"id": 1}, "organization": {"id": 154}, "project": {"owner": {"id": 711}, "assignee": {"id": 855}, "organization": {"id": 934}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 449}, "assignee": {"id": 92}, "organization": {"id": 115}, "project": {"owner": {"id": 710}, "assignee": {"id": 872}, "organization": {"id": 915}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"id": 316, "owner": {"id": 496}, "assignee": {"id": 53}, "organization": {"id": 645}, "project": {"owner": {"id": 798}, "assignee": {"id": 848}, "organization": {"id": 913}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 369, "owner": {"id": 405}, "assignee": {"id": 80}, "organization": {"id": 672}, "project": {"owner": {"id": 710}, "assignee": {"id": 800}, "organization": {"id": 933}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 156, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 482}, "assignee": {"id": 83}, "organization": {"id": 156}, "project": {"owner": {"id": 702}, "assignee": {"id": 877}, "organization": {"id": 912}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 154, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 441}, "assignee": {"id": 70}, "organization": {"id": 154}, "project": {"owner": {"id": 719}, "assignee": {"id": 855}, "organization": {"id": 972}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 433}, "assignee": {"id": 60}, "organization": {"id": 621}, "project": {"owner": {"id": 799}, "assignee": {"id": 893}, "organization": {"id": 956}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 64}, "user": {"role": "owner"}}}, "resource": {"id": 327, "owner": {"id": 416}, "assignee": {"id": 64}, "organization": {"id": 646}, "project": {"owner": {"id": 789}, "assignee": {"id": 808}, "organization": {"id": 966}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 150, "owner": {"id": 270}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 467}, "assignee": {"id": 77}, "organization": {"id": 150}, "project": {"owner": {"id": 780}, "assignee": {"id": 825}, "organization": {"id": 998}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 41, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 459}, "assignee": {"id": 41}, "organization": {"id": 165}, "project": {"owner": {"id": 744}, "assignee": {"id": 860}, "organization": {"id": 994}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 160, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 398, "owner": {"id": 491}, "assignee": {"id": 37}, "organization": {"id": 647}, "project": {"owner": {"id": 713}, "assignee": {"id": 878}, "organization": {"id": 928}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 310, "owner": {"id": 422}, "assignee": {"id": 8}, "organization": {"id": 666}, "project": {"owner": {"id": 774}, "assignee": {"id": 821}, "organization": {"id": 926}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 372, "owner": {"id": 477}, "assignee": {"id": 8}, "organization": {"id": 105}, "project": {"owner": {"id": 727}, "assignee": {"id": 815}, "organization": {"id": 986}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 437}, "assignee": {"id": 93}, "organization": {"id": 182}, "project": {"owner": {"id": 758}, "assignee": {"id": 864}, "organization": {"id": 952}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 208}, "user": {"role": "supervisor"}}}, "resource": {"id": 333, "owner": {"id": 447}, "assignee": {"id": 16}, "organization": {"id": 697}, "project": {"owner": {"id": 741}, "assignee": {"id": 868}, "organization": {"id": 991}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 176, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 447}, "assignee": {"id": 35}, "organization": {"id": 620}, "project": {"owner": {"id": 742}, "assignee": {"id": 831}, "organization": {"id": 982}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"id": 339, "owner": {"id": 452}, "assignee": {"id": 78}, "organization": {"id": 114}, "project": {"owner": {"id": 736}, "assignee": {"id": 813}, "organization": {"id": 992}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 397, "owner": {"id": 442}, "assignee": {"id": 24}, "organization": {"id": 192}, "project": {"owner": {"id": 768}, "assignee": {"id": 871}, "organization": {"id": 907}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 202}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 448}, "assignee": {"id": 10}, "organization": {"id": 639}, "project": {"owner": {"id": 742}, "assignee": {"id": 836}, "organization": {"id": 911}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"id": 368, "owner": {"id": 404}, "assignee": {"id": 94}, "organization": {"id": 674}, "project": {"owner": {"id": 781}, "assignee": {"id": 821}, "organization": {"id": 992}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 330, "owner": {"id": 483}, "assignee": {"id": 35}, "organization": {"id": 104}, "project": {"owner": {"id": 723}, "assignee": {"id": 865}, "organization": {"id": 906}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 435}, "assignee": {"id": 18}, "organization": {"id": 198}, "project": {"owner": {"id": 729}, "assignee": {"id": 830}, "organization": {"id": 911}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 418}, "assignee": {"id": 85}, "organization": {"id": 657}, "project": {"owner": {"id": 798}, "assignee": {"id": 897}, "organization": {"id": 908}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 491}, "assignee": {"id": 91}, "organization": {"id": 661}, "project": {"owner": {"id": 782}, "assignee": {"id": 845}, "organization": {"id": 970}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 498}, "assignee": {"id": 510}, "organization": {"id": 128}, "project": {"owner": {"id": 756}, "assignee": {"id": 899}, "organization": {"id": 958}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 116, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 454}, "assignee": {"id": 513}, "organization": {"id": 116}, "project": {"owner": {"id": 778}, "assignee": {"id": 822}, "organization": {"id": 916}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 64}, "user": {"role": "owner"}}}, "resource": {"id": 300, "owner": {"id": 458}, "assignee": {"id": 537}, "organization": {"id": 679}, "project": {"owner": {"id": 709}, "assignee": {"id": 816}, "organization": {"id": 948}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"id": 326, "owner": {"id": 413}, "assignee": {"id": 545}, "organization": {"id": 645}, "project": {"owner": {"id": 714}, "assignee": {"id": 844}, "organization": {"id": 936}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 416}, "assignee": {"id": 583}, "organization": {"id": 184}, "project": {"owner": {"id": 752}, "assignee": {"id": 881}, "organization": {"id": 953}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 445}, "assignee": {"id": 599}, "organization": {"id": 109}, "project": {"owner": {"id": 795}, "assignee": {"id": 862}, "organization": {"id": 964}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 361, "owner": {"id": 489}, "assignee": {"id": 529}, "organization": {"id": 645}, "project": {"owner": {"id": 712}, "assignee": {"id": 816}, "organization": {"id": 946}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 181, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 343, "owner": {"id": 422}, "assignee": {"id": 502}, "organization": {"id": 625}, "project": {"owner": {"id": 760}, "assignee": {"id": 890}, "organization": {"id": 986}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 329, "owner": {"id": 425}, "assignee": {"id": 511}, "organization": {"id": 125}, "project": {"owner": {"id": 789}, "assignee": {"id": 849}, "organization": {"id": 992}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 309, "owner": {"id": 460}, "assignee": {"id": 596}, "organization": {"id": 148}, "project": {"owner": {"id": 765}, "assignee": {"id": 896}, "organization": {"id": 987}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"id": 314, "owner": {"id": 458}, "assignee": {"id": 566}, "organization": {"id": 612}, "project": {"owner": {"id": 725}, "assignee": {"id": 879}, "organization": {"id": 980}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 348, "owner": {"id": 462}, "assignee": {"id": 585}, "organization": {"id": 603}, "project": {"owner": {"id": 792}, "assignee": {"id": 830}, "organization": {"id": 999}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"id": 335, "owner": {"id": 486}, "assignee": {"id": 518}, "organization": {"id": 108}, "project": {"owner": {"id": 776}, "assignee": {"id": 821}, "organization": {"id": 975}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"id": 358, "owner": {"id": 497}, "assignee": {"id": 525}, "organization": {"id": 171}, "project": {"owner": {"id": 738}, "assignee": {"id": 889}, "organization": {"id": 926}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"id": 310, "owner": {"id": 476}, "assignee": {"id": 506}, "organization": {"id": 627}, "project": {"owner": {"id": 724}, "assignee": {"id": 881}, "organization": {"id": 974}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 117, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 418}, "assignee": {"id": 591}, "organization": {"id": 638}, "project": {"owner": {"id": 727}, "assignee": {"id": 819}, "organization": {"id": 908}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 237}, "user": {"role": null}}}, "resource": {"id": 394, "owner": {"id": 496}, "assignee": {"id": 522}, "organization": {"id": 115}, "project": {"owner": {"id": 794}, "assignee": {"id": 814}, "organization": {"id": 941}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 264}, "user": {"role": null}}}, "resource": {"id": 311, "owner": {"id": 444}, "assignee": {"id": 544}, "organization": {"id": 176}, "project": {"owner": {"id": 747}, "assignee": {"id": 839}, "organization": {"id": 981}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"id": 390, "owner": {"id": 431}, "assignee": {"id": 576}, "organization": {"id": 692}, "project": {"owner": {"id": 757}, "assignee": {"id": 816}, "organization": {"id": 926}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 101, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 355, "owner": {"id": 402}, "assignee": {"id": 589}, "organization": {"id": 612}, "project": {"owner": {"id": 753}, "assignee": {"id": 840}, "organization": {"id": 966}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 28}, "user": {"role": "owner"}}}, "resource": {"id": 337, "owner": {"id": 460}, "assignee": {"id": 507}, "organization": {"id": 160}, "project": {"owner": {"id": 738}, "assignee": {"id": 865}, "organization": {"id": 986}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 350, "owner": {"id": 458}, "assignee": {"id": 580}, "organization": {"id": 153}, "project": {"owner": {"id": 734}, "assignee": {"id": 850}, "organization": {"id": 912}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 471}, "assignee": {"id": 519}, "organization": {"id": 614}, "project": {"owner": {"id": 775}, "assignee": {"id": 870}, "organization": {"id": 933}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 492}, "assignee": {"id": 576}, "organization": {"id": 669}, "project": {"owner": {"id": 775}, "assignee": {"id": 889}, "organization": {"id": 947}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 217}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 456}, "assignee": {"id": 590}, "organization": {"id": 101}, "project": {"owner": {"id": 728}, "assignee": {"id": 851}, "organization": {"id": 956}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 320, "owner": {"id": 423}, "assignee": {"id": 504}, "organization": {"id": 156}, "project": {"owner": {"id": 784}, "assignee": {"id": 820}, "organization": {"id": 979}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 426}, "assignee": {"id": 510}, "organization": {"id": 647}, "project": {"owner": {"id": 737}, "assignee": {"id": 846}, "organization": {"id": 910}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 332, "owner": {"id": 441}, "assignee": {"id": 568}, "organization": {"id": 666}, "project": {"owner": {"id": 771}, "assignee": {"id": 896}, "organization": {"id": 944}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"id": 335, "owner": {"id": 464}, "assignee": {"id": 504}, "organization": {"id": 155}, "project": {"owner": {"id": 755}, "assignee": {"id": 841}, "organization": {"id": 984}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 130, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 409}, "assignee": {"id": 579}, "organization": {"id": 130}, "project": {"owner": {"id": 703}, "assignee": {"id": 864}, "organization": {"id": 963}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"id": 363, "owner": {"id": 409}, "assignee": {"id": 515}, "organization": {"id": 649}, "project": {"owner": {"id": 719}, "assignee": {"id": 896}, "organization": {"id": 974}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 166, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 379, "owner": {"id": 418}, "assignee": {"id": 541}, "organization": {"id": 682}, "project": {"owner": {"id": 776}, "assignee": {"id": 870}, "organization": {"id": 962}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 373, "owner": {"id": 427}, "assignee": {"id": 507}, "organization": {"id": 162}, "project": {"owner": {"id": 786}, "assignee": {"id": 824}, "organization": {"id": 999}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 64, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"id": 326, "owner": {"id": 424}, "assignee": {"id": 548}, "organization": {"id": 157}, "project": {"owner": {"id": 704}, "assignee": {"id": 855}, "organization": {"id": 984}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 470}, "assignee": {"id": 559}, "organization": {"id": 670}, "project": {"owner": {"id": 731}, "assignee": {"id": 897}, "organization": {"id": 953}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 495}, "assignee": {"id": 511}, "organization": {"id": 601}, "project": {"owner": {"id": 793}, "assignee": {"id": 807}, "organization": {"id": 999}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 426}, "assignee": {"id": 552}, "organization": {"id": 116}, "project": {"owner": {"id": 740}, "assignee": {"id": 821}, "organization": {"id": 961}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 331, "owner": {"id": 455}, "assignee": {"id": 524}, "organization": {"id": 190}, "project": {"owner": {"id": 741}, "assignee": {"id": 896}, "organization": {"id": 958}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"id": 360, "owner": {"id": 417}, "assignee": {"id": 534}, "organization": {"id": 644}, "project": {"owner": {"id": 701}, "assignee": {"id": 865}, "organization": {"id": 902}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 233}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 491}, "assignee": {"id": 583}, "organization": {"id": 600}, "project": {"owner": {"id": 798}, "assignee": {"id": 801}, "organization": {"id": 903}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 123, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 431}, "assignee": {"id": 599}, "organization": {"id": 123}, "project": {"owner": {"id": 762}, "assignee": {"id": 814}, "organization": {"id": 938}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"id": 363, "owner": {"id": 497}, "assignee": {"id": 567}, "organization": {"id": 196}, "project": {"owner": {"id": 700}, "assignee": {"id": 883}, "organization": {"id": 981}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 407}, "assignee": {"id": 559}, "organization": {"id": 669}, "project": {"owner": {"id": 742}, "assignee": {"id": 817}, "organization": {"id": 902}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"id": 364, "owner": {"id": 463}, "assignee": {"id": 515}, "organization": {"id": 627}, "project": {"owner": {"id": 774}, "assignee": {"id": 816}, "organization": {"id": 995}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 242}, "user": {"role": "maintainer"}}}, "resource": {"id": 367, "owner": {"id": 431}, "assignee": {"id": 505}, "organization": {"id": 133}, "project": {"owner": {"id": 798}, "assignee": {"id": 807}, "organization": {"id": 980}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"id": 334, "owner": {"id": 458}, "assignee": {"id": 598}, "organization": {"id": 104}, "project": {"owner": {"id": 738}, "assignee": {"id": 887}, "organization": {"id": 942}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 343, "owner": {"id": 439}, "assignee": {"id": 515}, "organization": {"id": 610}, "project": {"owner": {"id": 711}, "assignee": {"id": 860}, "organization": {"id": 982}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 493}, "assignee": {"id": 554}, "organization": {"id": 635}, "project": {"owner": {"id": 782}, "assignee": {"id": 822}, "organization": {"id": 903}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 416}, "assignee": {"id": 507}, "organization": {"id": 177}, "project": {"owner": {"id": 772}, "assignee": {"id": 835}, "organization": {"id": 916}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 465}, "assignee": {"id": 567}, "organization": {"id": 157}, "project": {"owner": {"id": 715}, "assignee": {"id": 877}, "organization": {"id": 993}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 389, "owner": {"id": 487}, "assignee": {"id": 577}, "organization": {"id": 633}, "project": {"owner": {"id": 796}, "assignee": {"id": 847}, "organization": {"id": 957}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"id": 310, "owner": {"id": 466}, "assignee": {"id": 545}, "organization": {"id": 625}, "project": {"owner": {"id": 714}, "assignee": {"id": 879}, "organization": {"id": 932}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 163, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 328, "owner": {"id": 472}, "assignee": {"id": 595}, "organization": {"id": 163}, "project": {"owner": {"id": 777}, "assignee": {"id": 863}, "organization": {"id": 913}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 165, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 342, "owner": {"id": 414}, "assignee": {"id": 500}, "organization": {"id": 165}, "project": {"owner": {"id": 716}, "assignee": {"id": 843}, "organization": {"id": 987}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 316, "owner": {"id": 402}, "assignee": {"id": 539}, "organization": {"id": 639}, "project": {"owner": {"id": 741}, "assignee": {"id": 869}, "organization": {"id": 901}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 326, "owner": {"id": 441}, "assignee": {"id": 535}, "organization": {"id": 637}, "project": {"owner": {"id": 788}, "assignee": {"id": 844}, "organization": {"id": 966}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 172, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 443}, "assignee": {"id": 534}, "organization": {"id": 172}, "project": {"owner": {"id": 700}, "assignee": {"id": 821}, "organization": {"id": 951}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 326, "owner": {"id": 406}, "assignee": {"id": 506}, "organization": {"id": 159}, "project": {"owner": {"id": 779}, "assignee": {"id": 813}, "organization": {"id": 978}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 68, "privilege": "user"}, "organization": {"id": 139, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 409}, "assignee": {"id": 516}, "organization": {"id": 639}, "project": {"owner": {"id": 718}, "assignee": {"id": 859}, "organization": {"id": 907}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 498}, "assignee": {"id": 543}, "organization": {"id": 684}, "project": {"owner": {"id": 734}, "assignee": {"id": 847}, "organization": {"id": 945}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 460}, "assignee": {"id": 564}, "organization": {"id": 147}, "project": {"owner": {"id": 711}, "assignee": {"id": 854}, "organization": {"id": 953}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 371, "owner": {"id": 408}, "assignee": {"id": 586}, "organization": {"id": 138}, "project": {"owner": {"id": 702}, "assignee": {"id": 804}, "organization": {"id": 909}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"id": 336, "owner": {"id": 412}, "assignee": {"id": 514}, "organization": {"id": 692}, "project": {"owner": {"id": 739}, "assignee": {"id": 836}, "organization": {"id": 987}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 455}, "assignee": {"id": 550}, "organization": {"id": 650}, "project": {"owner": {"id": 729}, "assignee": {"id": 818}, "organization": {"id": 916}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 384, "owner": {"id": 417}, "assignee": {"id": 565}, "organization": {"id": 137}, "project": {"owner": {"id": 712}, "assignee": {"id": 878}, "organization": {"id": 994}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 470}, "assignee": {"id": 589}, "organization": {"id": 104}, "project": {"owner": {"id": 780}, "assignee": {"id": 878}, "organization": {"id": 915}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 362, "owner": {"id": 453}, "assignee": {"id": 532}, "organization": {"id": 675}, "project": {"owner": {"id": 796}, "assignee": {"id": 855}, "organization": {"id": 932}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 107, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 389, "owner": {"id": 410}, "assignee": {"id": 582}, "organization": {"id": 624}, "project": {"owner": {"id": 787}, "assignee": {"id": 855}, "organization": {"id": 925}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 293}, "user": {"role": "supervisor"}}}, "resource": {"id": 334, "owner": {"id": 463}, "assignee": {"id": 508}, "organization": {"id": 102}, "project": {"owner": {"id": 750}, "assignee": {"id": 899}, "organization": {"id": 981}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"id": 307, "owner": {"id": 492}, "assignee": {"id": 572}, "organization": {"id": 143}, "project": {"owner": {"id": 779}, "assignee": {"id": 828}, "organization": {"id": 921}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 112, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 389, "owner": {"id": 405}, "assignee": {"id": 531}, "organization": {"id": 600}, "project": {"owner": {"id": 719}, "assignee": {"id": 841}, "organization": {"id": 979}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 421}, "assignee": {"id": 500}, "organization": {"id": 692}, "project": {"owner": {"id": 797}, "assignee": {"id": 821}, "organization": {"id": 951}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 129, "owner": {"id": 217}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 450}, "assignee": {"id": 590}, "organization": {"id": 129}, "project": {"owner": {"id": 778}, "assignee": {"id": 875}, "organization": {"id": 965}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"id": 300, "owner": {"id": 475}, "assignee": {"id": 555}, "organization": {"id": 138}, "project": {"owner": {"id": 784}, "assignee": {"id": 882}, "organization": {"id": 934}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 481}, "assignee": {"id": 514}, "organization": {"id": 660}, "project": {"owner": {"id": 790}, "assignee": {"id": 894}, "organization": {"id": 956}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"id": 380, "owner": {"id": 442}, "assignee": {"id": 534}, "organization": {"id": 626}, "project": {"owner": {"id": 720}, "assignee": {"id": 899}, "organization": {"id": 915}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 363, "owner": {"id": 447}, "assignee": {"id": 501}, "organization": {"id": 101}, "project": {"owner": {"id": 727}, "assignee": {"id": 818}, "organization": {"id": 959}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 414}, "assignee": {"id": 515}, "organization": {"id": 182}, "project": {"owner": {"id": 716}, "assignee": {"id": 846}, "organization": {"id": 949}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 466}, "assignee": {"id": 531}, "organization": {"id": 621}, "project": {"owner": {"id": 787}, "assignee": {"id": 862}, "organization": {"id": 951}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 456}, "assignee": {"id": 576}, "organization": {"id": 662}, "project": {"owner": {"id": 749}, "assignee": {"id": 810}, "organization": {"id": 931}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 376, "owner": {"id": 445}, "assignee": {"id": 587}, "organization": {"id": 191}, "project": {"owner": {"id": 797}, "assignee": {"id": 819}, "organization": {"id": 990}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 14}, "user": {"role": "owner"}}}, "resource": {"id": 364, "owner": {"id": 464}, "assignee": {"id": 554}, "organization": {"id": 141}, "project": {"owner": {"id": 740}, "assignee": {"id": 834}, "organization": {"id": 918}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 77}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 485}, "assignee": {"id": 569}, "organization": {"id": 699}, "project": {"owner": {"id": 746}, "assignee": {"id": 886}, "organization": {"id": 978}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 38}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 401}, "assignee": {"id": 596}, "organization": {"id": 687}, "project": {"owner": {"id": 754}, "assignee": {"id": 816}, "organization": {"id": 958}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 430}, "assignee": {"id": 508}, "organization": {"id": 197}, "project": {"owner": {"id": 783}, "assignee": {"id": 816}, "organization": {"id": 978}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 311, "owner": {"id": 487}, "assignee": {"id": 585}, "organization": {"id": 151}, "project": {"owner": {"id": 794}, "assignee": {"id": 884}, "organization": {"id": 937}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 376, "owner": {"id": 471}, "assignee": {"id": 567}, "organization": {"id": 678}, "project": {"owner": {"id": 752}, "assignee": {"id": 818}, "organization": {"id": 931}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 300, "owner": {"id": 401}, "assignee": {"id": 508}, "organization": {"id": 697}, "project": {"owner": {"id": 761}, "assignee": {"id": 885}, "organization": {"id": 915}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"id": 384, "owner": {"id": 403}, "assignee": {"id": 500}, "organization": {"id": 162}, "project": {"owner": {"id": 779}, "assignee": {"id": 897}, "organization": {"id": 907}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 264}, "user": {"role": "supervisor"}}}, "resource": {"id": 334, "owner": {"id": 487}, "assignee": {"id": 526}, "organization": {"id": 140}, "project": {"owner": {"id": 766}, "assignee": {"id": 804}, "organization": {"id": 961}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 176, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 334, "owner": {"id": 474}, "assignee": {"id": 586}, "organization": {"id": 622}, "project": {"owner": {"id": 723}, "assignee": {"id": 859}, "organization": {"id": 914}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 200}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 435}, "assignee": {"id": 522}, "organization": {"id": 625}, "project": {"owner": {"id": 702}, "assignee": {"id": 850}, "organization": {"id": 936}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 150, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"id": 382, "owner": {"id": 403}, "assignee": {"id": 507}, "organization": {"id": 150}, "project": {"owner": {"id": 737}, "assignee": {"id": 875}, "organization": {"id": 918}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 477}, "assignee": {"id": 540}, "organization": {"id": 197}, "project": {"owner": {"id": 711}, "assignee": {"id": 853}, "organization": {"id": 942}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 316, "owner": {"id": 444}, "assignee": {"id": 506}, "organization": {"id": 602}, "project": {"owner": {"id": 712}, "assignee": {"id": 832}, "organization": {"id": 923}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"id": 338, "owner": {"id": 447}, "assignee": {"id": 527}, "organization": {"id": 618}, "project": {"owner": {"id": 778}, "assignee": {"id": 857}, "organization": {"id": 963}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 446}, "assignee": {"id": 597}, "organization": {"id": 166}, "project": {"owner": {"id": 757}, "assignee": {"id": 804}, "organization": {"id": 998}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 223}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 451}, "assignee": {"id": 521}, "organization": {"id": 136}, "project": {"owner": {"id": 778}, "assignee": {"id": 819}, "organization": {"id": 908}}}} } -test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"id": 349, "owner": {"id": 420}, "assignee": {"id": 599}, "organization": {"id": 690}, "project": {"owner": {"id": 737}, "assignee": {"id": 832}, "organization": {"id": 928}}}} +test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 413}, "assignee": {"id": 561}, "organization": {"id": 624}, "project": {"owner": {"id": 764}, "assignee": {"id": 898}, "organization": {"id": 964}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": null}, "resource": {"id": 368, "owner": {"id": 408}, "assignee": {"id": 596}, "organization": {"id": 651}, "project": {"owner": {"id": 68}, "assignee": {"id": 821}, "organization": {"id": 938}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": null}, "resource": {"id": 361, "owner": {"id": 470}, "assignee": {"id": 517}, "organization": {"id": 653}, "project": {"owner": {"id": 35}, "assignee": {"id": 847}, "organization": {"id": 978}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": null}, "resource": {"id": 342, "owner": {"id": 457}, "assignee": {"id": 543}, "organization": {"id": 600}, "project": {"owner": {"id": 65}, "assignee": {"id": 842}, "organization": {"id": 962}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": null}, "resource": {"id": 345, "owner": {"id": 464}, "assignee": {"id": 575}, "organization": {"id": 629}, "project": {"owner": {"id": 87}, "assignee": {"id": 807}, "organization": {"id": 971}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 68, "privilege": "user"}, "organization": null}, "resource": {"id": 363, "owner": {"id": 454}, "assignee": {"id": 504}, "organization": {"id": 601}, "project": {"owner": {"id": 68}, "assignee": {"id": 867}, "organization": {"id": 928}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": null}, "resource": {"id": 332, "owner": {"id": 488}, "assignee": {"id": 543}, "organization": {"id": 614}, "project": {"owner": {"id": 67}, "assignee": {"id": 831}, "organization": {"id": 966}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": null}, "resource": {"id": 396, "owner": {"id": 434}, "assignee": {"id": 588}, "organization": {"id": 671}, "project": {"owner": {"id": 50}, "assignee": {"id": 806}, "organization": {"id": 994}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": null}, "resource": {"id": 387, "owner": {"id": 412}, "assignee": {"id": 516}, "organization": {"id": 699}, "project": {"owner": {"id": 55}, "assignee": {"id": 878}, "organization": {"id": 930}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": null}, "resource": {"id": 383, "owner": {"id": 426}, "assignee": {"id": 526}, "organization": {"id": 652}, "project": {"owner": {"id": 50}, "assignee": {"id": 853}, "organization": {"id": 907}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": null}, "resource": {"id": 319, "owner": {"id": 439}, "assignee": {"id": 514}, "organization": {"id": 680}, "project": {"owner": {"id": 25}, "assignee": {"id": 883}, "organization": {"id": 985}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": null}, "resource": {"id": 316, "owner": {"id": 465}, "assignee": {"id": 580}, "organization": {"id": 667}, "project": {"owner": {"id": 702}, "assignee": {"id": 98}, "organization": {"id": 949}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": null}, "resource": {"id": 374, "owner": {"id": 449}, "assignee": {"id": 591}, "organization": {"id": 660}, "project": {"owner": {"id": 759}, "assignee": {"id": 3}, "organization": {"id": 909}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": null}, "resource": {"id": 317, "owner": {"id": 419}, "assignee": {"id": 516}, "organization": {"id": 660}, "project": {"owner": {"id": 784}, "assignee": {"id": 2}, "organization": {"id": 995}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": null}, "resource": {"id": 344, "owner": {"id": 419}, "assignee": {"id": 544}, "organization": {"id": 614}, "project": {"owner": {"id": 708}, "assignee": {"id": 24}, "organization": {"id": 904}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": null}, "resource": {"id": 304, "owner": {"id": 437}, "assignee": {"id": 554}, "organization": {"id": 683}, "project": {"owner": {"id": 719}, "assignee": {"id": 85}, "organization": {"id": 982}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": null}, "resource": {"id": 351, "owner": {"id": 428}, "assignee": {"id": 525}, "organization": {"id": 623}, "project": {"owner": {"id": 703}, "assignee": {"id": 70}, "organization": {"id": 925}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": null}, "resource": {"id": 321, "owner": {"id": 457}, "assignee": {"id": 595}, "organization": {"id": 610}, "project": {"owner": {"id": 728}, "assignee": {"id": 64}, "organization": {"id": 965}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": null}, "resource": {"id": 303, "owner": {"id": 452}, "assignee": {"id": 587}, "organization": {"id": 693}, "project": {"owner": {"id": 720}, "assignee": {"id": 85}, "organization": {"id": 927}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": null}, "resource": {"id": 360, "owner": {"id": 403}, "assignee": {"id": 598}, "organization": {"id": 672}, "project": {"owner": {"id": 745}, "assignee": {"id": 12}, "organization": {"id": 967}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": null}, "resource": {"id": 361, "owner": {"id": 424}, "assignee": {"id": 578}, "organization": {"id": 678}, "project": {"owner": {"id": 747}, "assignee": {"id": 82}, "organization": {"id": 953}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": null}, "resource": {"id": 316, "owner": {"id": 59}, "assignee": {"id": 563}, "organization": {"id": 650}, "project": {"owner": {"id": 717}, "assignee": {"id": 835}, "organization": {"id": 930}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": null}, "resource": {"id": 353, "owner": {"id": 17}, "assignee": {"id": 535}, "organization": {"id": 670}, "project": {"owner": {"id": 763}, "assignee": {"id": 837}, "organization": {"id": 922}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": null}, "resource": {"id": 355, "owner": {"id": 59}, "assignee": {"id": 561}, "organization": {"id": 631}, "project": {"owner": {"id": 733}, "assignee": {"id": 836}, "organization": {"id": 988}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": null}, "resource": {"id": 388, "owner": {"id": 30}, "assignee": {"id": 539}, "organization": {"id": 640}, "project": {"owner": {"id": 705}, "assignee": {"id": 866}, "organization": {"id": 971}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": null}, "resource": {"id": 311, "owner": {"id": 2}, "assignee": {"id": 593}, "organization": {"id": 687}, "project": {"owner": {"id": 751}, "assignee": {"id": 814}, "organization": {"id": 916}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": null}, "resource": {"id": 341, "owner": {"id": 21}, "assignee": {"id": 527}, "organization": {"id": 628}, "project": {"owner": {"id": 760}, "assignee": {"id": 843}, "organization": {"id": 983}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": null}, "resource": {"id": 318, "owner": {"id": 43}, "assignee": {"id": 565}, "organization": {"id": 608}, "project": {"owner": {"id": 719}, "assignee": {"id": 825}, "organization": {"id": 950}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": null}, "resource": {"id": 337, "owner": {"id": 78}, "assignee": {"id": 560}, "organization": {"id": 669}, "project": {"owner": {"id": 729}, "assignee": {"id": 864}, "organization": {"id": 981}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": null}, "resource": {"id": 380, "owner": {"id": 65}, "assignee": {"id": 553}, "organization": {"id": 676}, "project": {"owner": {"id": 759}, "assignee": {"id": 852}, "organization": {"id": 958}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": null}, "resource": {"id": 348, "owner": {"id": 54}, "assignee": {"id": 539}, "organization": {"id": 668}, "project": {"owner": {"id": 789}, "assignee": {"id": 834}, "organization": {"id": 902}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": null}, "resource": {"id": 320, "owner": {"id": 437}, "assignee": {"id": 20}, "organization": {"id": 671}, "project": {"owner": {"id": 784}, "assignee": {"id": 817}, "organization": {"id": 952}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": null}, "resource": {"id": 351, "owner": {"id": 470}, "assignee": {"id": 70}, "organization": {"id": 644}, "project": {"owner": {"id": 750}, "assignee": {"id": 893}, "organization": {"id": 999}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": null}, "resource": {"id": 380, "owner": {"id": 421}, "assignee": {"id": 9}, "organization": {"id": 688}, "project": {"owner": {"id": 730}, "assignee": {"id": 852}, "organization": {"id": 915}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": null}, "resource": {"id": 377, "owner": {"id": 409}, "assignee": {"id": 14}, "organization": {"id": 679}, "project": {"owner": {"id": 761}, "assignee": {"id": 889}, "organization": {"id": 966}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": null}, "resource": {"id": 382, "owner": {"id": 420}, "assignee": {"id": 43}, "organization": {"id": 647}, "project": {"owner": {"id": 700}, "assignee": {"id": 805}, "organization": {"id": 964}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": null}, "resource": {"id": 317, "owner": {"id": 458}, "assignee": {"id": 32}, "organization": {"id": 632}, "project": {"owner": {"id": 760}, "assignee": {"id": 890}, "organization": {"id": 903}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": null}, "resource": {"id": 354, "owner": {"id": 422}, "assignee": {"id": 56}, "organization": {"id": 676}, "project": {"owner": {"id": 779}, "assignee": {"id": 835}, "organization": {"id": 952}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": null}, "resource": {"id": 368, "owner": {"id": 435}, "assignee": {"id": 18}, "organization": {"id": 687}, "project": {"owner": {"id": 796}, "assignee": {"id": 898}, "organization": {"id": 994}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": null}, "resource": {"id": 315, "owner": {"id": 475}, "assignee": {"id": 46}, "organization": {"id": 636}, "project": {"owner": {"id": 707}, "assignee": {"id": 816}, "organization": {"id": 980}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": null}, "resource": {"id": 308, "owner": {"id": 470}, "assignee": {"id": 15}, "organization": {"id": 647}, "project": {"owner": {"id": 704}, "assignee": {"id": 897}, "organization": {"id": 956}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": null}, "resource": {"id": 373, "owner": {"id": 453}, "assignee": {"id": 547}, "organization": {"id": 610}, "project": {"owner": {"id": 768}, "assignee": {"id": 837}, "organization": {"id": 973}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": null}, "resource": {"id": 312, "owner": {"id": 497}, "assignee": {"id": 501}, "organization": {"id": 696}, "project": {"owner": {"id": 762}, "assignee": {"id": 885}, "organization": {"id": 984}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": null}, "resource": {"id": 354, "owner": {"id": 481}, "assignee": {"id": 567}, "organization": {"id": 621}, "project": {"owner": {"id": 739}, "assignee": {"id": 885}, "organization": {"id": 987}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": null}, "resource": {"id": 355, "owner": {"id": 497}, "assignee": {"id": 519}, "organization": {"id": 648}, "project": {"owner": {"id": 735}, "assignee": {"id": 801}, "organization": {"id": 907}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": null}, "resource": {"id": 385, "owner": {"id": 407}, "assignee": {"id": 543}, "organization": {"id": 676}, "project": {"owner": {"id": 788}, "assignee": {"id": 812}, "organization": {"id": 978}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": null}, "resource": {"id": 310, "owner": {"id": 400}, "assignee": {"id": 542}, "organization": {"id": 674}, "project": {"owner": {"id": 731}, "assignee": {"id": 831}, "organization": {"id": 982}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": null}, "resource": {"id": 366, "owner": {"id": 455}, "assignee": {"id": 547}, "organization": {"id": 656}, "project": {"owner": {"id": 743}, "assignee": {"id": 877}, "organization": {"id": 984}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": null}, "resource": {"id": 380, "owner": {"id": 435}, "assignee": {"id": 556}, "organization": {"id": 652}, "project": {"owner": {"id": 759}, "assignee": {"id": 871}, "organization": {"id": 969}}}} } -test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": null}, "resource": {"id": 325, "owner": {"id": 432}, "assignee": {"id": 577}, "organization": {"id": 601}, "project": {"owner": {"id": 749}, "assignee": {"id": 813}, "organization": {"id": 916}}}} +test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": null}, "resource": {"id": 307, "owner": {"id": 437}, "assignee": {"id": 561}, "organization": {"id": 615}, "project": {"owner": {"id": 700}, "assignee": {"id": 804}, "organization": {"id": 938}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 454}, "assignee": {"id": 594}, "organization": {"id": 150}, "project": {"owner": {"id": 58}, "assignee": {"id": 883}, "organization": {"id": 979}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 71, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 441}, "assignee": {"id": 556}, "organization": {"id": 125}, "project": {"owner": {"id": 71}, "assignee": {"id": 855}, "organization": {"id": 985}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 45}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 477}, "assignee": {"id": 533}, "organization": {"id": 624}, "project": {"owner": {"id": 45}, "assignee": {"id": 850}, "organization": {"id": 962}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 37, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 383, "owner": {"id": 483}, "assignee": {"id": 572}, "organization": {"id": 685}, "project": {"owner": {"id": 37}, "assignee": {"id": 805}, "organization": {"id": 916}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 497}, "assignee": {"id": 577}, "organization": {"id": 161}, "project": {"owner": {"id": 10}, "assignee": {"id": 854}, "organization": {"id": 978}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 485}, "assignee": {"id": 553}, "organization": {"id": 142}, "project": {"owner": {"id": 11}, "assignee": {"id": 871}, "organization": {"id": 939}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"id": 329, "owner": {"id": 440}, "assignee": {"id": 532}, "organization": {"id": 691}, "project": {"owner": {"id": 35}, "assignee": {"id": 851}, "organization": {"id": 916}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 481}, "assignee": {"id": 540}, "organization": {"id": 694}, "project": {"owner": {"id": 89}, "assignee": {"id": 883}, "organization": {"id": 949}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 319, "owner": {"id": 446}, "assignee": {"id": 581}, "organization": {"id": 196}, "project": {"owner": {"id": 27}, "assignee": {"id": 848}, "organization": {"id": 910}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 440}, "assignee": {"id": 590}, "organization": {"id": 184}, "project": {"owner": {"id": 82}, "assignee": {"id": 800}, "organization": {"id": 914}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 453}, "assignee": {"id": 599}, "organization": {"id": 647}, "project": {"owner": {"id": 97}, "assignee": {"id": 833}, "organization": {"id": 916}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 421}, "assignee": {"id": 563}, "organization": {"id": 637}, "project": {"owner": {"id": 61}, "assignee": {"id": 894}, "organization": {"id": 928}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 474}, "assignee": {"id": 559}, "organization": {"id": 140}, "project": {"owner": {"id": 48}, "assignee": {"id": 851}, "organization": {"id": 988}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 250}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 461}, "assignee": {"id": 571}, "organization": {"id": 162}, "project": {"owner": {"id": 11}, "assignee": {"id": 812}, "organization": {"id": 991}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"id": 330, "owner": {"id": 411}, "assignee": {"id": 548}, "organization": {"id": 658}, "project": {"owner": {"id": 19}, "assignee": {"id": 823}, "organization": {"id": 973}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 149, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 303, "owner": {"id": 430}, "assignee": {"id": 591}, "organization": {"id": 669}, "project": {"owner": {"id": 29}, "assignee": {"id": 856}, "organization": {"id": 988}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 498}, "assignee": {"id": 532}, "organization": {"id": 198}, "project": {"owner": {"id": 49}, "assignee": {"id": 833}, "organization": {"id": 935}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 373, "owner": {"id": 464}, "assignee": {"id": 540}, "organization": {"id": 164}, "project": {"owner": {"id": 14}, "assignee": {"id": 874}, "organization": {"id": 963}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 301, "owner": {"id": 410}, "assignee": {"id": 584}, "organization": {"id": 671}, "project": {"owner": {"id": 57}, "assignee": {"id": 812}, "organization": {"id": 948}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"id": 356, "owner": {"id": 404}, "assignee": {"id": 502}, "organization": {"id": 672}, "project": {"owner": {"id": 98}, "assignee": {"id": 853}, "organization": {"id": 936}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"id": 340, "owner": {"id": 448}, "assignee": {"id": 501}, "organization": {"id": 108}, "project": {"owner": {"id": 31}, "assignee": {"id": 814}, "organization": {"id": 991}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 365, "owner": {"id": 427}, "assignee": {"id": 558}, "organization": {"id": 125}, "project": {"owner": {"id": 58}, "assignee": {"id": 860}, "organization": {"id": 922}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"id": 357, "owner": {"id": 447}, "assignee": {"id": 562}, "organization": {"id": 670}, "project": {"owner": {"id": 83}, "assignee": {"id": 810}, "organization": {"id": 964}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 393, "owner": {"id": 459}, "assignee": {"id": 544}, "organization": {"id": 658}, "project": {"owner": {"id": 70}, "assignee": {"id": 810}, "organization": {"id": 982}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"id": 397, "owner": {"id": 443}, "assignee": {"id": 526}, "organization": {"id": 132}, "project": {"owner": {"id": 30}, "assignee": {"id": 802}, "organization": {"id": 989}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": {"id": 175, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 401}, "assignee": {"id": 574}, "organization": {"id": 175}, "project": {"owner": {"id": 46}, "assignee": {"id": 806}, "organization": {"id": 955}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 304, "owner": {"id": 462}, "assignee": {"id": 520}, "organization": {"id": 683}, "project": {"owner": {"id": 95}, "assignee": {"id": 812}, "organization": {"id": 994}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 492}, "assignee": {"id": 530}, "organization": {"id": 637}, "project": {"owner": {"id": 42}, "assignee": {"id": 875}, "organization": {"id": 931}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 376, "owner": {"id": 434}, "assignee": {"id": 539}, "organization": {"id": 192}, "project": {"owner": {"id": 2}, "assignee": {"id": 892}, "organization": {"id": 993}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 16, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"id": 385, "owner": {"id": 497}, "assignee": {"id": 563}, "organization": {"id": 182}, "project": {"owner": {"id": 16}, "assignee": {"id": 838}, "organization": {"id": 903}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 428}, "assignee": {"id": 590}, "organization": {"id": 627}, "project": {"owner": {"id": 63}, "assignee": {"id": 864}, "organization": {"id": 995}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 414}, "assignee": {"id": 521}, "organization": {"id": 683}, "project": {"owner": {"id": 20}, "assignee": {"id": 871}, "organization": {"id": 944}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 462}, "assignee": {"id": 594}, "organization": {"id": 167}, "project": {"owner": {"id": 51}, "assignee": {"id": 852}, "organization": {"id": 915}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 331, "owner": {"id": 415}, "assignee": {"id": 504}, "organization": {"id": 131}, "project": {"owner": {"id": 1}, "assignee": {"id": 894}, "organization": {"id": 923}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"id": 322, "owner": {"id": 493}, "assignee": {"id": 502}, "organization": {"id": 676}, "project": {"owner": {"id": 4}, "assignee": {"id": 877}, "organization": {"id": 946}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 457}, "assignee": {"id": 500}, "organization": {"id": 622}, "project": {"owner": {"id": 17}, "assignee": {"id": 857}, "organization": {"id": 997}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 64, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 485}, "assignee": {"id": 531}, "organization": {"id": 177}, "project": {"owner": {"id": 64}, "assignee": {"id": 841}, "organization": {"id": 981}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 460}, "assignee": {"id": 507}, "organization": {"id": 167}, "project": {"owner": {"id": 8}, "assignee": {"id": 856}, "organization": {"id": 996}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 210}, "user": {"role": null}}}, "resource": {"id": 343, "owner": {"id": 458}, "assignee": {"id": 543}, "organization": {"id": 690}, "project": {"owner": {"id": 72}, "assignee": {"id": 860}, "organization": {"id": 993}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 349, "owner": {"id": 449}, "assignee": {"id": 573}, "organization": {"id": 654}, "project": {"owner": {"id": 27}, "assignee": {"id": 883}, "organization": {"id": 977}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"id": 361, "owner": {"id": 433}, "assignee": {"id": 593}, "organization": {"id": 132}, "project": {"owner": {"id": 5}, "assignee": {"id": 887}, "organization": {"id": 963}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 418}, "assignee": {"id": 544}, "organization": {"id": 133}, "project": {"owner": {"id": 63}, "assignee": {"id": 823}, "organization": {"id": 917}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 414}, "assignee": {"id": 582}, "organization": {"id": 650}, "project": {"owner": {"id": 79}, "assignee": {"id": 879}, "organization": {"id": 984}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 398, "owner": {"id": 499}, "assignee": {"id": 532}, "organization": {"id": 640}, "project": {"owner": {"id": 30}, "assignee": {"id": 861}, "organization": {"id": 963}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 154, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 477}, "assignee": {"id": 560}, "organization": {"id": 154}, "project": {"owner": {"id": 10}, "assignee": {"id": 816}, "organization": {"id": 933}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"id": 367, "owner": {"id": 487}, "assignee": {"id": 583}, "organization": {"id": 148}, "project": {"owner": {"id": 23}, "assignee": {"id": 883}, "organization": {"id": 910}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 480}, "assignee": {"id": 518}, "organization": {"id": 690}, "project": {"owner": {"id": 37}, "assignee": {"id": 882}, "organization": {"id": 958}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 93, "privilege": "user"}, "organization": {"id": 131, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 330, "owner": {"id": 408}, "assignee": {"id": 550}, "organization": {"id": 686}, "project": {"owner": {"id": 93}, "assignee": {"id": 882}, "organization": {"id": 963}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"id": 322, "owner": {"id": 491}, "assignee": {"id": 572}, "organization": {"id": 155}, "project": {"owner": {"id": 83}, "assignee": {"id": 839}, "organization": {"id": 994}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 295}, "user": {"role": "supervisor"}}}, "resource": {"id": 393, "owner": {"id": 464}, "assignee": {"id": 583}, "organization": {"id": 113}, "project": {"owner": {"id": 19}, "assignee": {"id": 813}, "organization": {"id": 986}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 172, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 474}, "assignee": {"id": 589}, "organization": {"id": 668}, "project": {"owner": {"id": 86}, "assignee": {"id": 861}, "organization": {"id": 901}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 422}, "assignee": {"id": 590}, "organization": {"id": 621}, "project": {"owner": {"id": 79}, "assignee": {"id": 869}, "organization": {"id": 990}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 335, "owner": {"id": 416}, "assignee": {"id": 546}, "organization": {"id": 190}, "project": {"owner": {"id": 50}, "assignee": {"id": 864}, "organization": {"id": 902}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"id": 319, "owner": {"id": 473}, "assignee": {"id": 588}, "organization": {"id": 133}, "project": {"owner": {"id": 26}, "assignee": {"id": 876}, "organization": {"id": 906}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 20, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 283}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 428}, "assignee": {"id": 548}, "organization": {"id": 606}, "project": {"owner": {"id": 20}, "assignee": {"id": 891}, "organization": {"id": 928}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 128, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 452}, "assignee": {"id": 570}, "organization": {"id": 681}, "project": {"owner": {"id": 37}, "assignee": {"id": 861}, "organization": {"id": 947}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"id": 398, "owner": {"id": 482}, "assignee": {"id": 595}, "organization": {"id": 167}, "project": {"owner": {"id": 94}, "assignee": {"id": 852}, "organization": {"id": 940}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"id": 391, "owner": {"id": 496}, "assignee": {"id": 597}, "organization": {"id": 109}, "project": {"owner": {"id": 34}, "assignee": {"id": 846}, "organization": {"id": 970}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 105, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 424}, "assignee": {"id": 540}, "organization": {"id": 618}, "project": {"owner": {"id": 24}, "assignee": {"id": 882}, "organization": {"id": 915}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 192, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 373, "owner": {"id": 411}, "assignee": {"id": 525}, "organization": {"id": 637}, "project": {"owner": {"id": 83}, "assignee": {"id": 801}, "organization": {"id": 980}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 25, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 325, "owner": {"id": 424}, "assignee": {"id": 543}, "organization": {"id": 139}, "project": {"owner": {"id": 25}, "assignee": {"id": 820}, "organization": {"id": 943}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 364, "owner": {"id": 478}, "assignee": {"id": 548}, "organization": {"id": 147}, "project": {"owner": {"id": 84}, "assignee": {"id": 856}, "organization": {"id": 919}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"id": 313, "owner": {"id": 423}, "assignee": {"id": 575}, "organization": {"id": 631}, "project": {"owner": {"id": 43}, "assignee": {"id": 826}, "organization": {"id": 994}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 380, "owner": {"id": 469}, "assignee": {"id": 507}, "organization": {"id": 601}, "project": {"owner": {"id": 21}, "assignee": {"id": 898}, "organization": {"id": 973}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 478}, "assignee": {"id": 587}, "organization": {"id": 167}, "project": {"owner": {"id": 19}, "assignee": {"id": 884}, "organization": {"id": 980}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 188, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 402}, "assignee": {"id": 584}, "organization": {"id": 188}, "project": {"owner": {"id": 29}, "assignee": {"id": 822}, "organization": {"id": 929}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 442}, "assignee": {"id": 562}, "organization": {"id": 667}, "project": {"owner": {"id": 27}, "assignee": {"id": 858}, "organization": {"id": 910}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 377, "owner": {"id": 429}, "assignee": {"id": 561}, "organization": {"id": 617}, "project": {"owner": {"id": 81}, "assignee": {"id": 876}, "organization": {"id": 902}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"id": 350, "owner": {"id": 483}, "assignee": {"id": 537}, "organization": {"id": 102}, "project": {"owner": {"id": 5}, "assignee": {"id": 841}, "organization": {"id": 964}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 397, "owner": {"id": 430}, "assignee": {"id": 544}, "organization": {"id": 137}, "project": {"owner": {"id": 29}, "assignee": {"id": 887}, "organization": {"id": 942}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 107, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 336, "owner": {"id": 425}, "assignee": {"id": 505}, "organization": {"id": 632}, "project": {"owner": {"id": 44}, "assignee": {"id": 848}, "organization": {"id": 911}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 25, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 336, "owner": {"id": 489}, "assignee": {"id": 559}, "organization": {"id": 665}, "project": {"owner": {"id": 25}, "assignee": {"id": 851}, "organization": {"id": 927}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 400}, "assignee": {"id": 589}, "organization": {"id": 140}, "project": {"owner": {"id": 93}, "assignee": {"id": 836}, "organization": {"id": 938}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 478}, "assignee": {"id": 506}, "organization": {"id": 143}, "project": {"owner": {"id": 64}, "assignee": {"id": 885}, "organization": {"id": 944}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 339, "owner": {"id": 487}, "assignee": {"id": 542}, "organization": {"id": 638}, "project": {"owner": {"id": 81}, "assignee": {"id": 847}, "organization": {"id": 974}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 453}, "assignee": {"id": 585}, "organization": {"id": 667}, "project": {"owner": {"id": 76}, "assignee": {"id": 880}, "organization": {"id": 935}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"id": 301, "owner": {"id": 489}, "assignee": {"id": 572}, "organization": {"id": 157}, "project": {"owner": {"id": 73}, "assignee": {"id": 834}, "organization": {"id": 904}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"id": 345, "owner": {"id": 450}, "assignee": {"id": 546}, "organization": {"id": 185}, "project": {"owner": {"id": 59}, "assignee": {"id": 817}, "organization": {"id": 903}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"id": 313, "owner": {"id": 451}, "assignee": {"id": 564}, "organization": {"id": 665}, "project": {"owner": {"id": 66}, "assignee": {"id": 869}, "organization": {"id": 970}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 444}, "assignee": {"id": 529}, "organization": {"id": 682}, "project": {"owner": {"id": 89}, "assignee": {"id": 801}, "organization": {"id": 976}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 76}, "user": {"role": "owner"}}}, "resource": {"id": 365, "owner": {"id": 473}, "assignee": {"id": 514}, "organization": {"id": 105}, "project": {"owner": {"id": 76}, "assignee": {"id": 837}, "organization": {"id": 946}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 38}, "user": {"role": "owner"}}}, "resource": {"id": 372, "owner": {"id": 467}, "assignee": {"id": 515}, "organization": {"id": 181}, "project": {"owner": {"id": 38}, "assignee": {"id": 820}, "organization": {"id": 995}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 343, "owner": {"id": 487}, "assignee": {"id": 568}, "organization": {"id": 647}, "project": {"owner": {"id": 86}, "assignee": {"id": 805}, "organization": {"id": 928}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 328, "owner": {"id": 491}, "assignee": {"id": 545}, "organization": {"id": 613}, "project": {"owner": {"id": 74}, "assignee": {"id": 848}, "organization": {"id": 936}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 408}, "assignee": {"id": 560}, "organization": {"id": 197}, "project": {"owner": {"id": 44}, "assignee": {"id": 846}, "organization": {"id": 913}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 59, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"id": 350, "owner": {"id": 470}, "assignee": {"id": 501}, "organization": {"id": 106}, "project": {"owner": {"id": 59}, "assignee": {"id": 866}, "organization": {"id": 931}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 303, "owner": {"id": 442}, "assignee": {"id": 589}, "organization": {"id": 639}, "project": {"owner": {"id": 39}, "assignee": {"id": 874}, "organization": {"id": 939}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"id": 356, "owner": {"id": 414}, "assignee": {"id": 572}, "organization": {"id": 637}, "project": {"owner": {"id": 12}, "assignee": {"id": 832}, "organization": {"id": 980}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 394, "owner": {"id": 490}, "assignee": {"id": 550}, "organization": {"id": 181}, "project": {"owner": {"id": 92}, "assignee": {"id": 872}, "organization": {"id": 917}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 450}, "assignee": {"id": 532}, "organization": {"id": 133}, "project": {"owner": {"id": 38}, "assignee": {"id": 852}, "organization": {"id": 948}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 449}, "assignee": {"id": 513}, "organization": {"id": 635}, "project": {"owner": {"id": 55}, "assignee": {"id": 864}, "organization": {"id": 922}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"id": 322, "owner": {"id": 464}, "assignee": {"id": 511}, "organization": {"id": 674}, "project": {"owner": {"id": 44}, "assignee": {"id": 843}, "organization": {"id": 967}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 466}, "assignee": {"id": 506}, "organization": {"id": 122}, "project": {"owner": {"id": 3}, "assignee": {"id": 865}, "organization": {"id": 934}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 470}, "assignee": {"id": 587}, "organization": {"id": 121}, "project": {"owner": {"id": 46}, "assignee": {"id": 803}, "organization": {"id": 996}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 465}, "assignee": {"id": 577}, "organization": {"id": 681}, "project": {"owner": {"id": 46}, "assignee": {"id": 802}, "organization": {"id": 964}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 496}, "assignee": {"id": 586}, "organization": {"id": 679}, "project": {"owner": {"id": 94}, "assignee": {"id": 899}, "organization": {"id": 941}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 116, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 305, "owner": {"id": 404}, "assignee": {"id": 580}, "organization": {"id": 116}, "project": {"owner": {"id": 28}, "assignee": {"id": 816}, "organization": {"id": 990}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"id": 330, "owner": {"id": 408}, "assignee": {"id": 593}, "organization": {"id": 189}, "project": {"owner": {"id": 26}, "assignee": {"id": 832}, "organization": {"id": 990}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 482}, "assignee": {"id": 530}, "organization": {"id": 628}, "project": {"owner": {"id": 68}, "assignee": {"id": 880}, "organization": {"id": 994}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"id": 312, "owner": {"id": 483}, "assignee": {"id": 552}, "organization": {"id": 620}, "project": {"owner": {"id": 77}, "assignee": {"id": 835}, "organization": {"id": 959}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 405}, "assignee": {"id": 560}, "organization": {"id": 114}, "project": {"owner": {"id": 705}, "assignee": {"id": 13}, "organization": {"id": 957}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 451}, "assignee": {"id": 552}, "organization": {"id": 174}, "project": {"owner": {"id": 752}, "assignee": {"id": 34}, "organization": {"id": 977}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 311, "owner": {"id": 498}, "assignee": {"id": 518}, "organization": {"id": 625}, "project": {"owner": {"id": 734}, "assignee": {"id": 86}, "organization": {"id": 968}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 458}, "assignee": {"id": 572}, "organization": {"id": 608}, "project": {"owner": {"id": 794}, "assignee": {"id": 89}, "organization": {"id": 996}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 102, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 439}, "assignee": {"id": 598}, "organization": {"id": 102}, "project": {"owner": {"id": 754}, "assignee": {"id": 95}, "organization": {"id": 954}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"id": 367, "owner": {"id": 417}, "assignee": {"id": 570}, "organization": {"id": 130}, "project": {"owner": {"id": 778}, "assignee": {"id": 6}, "organization": {"id": 953}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 484}, "assignee": {"id": 572}, "organization": {"id": 619}, "project": {"owner": {"id": 778}, "assignee": {"id": 20}, "organization": {"id": 981}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 453}, "assignee": {"id": 545}, "organization": {"id": 631}, "project": {"owner": {"id": 752}, "assignee": {"id": 11}, "organization": {"id": 905}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 477}, "assignee": {"id": 504}, "organization": {"id": 193}, "project": {"owner": {"id": 709}, "assignee": {"id": 31}, "organization": {"id": 991}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 353, "owner": {"id": 428}, "assignee": {"id": 576}, "organization": {"id": 148}, "project": {"owner": {"id": 787}, "assignee": {"id": 11}, "organization": {"id": 972}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 334, "owner": {"id": 416}, "assignee": {"id": 568}, "organization": {"id": 682}, "project": {"owner": {"id": 753}, "assignee": {"id": 0}, "organization": {"id": 975}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 495}, "assignee": {"id": 554}, "organization": {"id": 675}, "project": {"owner": {"id": 710}, "assignee": {"id": 67}, "organization": {"id": 908}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 50, "privilege": "admin"}, "organization": {"id": 190, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"id": 336, "owner": {"id": 481}, "assignee": {"id": 563}, "organization": {"id": 190}, "project": {"owner": {"id": 739}, "assignee": {"id": 50}, "organization": {"id": 919}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 116, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"id": 378, "owner": {"id": 418}, "assignee": {"id": 507}, "organization": {"id": 116}, "project": {"owner": {"id": 709}, "assignee": {"id": 25}, "organization": {"id": 981}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 486}, "assignee": {"id": 595}, "organization": {"id": 626}, "project": {"owner": {"id": 774}, "assignee": {"id": 25}, "organization": {"id": 995}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 137, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 478}, "assignee": {"id": 570}, "organization": {"id": 638}, "project": {"owner": {"id": 752}, "assignee": {"id": 9}, "organization": {"id": 909}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 224}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 450}, "assignee": {"id": 590}, "organization": {"id": 178}, "project": {"owner": {"id": 780}, "assignee": {"id": 42}, "organization": {"id": 941}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 263}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 428}, "assignee": {"id": 546}, "organization": {"id": 122}, "project": {"owner": {"id": 759}, "assignee": {"id": 65}, "organization": {"id": 932}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 484}, "assignee": {"id": 522}, "organization": {"id": 662}, "project": {"owner": {"id": 782}, "assignee": {"id": 61}, "organization": {"id": 901}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 462}, "assignee": {"id": 584}, "organization": {"id": 624}, "project": {"owner": {"id": 756}, "assignee": {"id": 33}, "organization": {"id": 975}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"id": 345, "owner": {"id": 443}, "assignee": {"id": 513}, "organization": {"id": 105}, "project": {"owner": {"id": 721}, "assignee": {"id": 56}, "organization": {"id": 969}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 387, "owner": {"id": 448}, "assignee": {"id": 542}, "organization": {"id": 116}, "project": {"owner": {"id": 726}, "assignee": {"id": 25}, "organization": {"id": 935}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 130, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 493}, "assignee": {"id": 524}, "organization": {"id": 676}, "project": {"owner": {"id": 748}, "assignee": {"id": 24}, "organization": {"id": 921}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 497}, "assignee": {"id": 584}, "organization": {"id": 633}, "project": {"owner": {"id": 748}, "assignee": {"id": 48}, "organization": {"id": 924}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 492}, "assignee": {"id": 530}, "organization": {"id": 148}, "project": {"owner": {"id": 767}, "assignee": {"id": 13}, "organization": {"id": 975}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 483}, "assignee": {"id": 572}, "organization": {"id": 177}, "project": {"owner": {"id": 741}, "assignee": {"id": 45}, "organization": {"id": 983}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 378, "owner": {"id": 476}, "assignee": {"id": 554}, "organization": {"id": 626}, "project": {"owner": {"id": 713}, "assignee": {"id": 45}, "organization": {"id": 978}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 175, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 312, "owner": {"id": 449}, "assignee": {"id": 589}, "organization": {"id": 679}, "project": {"owner": {"id": 779}, "assignee": {"id": 79}, "organization": {"id": 932}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 305, "owner": {"id": 475}, "assignee": {"id": 574}, "organization": {"id": 160}, "project": {"owner": {"id": 729}, "assignee": {"id": 47}, "organization": {"id": 952}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 440}, "assignee": {"id": 566}, "organization": {"id": 118}, "project": {"owner": {"id": 731}, "assignee": {"id": 29}, "organization": {"id": 968}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 419}, "assignee": {"id": 578}, "organization": {"id": 605}, "project": {"owner": {"id": 774}, "assignee": {"id": 47}, "organization": {"id": 961}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 402}, "assignee": {"id": 595}, "organization": {"id": 632}, "project": {"owner": {"id": 776}, "assignee": {"id": 82}, "organization": {"id": 987}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 377, "owner": {"id": 450}, "assignee": {"id": 561}, "organization": {"id": 172}, "project": {"owner": {"id": 762}, "assignee": {"id": 3}, "organization": {"id": 966}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 451}, "assignee": {"id": 539}, "organization": {"id": 146}, "project": {"owner": {"id": 704}, "assignee": {"id": 43}, "organization": {"id": 998}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 189, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"id": 389, "owner": {"id": 477}, "assignee": {"id": 511}, "organization": {"id": 662}, "project": {"owner": {"id": 774}, "assignee": {"id": 99}, "organization": {"id": 927}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 174, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 485}, "assignee": {"id": 558}, "organization": {"id": 688}, "project": {"owner": {"id": 767}, "assignee": {"id": 60}, "organization": {"id": 968}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 277}, "user": {"role": null}}}, "resource": {"id": 361, "owner": {"id": 433}, "assignee": {"id": 522}, "organization": {"id": 150}, "project": {"owner": {"id": 729}, "assignee": {"id": 34}, "organization": {"id": 915}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 270}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 432}, "assignee": {"id": 539}, "organization": {"id": 179}, "project": {"owner": {"id": 742}, "assignee": {"id": 48}, "organization": {"id": 931}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 443}, "assignee": {"id": 598}, "organization": {"id": 638}, "project": {"owner": {"id": 757}, "assignee": {"id": 26}, "organization": {"id": 990}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 309, "owner": {"id": 469}, "assignee": {"id": 502}, "organization": {"id": 620}, "project": {"owner": {"id": 707}, "assignee": {"id": 71}, "organization": {"id": 934}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 311, "owner": {"id": 499}, "assignee": {"id": 596}, "organization": {"id": 181}, "project": {"owner": {"id": 765}, "assignee": {"id": 19}, "organization": {"id": 956}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 442}, "assignee": {"id": 535}, "organization": {"id": 114}, "project": {"owner": {"id": 768}, "assignee": {"id": 35}, "organization": {"id": 975}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 449}, "assignee": {"id": 574}, "organization": {"id": 640}, "project": {"owner": {"id": 733}, "assignee": {"id": 32}, "organization": {"id": 947}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 182, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 463}, "assignee": {"id": 580}, "organization": {"id": 607}, "project": {"owner": {"id": 702}, "assignee": {"id": 19}, "organization": {"id": 901}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 311, "owner": {"id": 476}, "assignee": {"id": 519}, "organization": {"id": 176}, "project": {"owner": {"id": 784}, "assignee": {"id": 74}, "organization": {"id": 991}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 415}, "assignee": {"id": 528}, "organization": {"id": 157}, "project": {"owner": {"id": 728}, "assignee": {"id": 71}, "organization": {"id": 975}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 445}, "assignee": {"id": 568}, "organization": {"id": 648}, "project": {"owner": {"id": 728}, "assignee": {"id": 17}, "organization": {"id": 985}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 493}, "assignee": {"id": 519}, "organization": {"id": 677}, "project": {"owner": {"id": 724}, "assignee": {"id": 87}, "organization": {"id": 974}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 431}, "assignee": {"id": 551}, "organization": {"id": 155}, "project": {"owner": {"id": 755}, "assignee": {"id": 12}, "organization": {"id": 967}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 205}, "user": {"role": "supervisor"}}}, "resource": {"id": 327, "owner": {"id": 447}, "assignee": {"id": 564}, "organization": {"id": 125}, "project": {"owner": {"id": 736}, "assignee": {"id": 77}, "organization": {"id": 956}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 357, "owner": {"id": 400}, "assignee": {"id": 516}, "organization": {"id": 644}, "project": {"owner": {"id": 712}, "assignee": {"id": 27}, "organization": {"id": 960}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 265}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 461}, "assignee": {"id": 537}, "organization": {"id": 677}, "project": {"owner": {"id": 741}, "assignee": {"id": 10}, "organization": {"id": 921}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 358, "owner": {"id": 437}, "assignee": {"id": 525}, "organization": {"id": 146}, "project": {"owner": {"id": 761}, "assignee": {"id": 13}, "organization": {"id": 965}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 402}, "assignee": {"id": 519}, "organization": {"id": 147}, "project": {"owner": {"id": 784}, "assignee": {"id": 26}, "organization": {"id": 910}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 378, "owner": {"id": 425}, "assignee": {"id": 533}, "organization": {"id": 630}, "project": {"owner": {"id": 712}, "assignee": {"id": 89}, "organization": {"id": 999}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 347, "owner": {"id": 471}, "assignee": {"id": 575}, "organization": {"id": 667}, "project": {"owner": {"id": 729}, "assignee": {"id": 47}, "organization": {"id": 918}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 395, "owner": {"id": 449}, "assignee": {"id": 537}, "organization": {"id": 184}, "project": {"owner": {"id": 758}, "assignee": {"id": 92}, "organization": {"id": 934}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"id": 305, "owner": {"id": 400}, "assignee": {"id": 582}, "organization": {"id": 195}, "project": {"owner": {"id": 719}, "assignee": {"id": 62}, "organization": {"id": 950}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 150, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 441}, "assignee": {"id": 521}, "organization": {"id": 646}, "project": {"owner": {"id": 764}, "assignee": {"id": 47}, "organization": {"id": 999}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 313, "owner": {"id": 491}, "assignee": {"id": 576}, "organization": {"id": 677}, "project": {"owner": {"id": 730}, "assignee": {"id": 26}, "organization": {"id": 975}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 422}, "assignee": {"id": 570}, "organization": {"id": 118}, "project": {"owner": {"id": 772}, "assignee": {"id": 50}, "organization": {"id": 908}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"id": 352, "owner": {"id": 455}, "assignee": {"id": 588}, "organization": {"id": 194}, "project": {"owner": {"id": 708}, "assignee": {"id": 56}, "organization": {"id": 923}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"id": 340, "owner": {"id": 408}, "assignee": {"id": 502}, "organization": {"id": 677}, "project": {"owner": {"id": 759}, "assignee": {"id": 50}, "organization": {"id": 930}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 367, "owner": {"id": 428}, "assignee": {"id": 549}, "organization": {"id": 636}, "project": {"owner": {"id": 767}, "assignee": {"id": 55}, "organization": {"id": 910}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 290}, "user": {"role": "maintainer"}}}, "resource": {"id": 384, "owner": {"id": 411}, "assignee": {"id": 553}, "organization": {"id": 178}, "project": {"owner": {"id": 728}, "assignee": {"id": 49}, "organization": {"id": 959}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 422}, "assignee": {"id": 518}, "organization": {"id": 111}, "project": {"owner": {"id": 738}, "assignee": {"id": 49}, "organization": {"id": 968}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 281}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 410}, "assignee": {"id": 530}, "organization": {"id": 663}, "project": {"owner": {"id": 749}, "assignee": {"id": 60}, "organization": {"id": 907}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 193, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 333, "owner": {"id": 466}, "assignee": {"id": 550}, "organization": {"id": 676}, "project": {"owner": {"id": 759}, "assignee": {"id": 11}, "organization": {"id": 964}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 460}, "assignee": {"id": 542}, "organization": {"id": 104}, "project": {"owner": {"id": 784}, "assignee": {"id": 78}, "organization": {"id": 933}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 487}, "assignee": {"id": 517}, "organization": {"id": 153}, "project": {"owner": {"id": 769}, "assignee": {"id": 70}, "organization": {"id": 956}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 416}, "assignee": {"id": 552}, "organization": {"id": 603}, "project": {"owner": {"id": 740}, "assignee": {"id": 11}, "organization": {"id": 932}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 411}, "assignee": {"id": 555}, "organization": {"id": 664}, "project": {"owner": {"id": 737}, "assignee": {"id": 5}, "organization": {"id": 939}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 440}, "assignee": {"id": 541}, "organization": {"id": 140}, "project": {"owner": {"id": 766}, "assignee": {"id": 39}, "organization": {"id": 982}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": {"id": 152, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"id": 336, "owner": {"id": 441}, "assignee": {"id": 534}, "organization": {"id": 152}, "project": {"owner": {"id": 739}, "assignee": {"id": 47}, "organization": {"id": 961}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 336, "owner": {"id": 413}, "assignee": {"id": 571}, "organization": {"id": 679}, "project": {"owner": {"id": 731}, "assignee": {"id": 53}, "organization": {"id": 958}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 317, "owner": {"id": 411}, "assignee": {"id": 545}, "organization": {"id": 677}, "project": {"owner": {"id": 716}, "assignee": {"id": 58}, "organization": {"id": 971}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 100, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 415}, "assignee": {"id": 599}, "organization": {"id": 100}, "project": {"owner": {"id": 734}, "assignee": {"id": 49}, "organization": {"id": 904}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 391, "owner": {"id": 456}, "assignee": {"id": 597}, "organization": {"id": 119}, "project": {"owner": {"id": 794}, "assignee": {"id": 67}, "organization": {"id": 995}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 354, "owner": {"id": 421}, "assignee": {"id": 558}, "organization": {"id": 661}, "project": {"owner": {"id": 729}, "assignee": {"id": 42}, "organization": {"id": 988}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"id": 301, "owner": {"id": 452}, "assignee": {"id": 585}, "organization": {"id": 617}, "project": {"owner": {"id": 718}, "assignee": {"id": 19}, "organization": {"id": 957}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 300, "owner": {"id": 426}, "assignee": {"id": 576}, "organization": {"id": 197}, "project": {"owner": {"id": 735}, "assignee": {"id": 19}, "organization": {"id": 963}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 14}, "user": {"role": "owner"}}}, "resource": {"id": 347, "owner": {"id": 422}, "assignee": {"id": 529}, "organization": {"id": 185}, "project": {"owner": {"id": 780}, "assignee": {"id": 14}, "organization": {"id": 908}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 387, "owner": {"id": 403}, "assignee": {"id": 509}, "organization": {"id": 600}, "project": {"owner": {"id": 737}, "assignee": {"id": 73}, "organization": {"id": 946}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 397, "owner": {"id": 471}, "assignee": {"id": 509}, "organization": {"id": 658}, "project": {"owner": {"id": 712}, "assignee": {"id": 89}, "organization": {"id": 947}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 282}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 430}, "assignee": {"id": 598}, "organization": {"id": 175}, "project": {"owner": {"id": 794}, "assignee": {"id": 54}, "organization": {"id": 954}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 118, "owner": {"id": 276}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 400}, "assignee": {"id": 581}, "organization": {"id": 118}, "project": {"owner": {"id": 734}, "assignee": {"id": 89}, "organization": {"id": 936}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"id": 377, "owner": {"id": 486}, "assignee": {"id": 502}, "organization": {"id": 694}, "project": {"owner": {"id": 780}, "assignee": {"id": 87}, "organization": {"id": 950}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 176, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 361, "owner": {"id": 451}, "assignee": {"id": 518}, "organization": {"id": 660}, "project": {"owner": {"id": 710}, "assignee": {"id": 96}, "organization": {"id": 926}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 156, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"id": 378, "owner": {"id": 471}, "assignee": {"id": 567}, "organization": {"id": 156}, "project": {"owner": {"id": 729}, "assignee": {"id": 87}, "organization": {"id": 980}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"id": 353, "owner": {"id": 462}, "assignee": {"id": 571}, "organization": {"id": 179}, "project": {"owner": {"id": 716}, "assignee": {"id": 65}, "organization": {"id": 926}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"id": 307, "owner": {"id": 430}, "assignee": {"id": 542}, "organization": {"id": 683}, "project": {"owner": {"id": 735}, "assignee": {"id": 17}, "organization": {"id": 936}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 408}, "assignee": {"id": 574}, "organization": {"id": 652}, "project": {"owner": {"id": 738}, "assignee": {"id": 33}, "organization": {"id": 913}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"id": 327, "owner": {"id": 469}, "assignee": {"id": 517}, "organization": {"id": 146}, "project": {"owner": {"id": 760}, "assignee": {"id": 2}, "organization": {"id": 910}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 190, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 445}, "assignee": {"id": 573}, "organization": {"id": 190}, "project": {"owner": {"id": 743}, "assignee": {"id": 72}, "organization": {"id": 925}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 432}, "assignee": {"id": 592}, "organization": {"id": 691}, "project": {"owner": {"id": 798}, "assignee": {"id": 46}, "organization": {"id": 933}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"id": 396, "owner": {"id": 464}, "assignee": {"id": 529}, "organization": {"id": 656}, "project": {"owner": {"id": 766}, "assignee": {"id": 92}, "organization": {"id": 986}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 349, "owner": {"id": 465}, "assignee": {"id": 511}, "organization": {"id": 170}, "project": {"owner": {"id": 752}, "assignee": {"id": 14}, "organization": {"id": 986}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 270}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 428}, "assignee": {"id": 577}, "organization": {"id": 174}, "project": {"owner": {"id": 736}, "assignee": {"id": 71}, "organization": {"id": 936}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 418}, "assignee": {"id": 533}, "organization": {"id": 691}, "project": {"owner": {"id": 785}, "assignee": {"id": 87}, "organization": {"id": 973}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 433}, "assignee": {"id": 561}, "organization": {"id": 628}, "project": {"owner": {"id": 701}, "assignee": {"id": 37}, "organization": {"id": 977}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 197, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"id": 340, "owner": {"id": 17}, "assignee": {"id": 580}, "organization": {"id": 197}, "project": {"owner": {"id": 753}, "assignee": {"id": 802}, "organization": {"id": 968}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 2}, "assignee": {"id": 523}, "organization": {"id": 159}, "project": {"owner": {"id": 733}, "assignee": {"id": 856}, "organization": {"id": 932}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 40}, "assignee": {"id": 514}, "organization": {"id": 604}, "project": {"owner": {"id": 797}, "assignee": {"id": 890}, "organization": {"id": 927}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 190, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 348, "owner": {"id": 90}, "assignee": {"id": 555}, "organization": {"id": 617}, "project": {"owner": {"id": 784}, "assignee": {"id": 859}, "organization": {"id": 983}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 181, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 336, "owner": {"id": 55}, "assignee": {"id": 543}, "organization": {"id": 181}, "project": {"owner": {"id": 740}, "assignee": {"id": 817}, "organization": {"id": 979}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"id": 343, "owner": {"id": 19}, "assignee": {"id": 521}, "organization": {"id": 168}, "project": {"owner": {"id": 727}, "assignee": {"id": 898}, "organization": {"id": 994}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 64}, "assignee": {"id": 591}, "organization": {"id": 670}, "project": {"owner": {"id": 715}, "assignee": {"id": 895}, "organization": {"id": 910}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 181, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 34}, "assignee": {"id": 509}, "organization": {"id": 693}, "project": {"owner": {"id": 710}, "assignee": {"id": 854}, "organization": {"id": 905}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 348, "owner": {"id": 77}, "assignee": {"id": 594}, "organization": {"id": 182}, "project": {"owner": {"id": 735}, "assignee": {"id": 836}, "organization": {"id": 981}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 58}, "assignee": {"id": 555}, "organization": {"id": 131}, "project": {"owner": {"id": 707}, "assignee": {"id": 886}, "organization": {"id": 989}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 22}, "assignee": {"id": 591}, "organization": {"id": 683}, "project": {"owner": {"id": 736}, "assignee": {"id": 823}, "organization": {"id": 970}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"id": 390, "owner": {"id": 55}, "assignee": {"id": 577}, "organization": {"id": 694}, "project": {"owner": {"id": 781}, "assignee": {"id": 812}, "organization": {"id": 916}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 102, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 367, "owner": {"id": 69}, "assignee": {"id": 597}, "organization": {"id": 102}, "project": {"owner": {"id": 780}, "assignee": {"id": 803}, "organization": {"id": 908}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 301, "owner": {"id": 1}, "assignee": {"id": 540}, "organization": {"id": 136}, "project": {"owner": {"id": 719}, "assignee": {"id": 804}, "organization": {"id": 908}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"id": 388, "owner": {"id": 79}, "assignee": {"id": 516}, "organization": {"id": 666}, "project": {"owner": {"id": 706}, "assignee": {"id": 881}, "organization": {"id": 969}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 32}, "assignee": {"id": 598}, "organization": {"id": 626}, "project": {"owner": {"id": 745}, "assignee": {"id": 885}, "organization": {"id": 937}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 116, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 43}, "assignee": {"id": 528}, "organization": {"id": 116}, "project": {"owner": {"id": 728}, "assignee": {"id": 874}, "organization": {"id": 956}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 266}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 46}, "assignee": {"id": 526}, "organization": {"id": 136}, "project": {"owner": {"id": 758}, "assignee": {"id": 809}, "organization": {"id": 945}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"id": 366, "owner": {"id": 48}, "assignee": {"id": 576}, "organization": {"id": 663}, "project": {"owner": {"id": 787}, "assignee": {"id": 868}, "organization": {"id": 907}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 320, "owner": {"id": 65}, "assignee": {"id": 554}, "organization": {"id": 621}, "project": {"owner": {"id": 779}, "assignee": {"id": 891}, "organization": {"id": 992}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 328, "owner": {"id": 9}, "assignee": {"id": 535}, "organization": {"id": 104}, "project": {"owner": {"id": 742}, "assignee": {"id": 849}, "organization": {"id": 961}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 371, "owner": {"id": 30}, "assignee": {"id": 501}, "organization": {"id": 125}, "project": {"owner": {"id": 768}, "assignee": {"id": 865}, "organization": {"id": 947}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 374, "owner": {"id": 86}, "assignee": {"id": 518}, "organization": {"id": 614}, "project": {"owner": {"id": 711}, "assignee": {"id": 809}, "organization": {"id": 968}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 361, "owner": {"id": 78}, "assignee": {"id": 549}, "organization": {"id": 691}, "project": {"owner": {"id": 717}, "assignee": {"id": 884}, "organization": {"id": 993}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 13}, "assignee": {"id": 591}, "organization": {"id": 142}, "project": {"owner": {"id": 769}, "assignee": {"id": 814}, "organization": {"id": 927}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 70}, "assignee": {"id": 573}, "organization": {"id": 150}, "project": {"owner": {"id": 776}, "assignee": {"id": 821}, "organization": {"id": 946}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 35}, "assignee": {"id": 557}, "organization": {"id": 691}, "project": {"owner": {"id": 781}, "assignee": {"id": 807}, "organization": {"id": 973}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 289}, "user": {"role": "maintainer"}}}, "resource": {"id": 308, "owner": {"id": 8}, "assignee": {"id": 555}, "organization": {"id": 622}, "project": {"owner": {"id": 750}, "assignee": {"id": 812}, "organization": {"id": 979}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 367, "owner": {"id": 14}, "assignee": {"id": 528}, "organization": {"id": 184}, "project": {"owner": {"id": 700}, "assignee": {"id": 866}, "organization": {"id": 998}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 87}, "assignee": {"id": 546}, "organization": {"id": 154}, "project": {"owner": {"id": 789}, "assignee": {"id": 850}, "organization": {"id": 906}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 189, "owner": {"id": 242}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 57}, "assignee": {"id": 507}, "organization": {"id": 641}, "project": {"owner": {"id": 705}, "assignee": {"id": 876}, "organization": {"id": 907}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 87}, "assignee": {"id": 581}, "organization": {"id": 660}, "project": {"owner": {"id": 765}, "assignee": {"id": 877}, "organization": {"id": 913}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 28}, "assignee": {"id": 524}, "organization": {"id": 177}, "project": {"owner": {"id": 712}, "assignee": {"id": 858}, "organization": {"id": 942}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 397, "owner": {"id": 32}, "assignee": {"id": 589}, "organization": {"id": 181}, "project": {"owner": {"id": 723}, "assignee": {"id": 879}, "organization": {"id": 906}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 395, "owner": {"id": 57}, "assignee": {"id": 507}, "organization": {"id": 637}, "project": {"owner": {"id": 715}, "assignee": {"id": 892}, "organization": {"id": 923}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 202}, "user": {"role": "worker"}}}, "resource": {"id": 388, "owner": {"id": 76}, "assignee": {"id": 523}, "organization": {"id": 608}, "project": {"owner": {"id": 725}, "assignee": {"id": 838}, "organization": {"id": 993}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 271}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 42}, "assignee": {"id": 542}, "organization": {"id": 167}, "project": {"owner": {"id": 745}, "assignee": {"id": 818}, "organization": {"id": 989}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"id": 325, "owner": {"id": 22}, "assignee": {"id": 514}, "organization": {"id": 144}, "project": {"owner": {"id": 778}, "assignee": {"id": 842}, "organization": {"id": 965}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 367, "owner": {"id": 58}, "assignee": {"id": 561}, "organization": {"id": 656}, "project": {"owner": {"id": 711}, "assignee": {"id": 855}, "organization": {"id": 962}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 84}, "assignee": {"id": 516}, "organization": {"id": 665}, "project": {"owner": {"id": 747}, "assignee": {"id": 856}, "organization": {"id": 999}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 365, "owner": {"id": 41}, "assignee": {"id": 559}, "organization": {"id": 173}, "project": {"owner": {"id": 708}, "assignee": {"id": 864}, "organization": {"id": 964}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 70}, "assignee": {"id": 597}, "organization": {"id": 127}, "project": {"owner": {"id": 770}, "assignee": {"id": 877}, "organization": {"id": 949}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 64}, "user": {"role": "owner"}}}, "resource": {"id": 306, "owner": {"id": 64}, "assignee": {"id": 529}, "organization": {"id": 639}, "project": {"owner": {"id": 716}, "assignee": {"id": 853}, "organization": {"id": 902}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 23}, "assignee": {"id": 585}, "organization": {"id": 629}, "project": {"owner": {"id": 743}, "assignee": {"id": 869}, "organization": {"id": 990}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 174, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 75}, "assignee": {"id": 535}, "organization": {"id": 174}, "project": {"owner": {"id": 746}, "assignee": {"id": 808}, "organization": {"id": 960}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 282}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 30}, "assignee": {"id": 544}, "organization": {"id": 168}, "project": {"owner": {"id": 733}, "assignee": {"id": 812}, "organization": {"id": 946}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 396, "owner": {"id": 70}, "assignee": {"id": 558}, "organization": {"id": 630}, "project": {"owner": {"id": 758}, "assignee": {"id": 892}, "organization": {"id": 999}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 364, "owner": {"id": 3}, "assignee": {"id": 575}, "organization": {"id": 611}, "project": {"owner": {"id": 707}, "assignee": {"id": 894}, "organization": {"id": 981}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 295}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 85}, "assignee": {"id": 579}, "organization": {"id": 141}, "project": {"owner": {"id": 756}, "assignee": {"id": 877}, "organization": {"id": 967}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 93, "privilege": "user"}, "organization": {"id": 192, "owner": {"id": 295}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 93}, "assignee": {"id": 566}, "organization": {"id": 192}, "project": {"owner": {"id": 712}, "assignee": {"id": 857}, "organization": {"id": 901}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 399, "owner": {"id": 63}, "assignee": {"id": 555}, "organization": {"id": 627}, "project": {"owner": {"id": 768}, "assignee": {"id": 800}, "organization": {"id": 900}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 57}, "assignee": {"id": 578}, "organization": {"id": 603}, "project": {"owner": {"id": 716}, "assignee": {"id": 894}, "organization": {"id": 943}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 23}, "assignee": {"id": 542}, "organization": {"id": 144}, "project": {"owner": {"id": 718}, "assignee": {"id": 858}, "organization": {"id": 953}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 94}, "assignee": {"id": 523}, "organization": {"id": 124}, "project": {"owner": {"id": 726}, "assignee": {"id": 809}, "organization": {"id": 919}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 334, "owner": {"id": 69}, "assignee": {"id": 565}, "organization": {"id": 644}, "project": {"owner": {"id": 745}, "assignee": {"id": 825}, "organization": {"id": 944}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 86}, "assignee": {"id": 539}, "organization": {"id": 647}, "project": {"owner": {"id": 771}, "assignee": {"id": 870}, "organization": {"id": 955}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"id": 391, "owner": {"id": 27}, "assignee": {"id": 576}, "organization": {"id": 132}, "project": {"owner": {"id": 722}, "assignee": {"id": 859}, "organization": {"id": 906}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 273}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 23}, "assignee": {"id": 528}, "organization": {"id": 168}, "project": {"owner": {"id": 716}, "assignee": {"id": 896}, "organization": {"id": 950}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 76}, "assignee": {"id": 576}, "organization": {"id": 648}, "project": {"owner": {"id": 710}, "assignee": {"id": 851}, "organization": {"id": 973}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"id": 391, "owner": {"id": 40}, "assignee": {"id": 592}, "organization": {"id": 602}, "project": {"owner": {"id": 779}, "assignee": {"id": 828}, "organization": {"id": 945}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 321, "owner": {"id": 84}, "assignee": {"id": 570}, "organization": {"id": 179}, "project": {"owner": {"id": 709}, "assignee": {"id": 806}, "organization": {"id": 956}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 6}, "assignee": {"id": 524}, "organization": {"id": 177}, "project": {"owner": {"id": 724}, "assignee": {"id": 830}, "organization": {"id": 951}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"id": 398, "owner": {"id": 52}, "assignee": {"id": 510}, "organization": {"id": 621}, "project": {"owner": {"id": 790}, "assignee": {"id": 875}, "organization": {"id": 949}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 326, "owner": {"id": 44}, "assignee": {"id": 558}, "organization": {"id": 628}, "project": {"owner": {"id": 739}, "assignee": {"id": 802}, "organization": {"id": 965}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 276}, "user": {"role": "maintainer"}}}, "resource": {"id": 390, "owner": {"id": 22}, "assignee": {"id": 579}, "organization": {"id": 187}, "project": {"owner": {"id": 705}, "assignee": {"id": 810}, "organization": {"id": 991}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"id": 327, "owner": {"id": 79}, "assignee": {"id": 562}, "organization": {"id": 143}, "project": {"owner": {"id": 701}, "assignee": {"id": 808}, "organization": {"id": 984}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 63}, "assignee": {"id": 582}, "organization": {"id": 671}, "project": {"owner": {"id": 762}, "assignee": {"id": 848}, "organization": {"id": 934}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 321, "owner": {"id": 20}, "assignee": {"id": 590}, "organization": {"id": 649}, "project": {"owner": {"id": 723}, "assignee": {"id": 820}, "organization": {"id": 929}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 12, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 210}, "user": {"role": "supervisor"}}}, "resource": {"id": 350, "owner": {"id": 12}, "assignee": {"id": 556}, "organization": {"id": 194}, "project": {"owner": {"id": 795}, "assignee": {"id": 836}, "organization": {"id": 953}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"id": 316, "owner": {"id": 40}, "assignee": {"id": 582}, "organization": {"id": 190}, "project": {"owner": {"id": 789}, "assignee": {"id": 867}, "organization": {"id": 941}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 57}, "assignee": {"id": 581}, "organization": {"id": 621}, "project": {"owner": {"id": 735}, "assignee": {"id": 872}, "organization": {"id": 957}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"id": 374, "owner": {"id": 6}, "assignee": {"id": 522}, "organization": {"id": 687}, "project": {"owner": {"id": 749}, "assignee": {"id": 813}, "organization": {"id": 977}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 186, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 57}, "assignee": {"id": 559}, "organization": {"id": 186}, "project": {"owner": {"id": 710}, "assignee": {"id": 818}, "organization": {"id": 908}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"id": 347, "owner": {"id": 71}, "assignee": {"id": 543}, "organization": {"id": 120}, "project": {"owner": {"id": 752}, "assignee": {"id": 828}, "organization": {"id": 934}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"id": 342, "owner": {"id": 54}, "assignee": {"id": 503}, "organization": {"id": 639}, "project": {"owner": {"id": 784}, "assignee": {"id": 836}, "organization": {"id": 932}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 76}, "assignee": {"id": 573}, "organization": {"id": 674}, "project": {"owner": {"id": 793}, "assignee": {"id": 869}, "organization": {"id": 915}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 243}, "user": {"role": null}}}, "resource": {"id": 332, "owner": {"id": 28}, "assignee": {"id": 562}, "organization": {"id": 153}, "project": {"owner": {"id": 723}, "assignee": {"id": 898}, "organization": {"id": 959}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 354, "owner": {"id": 67}, "assignee": {"id": 589}, "organization": {"id": 190}, "project": {"owner": {"id": 757}, "assignee": {"id": 884}, "organization": {"id": 974}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 107, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"id": 381, "owner": {"id": 81}, "assignee": {"id": 582}, "organization": {"id": 672}, "project": {"owner": {"id": 774}, "assignee": {"id": 862}, "organization": {"id": 996}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"id": 331, "owner": {"id": 11}, "assignee": {"id": 546}, "organization": {"id": 627}, "project": {"owner": {"id": 756}, "assignee": {"id": 886}, "organization": {"id": 944}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 381, "owner": {"id": 13}, "assignee": {"id": 576}, "organization": {"id": 187}, "project": {"owner": {"id": 772}, "assignee": {"id": 873}, "organization": {"id": 921}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 156, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 313, "owner": {"id": 74}, "assignee": {"id": 598}, "organization": {"id": 156}, "project": {"owner": {"id": 708}, "assignee": {"id": 851}, "organization": {"id": 957}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 93}, "assignee": {"id": 529}, "organization": {"id": 623}, "project": {"owner": {"id": 792}, "assignee": {"id": 872}, "organization": {"id": 984}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": {"id": 116, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 66}, "assignee": {"id": 501}, "organization": {"id": 626}, "project": {"owner": {"id": 798}, "assignee": {"id": 898}, "organization": {"id": 904}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 399, "owner": {"id": 6}, "assignee": {"id": 566}, "organization": {"id": 173}, "project": {"owner": {"id": 778}, "assignee": {"id": 896}, "organization": {"id": 997}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 281}, "user": {"role": "maintainer"}}}, "resource": {"id": 321, "owner": {"id": 17}, "assignee": {"id": 519}, "organization": {"id": 136}, "project": {"owner": {"id": 779}, "assignee": {"id": 834}, "organization": {"id": 972}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 41, "privilege": "none"}, "organization": {"id": 176, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"id": 399, "owner": {"id": 41}, "assignee": {"id": 568}, "organization": {"id": 612}, "project": {"owner": {"id": 742}, "assignee": {"id": 871}, "organization": {"id": 962}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"id": 377, "owner": {"id": 1}, "assignee": {"id": 584}, "organization": {"id": 634}, "project": {"owner": {"id": 719}, "assignee": {"id": 879}, "organization": {"id": 998}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 310, "owner": {"id": 40}, "assignee": {"id": 592}, "organization": {"id": 158}, "project": {"owner": {"id": 787}, "assignee": {"id": 821}, "organization": {"id": 907}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 33}, "assignee": {"id": 524}, "organization": {"id": 194}, "project": {"owner": {"id": 700}, "assignee": {"id": 845}, "organization": {"id": 931}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 178, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 327, "owner": {"id": 0}, "assignee": {"id": 511}, "organization": {"id": 622}, "project": {"owner": {"id": 712}, "assignee": {"id": 809}, "organization": {"id": 945}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 208}, "user": {"role": "supervisor"}}}, "resource": {"id": 323, "owner": {"id": 33}, "assignee": {"id": 566}, "organization": {"id": 630}, "project": {"owner": {"id": 725}, "assignee": {"id": 867}, "organization": {"id": 920}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"id": 373, "owner": {"id": 23}, "assignee": {"id": 599}, "organization": {"id": 106}, "project": {"owner": {"id": 759}, "assignee": {"id": 892}, "organization": {"id": 947}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 18}, "assignee": {"id": 559}, "organization": {"id": 179}, "project": {"owner": {"id": 761}, "assignee": {"id": 840}, "organization": {"id": 918}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"id": 327, "owner": {"id": 18}, "assignee": {"id": 509}, "organization": {"id": 691}, "project": {"owner": {"id": 737}, "assignee": {"id": 882}, "organization": {"id": 971}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 357, "owner": {"id": 22}, "assignee": {"id": 552}, "organization": {"id": 696}, "project": {"owner": {"id": 705}, "assignee": {"id": 851}, "organization": {"id": 928}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 380, "owner": {"id": 67}, "assignee": {"id": 501}, "organization": {"id": 173}, "project": {"owner": {"id": 735}, "assignee": {"id": 808}, "organization": {"id": 999}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"id": 325, "owner": {"id": 68}, "assignee": {"id": 502}, "organization": {"id": 123}, "project": {"owner": {"id": 795}, "assignee": {"id": 890}, "organization": {"id": 946}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 367, "owner": {"id": 75}, "assignee": {"id": 542}, "organization": {"id": 627}, "project": {"owner": {"id": 739}, "assignee": {"id": 837}, "organization": {"id": 915}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 45}, "assignee": {"id": 596}, "organization": {"id": 651}, "project": {"owner": {"id": 761}, "assignee": {"id": 816}, "organization": {"id": 954}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 438}, "assignee": {"id": 32}, "organization": {"id": 105}, "project": {"owner": {"id": 727}, "assignee": {"id": 871}, "organization": {"id": 941}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 349, "owner": {"id": 480}, "assignee": {"id": 0}, "organization": {"id": 144}, "project": {"owner": {"id": 746}, "assignee": {"id": 816}, "organization": {"id": 946}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"id": 328, "owner": {"id": 446}, "assignee": {"id": 18}, "organization": {"id": 637}, "project": {"owner": {"id": 792}, "assignee": {"id": 813}, "organization": {"id": 900}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 473}, "assignee": {"id": 41}, "organization": {"id": 678}, "project": {"owner": {"id": 772}, "assignee": {"id": 863}, "organization": {"id": 911}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"id": 348, "owner": {"id": 491}, "assignee": {"id": 80}, "organization": {"id": 128}, "project": {"owner": {"id": 751}, "assignee": {"id": 846}, "organization": {"id": 946}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 382, "owner": {"id": 496}, "assignee": {"id": 4}, "organization": {"id": 115}, "project": {"owner": {"id": 741}, "assignee": {"id": 889}, "organization": {"id": 948}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 325, "owner": {"id": 468}, "assignee": {"id": 47}, "organization": {"id": 661}, "project": {"owner": {"id": 736}, "assignee": {"id": 847}, "organization": {"id": 908}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 190, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"id": 327, "owner": {"id": 407}, "assignee": {"id": 36}, "organization": {"id": 665}, "project": {"owner": {"id": 737}, "assignee": {"id": 854}, "organization": {"id": 955}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 208}, "user": {"role": "supervisor"}}}, "resource": {"id": 307, "owner": {"id": 447}, "assignee": {"id": 91}, "organization": {"id": 199}, "project": {"owner": {"id": 759}, "assignee": {"id": 825}, "organization": {"id": 904}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"id": 369, "owner": {"id": 432}, "assignee": {"id": 24}, "organization": {"id": 179}, "project": {"owner": {"id": 799}, "assignee": {"id": 863}, "organization": {"id": 936}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 172, "owner": {"id": 294}, "user": {"role": "supervisor"}}}, "resource": {"id": 321, "owner": {"id": 492}, "assignee": {"id": 0}, "organization": {"id": 627}, "project": {"owner": {"id": 781}, "assignee": {"id": 893}, "organization": {"id": 908}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 408}, "assignee": {"id": 3}, "organization": {"id": 646}, "project": {"owner": {"id": 762}, "assignee": {"id": 846}, "organization": {"id": 966}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 489}, "assignee": {"id": 2}, "organization": {"id": 178}, "project": {"owner": {"id": 763}, "assignee": {"id": 825}, "organization": {"id": 955}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"id": 372, "owner": {"id": 429}, "assignee": {"id": 29}, "organization": {"id": 115}, "project": {"owner": {"id": 702}, "assignee": {"id": 858}, "organization": {"id": 949}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"id": 398, "owner": {"id": 429}, "assignee": {"id": 39}, "organization": {"id": 655}, "project": {"owner": {"id": 779}, "assignee": {"id": 853}, "organization": {"id": 909}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 309, "owner": {"id": 494}, "assignee": {"id": 8}, "organization": {"id": 651}, "project": {"owner": {"id": 730}, "assignee": {"id": 893}, "organization": {"id": 997}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 204}, "user": {"role": null}}}, "resource": {"id": 322, "owner": {"id": 405}, "assignee": {"id": 52}, "organization": {"id": 134}, "project": {"owner": {"id": 723}, "assignee": {"id": 841}, "organization": {"id": 924}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"id": 357, "owner": {"id": 427}, "assignee": {"id": 36}, "organization": {"id": 128}, "project": {"owner": {"id": 714}, "assignee": {"id": 891}, "organization": {"id": 960}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 365, "owner": {"id": 419}, "assignee": {"id": 41}, "organization": {"id": 674}, "project": {"owner": {"id": 703}, "assignee": {"id": 863}, "organization": {"id": 933}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 497}, "assignee": {"id": 30}, "organization": {"id": 626}, "project": {"owner": {"id": 731}, "assignee": {"id": 818}, "organization": {"id": 908}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"id": 381, "owner": {"id": 454}, "assignee": {"id": 4}, "organization": {"id": 158}, "project": {"owner": {"id": 717}, "assignee": {"id": 809}, "organization": {"id": 979}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"id": 380, "owner": {"id": 485}, "assignee": {"id": 69}, "organization": {"id": 126}, "project": {"owner": {"id": 770}, "assignee": {"id": 848}, "organization": {"id": 907}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 149, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 308, "owner": {"id": 402}, "assignee": {"id": 78}, "organization": {"id": 626}, "project": {"owner": {"id": 711}, "assignee": {"id": 845}, "organization": {"id": 904}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"id": 334, "owner": {"id": 470}, "assignee": {"id": 12}, "organization": {"id": 619}, "project": {"owner": {"id": 724}, "assignee": {"id": 864}, "organization": {"id": 953}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 471}, "assignee": {"id": 77}, "organization": {"id": 116}, "project": {"owner": {"id": 790}, "assignee": {"id": 894}, "organization": {"id": 976}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 411}, "assignee": {"id": 33}, "organization": {"id": 165}, "project": {"owner": {"id": 773}, "assignee": {"id": 876}, "organization": {"id": 971}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 123, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"id": 336, "owner": {"id": 447}, "assignee": {"id": 32}, "organization": {"id": 666}, "project": {"owner": {"id": 707}, "assignee": {"id": 860}, "organization": {"id": 953}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 406}, "assignee": {"id": 66}, "organization": {"id": 630}, "project": {"owner": {"id": 760}, "assignee": {"id": 866}, "organization": {"id": 927}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"id": 356, "owner": {"id": 498}, "assignee": {"id": 87}, "organization": {"id": 138}, "project": {"owner": {"id": 797}, "assignee": {"id": 892}, "organization": {"id": 967}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 282}, "user": {"role": "supervisor"}}}, "resource": {"id": 353, "owner": {"id": 454}, "assignee": {"id": 67}, "organization": {"id": 132}, "project": {"owner": {"id": 757}, "assignee": {"id": 889}, "organization": {"id": 948}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 305, "owner": {"id": 411}, "assignee": {"id": 27}, "organization": {"id": 637}, "project": {"owner": {"id": 757}, "assignee": {"id": 893}, "organization": {"id": 935}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 371, "owner": {"id": 417}, "assignee": {"id": 51}, "organization": {"id": 671}, "project": {"owner": {"id": 700}, "assignee": {"id": 827}, "organization": {"id": 971}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 113, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"id": 378, "owner": {"id": 459}, "assignee": {"id": 11}, "organization": {"id": 113}, "project": {"owner": {"id": 716}, "assignee": {"id": 890}, "organization": {"id": 942}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 336, "owner": {"id": 496}, "assignee": {"id": 58}, "organization": {"id": 151}, "project": {"owner": {"id": 728}, "assignee": {"id": 807}, "organization": {"id": 928}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"id": 310, "owner": {"id": 445}, "assignee": {"id": 25}, "organization": {"id": 627}, "project": {"owner": {"id": 758}, "assignee": {"id": 846}, "organization": {"id": 925}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 488}, "assignee": {"id": 17}, "organization": {"id": 601}, "project": {"owner": {"id": 744}, "assignee": {"id": 867}, "organization": {"id": 908}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 316, "owner": {"id": 456}, "assignee": {"id": 66}, "organization": {"id": 181}, "project": {"owner": {"id": 748}, "assignee": {"id": 864}, "organization": {"id": 900}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 199, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 357, "owner": {"id": 476}, "assignee": {"id": 78}, "organization": {"id": 199}, "project": {"owner": {"id": 720}, "assignee": {"id": 852}, "organization": {"id": 982}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 498}, "assignee": {"id": 22}, "organization": {"id": 600}, "project": {"owner": {"id": 753}, "assignee": {"id": 834}, "organization": {"id": 978}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"id": 355, "owner": {"id": 442}, "assignee": {"id": 56}, "organization": {"id": 636}, "project": {"owner": {"id": 720}, "assignee": {"id": 847}, "organization": {"id": 908}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 300, "owner": {"id": 478}, "assignee": {"id": 62}, "organization": {"id": 179}, "project": {"owner": {"id": 715}, "assignee": {"id": 825}, "organization": {"id": 926}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 324, "owner": {"id": 452}, "assignee": {"id": 84}, "organization": {"id": 184}, "project": {"owner": {"id": 709}, "assignee": {"id": 867}, "organization": {"id": 958}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 192, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 340, "owner": {"id": 491}, "assignee": {"id": 32}, "organization": {"id": 657}, "project": {"owner": {"id": 760}, "assignee": {"id": 805}, "organization": {"id": 943}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 28}, "user": {"role": "owner"}}}, "resource": {"id": 383, "owner": {"id": 456}, "assignee": {"id": 28}, "organization": {"id": 687}, "project": {"owner": {"id": 719}, "assignee": {"id": 859}, "organization": {"id": 970}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 223}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 402}, "assignee": {"id": 65}, "organization": {"id": 180}, "project": {"owner": {"id": 776}, "assignee": {"id": 850}, "organization": {"id": 979}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"id": 300, "owner": {"id": 499}, "assignee": {"id": 55}, "organization": {"id": 166}, "project": {"owner": {"id": 730}, "assignee": {"id": 843}, "organization": {"id": 989}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 423}, "assignee": {"id": 3}, "organization": {"id": 609}, "project": {"owner": {"id": 716}, "assignee": {"id": 890}, "organization": {"id": 959}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"id": 379, "owner": {"id": 427}, "assignee": {"id": 62}, "organization": {"id": 645}, "project": {"owner": {"id": 759}, "assignee": {"id": 812}, "organization": {"id": 951}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"id": 300, "owner": {"id": 447}, "assignee": {"id": 19}, "organization": {"id": 116}, "project": {"owner": {"id": 703}, "assignee": {"id": 832}, "organization": {"id": 949}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 461}, "assignee": {"id": 40}, "organization": {"id": 167}, "project": {"owner": {"id": 713}, "assignee": {"id": 884}, "organization": {"id": 902}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"id": 391, "owner": {"id": 404}, "assignee": {"id": 10}, "organization": {"id": 624}, "project": {"owner": {"id": 744}, "assignee": {"id": 852}, "organization": {"id": 969}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 172, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 397, "owner": {"id": 474}, "assignee": {"id": 64}, "organization": {"id": 659}, "project": {"owner": {"id": 720}, "assignee": {"id": 863}, "organization": {"id": 955}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 292}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 457}, "assignee": {"id": 60}, "organization": {"id": 188}, "project": {"owner": {"id": 762}, "assignee": {"id": 800}, "organization": {"id": 920}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 417}, "assignee": {"id": 61}, "organization": {"id": 160}, "project": {"owner": {"id": 744}, "assignee": {"id": 830}, "organization": {"id": 961}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 45, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"id": 317, "owner": {"id": 498}, "assignee": {"id": 45}, "organization": {"id": 604}, "project": {"owner": {"id": 722}, "assignee": {"id": 890}, "organization": {"id": 973}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 330, "owner": {"id": 459}, "assignee": {"id": 23}, "organization": {"id": 622}, "project": {"owner": {"id": 794}, "assignee": {"id": 841}, "organization": {"id": 909}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 68, "privilege": "user"}, "organization": {"id": 150, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 435}, "assignee": {"id": 68}, "organization": {"id": 150}, "project": {"owner": {"id": 736}, "assignee": {"id": 870}, "organization": {"id": 973}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"id": 357, "owner": {"id": 468}, "assignee": {"id": 78}, "organization": {"id": 142}, "project": {"owner": {"id": 789}, "assignee": {"id": 814}, "organization": {"id": 926}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"id": 345, "owner": {"id": 410}, "assignee": {"id": 6}, "organization": {"id": 657}, "project": {"owner": {"id": 769}, "assignee": {"id": 875}, "organization": {"id": 946}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 474}, "assignee": {"id": 46}, "organization": {"id": 624}, "project": {"owner": {"id": 727}, "assignee": {"id": 822}, "organization": {"id": 971}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": {"id": 156, "owner": {"id": 92}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 441}, "assignee": {"id": 92}, "organization": {"id": 156}, "project": {"owner": {"id": 766}, "assignee": {"id": 860}, "organization": {"id": 961}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 92}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 481}, "assignee": {"id": 92}, "organization": {"id": 125}, "project": {"owner": {"id": 762}, "assignee": {"id": 829}, "organization": {"id": 936}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 441}, "assignee": {"id": 89}, "organization": {"id": 654}, "project": {"owner": {"id": 776}, "assignee": {"id": 842}, "organization": {"id": 974}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"id": 396, "owner": {"id": 478}, "assignee": {"id": 75}, "organization": {"id": 615}, "project": {"owner": {"id": 790}, "assignee": {"id": 865}, "organization": {"id": 911}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 150, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 323, "owner": {"id": 412}, "assignee": {"id": 61}, "organization": {"id": 150}, "project": {"owner": {"id": 711}, "assignee": {"id": 885}, "organization": {"id": 942}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 193, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 431}, "assignee": {"id": 32}, "organization": {"id": 193}, "project": {"owner": {"id": 792}, "assignee": {"id": 824}, "organization": {"id": 953}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 186, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 422}, "assignee": {"id": 6}, "organization": {"id": 665}, "project": {"owner": {"id": 794}, "assignee": {"id": 822}, "organization": {"id": 985}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 447}, "assignee": {"id": 1}, "organization": {"id": 641}, "project": {"owner": {"id": 794}, "assignee": {"id": 855}, "organization": {"id": 965}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 407}, "assignee": {"id": 57}, "organization": {"id": 109}, "project": {"owner": {"id": 717}, "assignee": {"id": 838}, "organization": {"id": 952}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 12, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 321, "owner": {"id": 477}, "assignee": {"id": 12}, "organization": {"id": 157}, "project": {"owner": {"id": 782}, "assignee": {"id": 872}, "organization": {"id": 957}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 199, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 352, "owner": {"id": 420}, "assignee": {"id": 56}, "organization": {"id": 687}, "project": {"owner": {"id": 777}, "assignee": {"id": 808}, "organization": {"id": 958}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 283}, "user": {"role": "supervisor"}}}, "resource": {"id": 372, "owner": {"id": 440}, "assignee": {"id": 57}, "organization": {"id": 692}, "project": {"owner": {"id": 781}, "assignee": {"id": 865}, "organization": {"id": 908}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 402}, "assignee": {"id": 64}, "organization": {"id": 174}, "project": {"owner": {"id": 780}, "assignee": {"id": 816}, "organization": {"id": 961}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 135, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"id": 381, "owner": {"id": 432}, "assignee": {"id": 22}, "organization": {"id": 135}, "project": {"owner": {"id": 715}, "assignee": {"id": 806}, "organization": {"id": 990}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": {"id": 196, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"id": 381, "owner": {"id": 472}, "assignee": {"id": 41}, "organization": {"id": 699}, "project": {"owner": {"id": 766}, "assignee": {"id": 885}, "organization": {"id": 935}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 283}, "user": {"role": "worker"}}}, "resource": {"id": 396, "owner": {"id": 488}, "assignee": {"id": 91}, "organization": {"id": 680}, "project": {"owner": {"id": 791}, "assignee": {"id": 871}, "organization": {"id": 982}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"id": 357, "owner": {"id": 492}, "assignee": {"id": 47}, "organization": {"id": 144}, "project": {"owner": {"id": 727}, "assignee": {"id": 878}, "organization": {"id": 910}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 470}, "assignee": {"id": 4}, "organization": {"id": 117}, "project": {"owner": {"id": 716}, "assignee": {"id": 814}, "organization": {"id": 954}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 129, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 467}, "assignee": {"id": 74}, "organization": {"id": 691}, "project": {"owner": {"id": 724}, "assignee": {"id": 843}, "organization": {"id": 966}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 51, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 317, "owner": {"id": 462}, "assignee": {"id": 51}, "organization": {"id": 654}, "project": {"owner": {"id": 718}, "assignee": {"id": 859}, "organization": {"id": 952}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 15}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 499}, "assignee": {"id": 15}, "organization": {"id": 147}, "project": {"owner": {"id": 757}, "assignee": {"id": 846}, "organization": {"id": 977}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 59, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 59}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 442}, "assignee": {"id": 59}, "organization": {"id": 177}, "project": {"owner": {"id": 795}, "assignee": {"id": 835}, "organization": {"id": 938}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 92}, "user": {"role": "owner"}}}, "resource": {"id": 316, "owner": {"id": 415}, "assignee": {"id": 92}, "organization": {"id": 631}, "project": {"owner": {"id": 792}, "assignee": {"id": 871}, "organization": {"id": 904}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"id": 321, "owner": {"id": 475}, "assignee": {"id": 4}, "organization": {"id": 689}, "project": {"owner": {"id": 764}, "assignee": {"id": 859}, "organization": {"id": 999}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 450}, "assignee": {"id": 83}, "organization": {"id": 174}, "project": {"owner": {"id": 797}, "assignee": {"id": 856}, "organization": {"id": 949}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 496}, "assignee": {"id": 18}, "organization": {"id": 170}, "project": {"owner": {"id": 721}, "assignee": {"id": 867}, "organization": {"id": 912}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 482}, "assignee": {"id": 35}, "organization": {"id": 647}, "project": {"owner": {"id": 798}, "assignee": {"id": 805}, "organization": {"id": 903}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 443}, "assignee": {"id": 99}, "organization": {"id": 603}, "project": {"owner": {"id": 786}, "assignee": {"id": 861}, "organization": {"id": 973}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 248}, "user": {"role": "supervisor"}}}, "resource": {"id": 366, "owner": {"id": 461}, "assignee": {"id": 89}, "organization": {"id": 117}, "project": {"owner": {"id": 708}, "assignee": {"id": 832}, "organization": {"id": 969}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 132, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"id": 373, "owner": {"id": 438}, "assignee": {"id": 46}, "organization": {"id": 132}, "project": {"owner": {"id": 751}, "assignee": {"id": 897}, "organization": {"id": 977}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 321, "owner": {"id": 428}, "assignee": {"id": 15}, "organization": {"id": 671}, "project": {"owner": {"id": 776}, "assignee": {"id": 811}, "organization": {"id": 973}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 374, "owner": {"id": 456}, "assignee": {"id": 92}, "organization": {"id": 601}, "project": {"owner": {"id": 722}, "assignee": {"id": 811}, "organization": {"id": 950}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 209}, "user": {"role": "worker"}}}, "resource": {"id": 361, "owner": {"id": 485}, "assignee": {"id": 21}, "organization": {"id": 177}, "project": {"owner": {"id": 700}, "assignee": {"id": 800}, "organization": {"id": 993}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 433}, "assignee": {"id": 36}, "organization": {"id": 193}, "project": {"owner": {"id": 788}, "assignee": {"id": 871}, "organization": {"id": 969}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 465}, "assignee": {"id": 45}, "organization": {"id": 613}, "project": {"owner": {"id": 704}, "assignee": {"id": 896}, "organization": {"id": 957}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 355, "owner": {"id": 406}, "assignee": {"id": 66}, "organization": {"id": 613}, "project": {"owner": {"id": 793}, "assignee": {"id": 814}, "organization": {"id": 988}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 451}, "assignee": {"id": 64}, "organization": {"id": 137}, "project": {"owner": {"id": 748}, "assignee": {"id": 884}, "organization": {"id": 977}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 347, "owner": {"id": 474}, "assignee": {"id": 28}, "organization": {"id": 182}, "project": {"owner": {"id": 733}, "assignee": {"id": 844}, "organization": {"id": 907}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 474}, "assignee": {"id": 0}, "organization": {"id": 624}, "project": {"owner": {"id": 745}, "assignee": {"id": 870}, "organization": {"id": 998}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"id": 374, "owner": {"id": 471}, "assignee": {"id": 71}, "organization": {"id": 654}, "project": {"owner": {"id": 708}, "assignee": {"id": 875}, "organization": {"id": 915}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 72}, "user": {"role": "owner"}}}, "resource": {"id": 348, "owner": {"id": 466}, "assignee": {"id": 585}, "organization": {"id": 169}, "project": {"owner": {"id": 797}, "assignee": {"id": 836}, "organization": {"id": 962}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 462}, "assignee": {"id": 557}, "organization": {"id": 128}, "project": {"owner": {"id": 721}, "assignee": {"id": 855}, "organization": {"id": 915}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 15, "privilege": "admin"}, "organization": {"id": 127, "owner": {"id": 15}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 440}, "assignee": {"id": 503}, "organization": {"id": 636}, "project": {"owner": {"id": 744}, "assignee": {"id": 861}, "organization": {"id": 998}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 429}, "assignee": {"id": 596}, "organization": {"id": 665}, "project": {"owner": {"id": 737}, "assignee": {"id": 826}, "organization": {"id": 999}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 379, "owner": {"id": 443}, "assignee": {"id": 583}, "organization": {"id": 167}, "project": {"owner": {"id": 773}, "assignee": {"id": 815}, "organization": {"id": 978}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 461}, "assignee": {"id": 593}, "organization": {"id": 124}, "project": {"owner": {"id": 735}, "assignee": {"id": 861}, "organization": {"id": 963}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 348, "owner": {"id": 413}, "assignee": {"id": 583}, "organization": {"id": 696}, "project": {"owner": {"id": 765}, "assignee": {"id": 829}, "organization": {"id": 999}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 465}, "assignee": {"id": 552}, "organization": {"id": 606}, "project": {"owner": {"id": 730}, "assignee": {"id": 853}, "organization": {"id": 935}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 291}, "user": {"role": "supervisor"}}}, "resource": {"id": 356, "owner": {"id": 412}, "assignee": {"id": 553}, "organization": {"id": 138}, "project": {"owner": {"id": 701}, "assignee": {"id": 865}, "organization": {"id": 924}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"id": 376, "owner": {"id": 420}, "assignee": {"id": 578}, "organization": {"id": 179}, "project": {"owner": {"id": 737}, "assignee": {"id": 867}, "organization": {"id": 929}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"id": 353, "owner": {"id": 418}, "assignee": {"id": 529}, "organization": {"id": 698}, "project": {"owner": {"id": 781}, "assignee": {"id": 805}, "organization": {"id": 954}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 346, "owner": {"id": 453}, "assignee": {"id": 519}, "organization": {"id": 617}, "project": {"owner": {"id": 769}, "assignee": {"id": 801}, "organization": {"id": 997}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 464}, "assignee": {"id": 523}, "organization": {"id": 120}, "project": {"owner": {"id": 792}, "assignee": {"id": 813}, "organization": {"id": 958}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 458}, "assignee": {"id": 524}, "organization": {"id": 165}, "project": {"owner": {"id": 706}, "assignee": {"id": 898}, "organization": {"id": 971}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 461}, "assignee": {"id": 585}, "organization": {"id": 679}, "project": {"owner": {"id": 728}, "assignee": {"id": 850}, "organization": {"id": 960}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 499}, "assignee": {"id": 582}, "organization": {"id": 611}, "project": {"owner": {"id": 740}, "assignee": {"id": 805}, "organization": {"id": 996}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 318, "owner": {"id": 461}, "assignee": {"id": 573}, "organization": {"id": 166}, "project": {"owner": {"id": 714}, "assignee": {"id": 836}, "organization": {"id": 972}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 320, "owner": {"id": 455}, "assignee": {"id": 519}, "organization": {"id": 183}, "project": {"owner": {"id": 796}, "assignee": {"id": 819}, "organization": {"id": 938}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 102, "owner": {"id": 226}, "user": {"role": null}}}, "resource": {"id": 315, "owner": {"id": 458}, "assignee": {"id": 545}, "organization": {"id": 674}, "project": {"owner": {"id": 787}, "assignee": {"id": 841}, "organization": {"id": 941}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 163, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 400}, "assignee": {"id": 506}, "organization": {"id": 691}, "project": {"owner": {"id": 739}, "assignee": {"id": 830}, "organization": {"id": 957}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 447}, "assignee": {"id": 503}, "organization": {"id": 190}, "project": {"owner": {"id": 757}, "assignee": {"id": 891}, "organization": {"id": 991}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 421}, "assignee": {"id": 580}, "organization": {"id": 153}, "project": {"owner": {"id": 799}, "assignee": {"id": 891}, "organization": {"id": 988}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"id": 380, "owner": {"id": 473}, "assignee": {"id": 517}, "organization": {"id": 600}, "project": {"owner": {"id": 743}, "assignee": {"id": 892}, "organization": {"id": 965}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"id": 333, "owner": {"id": 458}, "assignee": {"id": 576}, "organization": {"id": 653}, "project": {"owner": {"id": 711}, "assignee": {"id": 835}, "organization": {"id": 906}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 406}, "assignee": {"id": 599}, "organization": {"id": 109}, "project": {"owner": {"id": 762}, "assignee": {"id": 808}, "organization": {"id": 908}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 355, "owner": {"id": 400}, "assignee": {"id": 530}, "organization": {"id": 115}, "project": {"owner": {"id": 734}, "assignee": {"id": 849}, "organization": {"id": 936}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 332, "owner": {"id": 450}, "assignee": {"id": 504}, "organization": {"id": 618}, "project": {"owner": {"id": 706}, "assignee": {"id": 889}, "organization": {"id": 932}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 318, "owner": {"id": 448}, "assignee": {"id": 569}, "organization": {"id": 626}, "project": {"owner": {"id": 738}, "assignee": {"id": 899}, "organization": {"id": 968}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 294}, "user": {"role": "supervisor"}}}, "resource": {"id": 384, "owner": {"id": 436}, "assignee": {"id": 570}, "organization": {"id": 112}, "project": {"owner": {"id": 778}, "assignee": {"id": 804}, "organization": {"id": 944}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"id": 307, "owner": {"id": 464}, "assignee": {"id": 598}, "organization": {"id": 163}, "project": {"owner": {"id": 708}, "assignee": {"id": 868}, "organization": {"id": 932}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 398, "owner": {"id": 425}, "assignee": {"id": 573}, "organization": {"id": 678}, "project": {"owner": {"id": 785}, "assignee": {"id": 867}, "organization": {"id": 974}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 113, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 321, "owner": {"id": 438}, "assignee": {"id": 565}, "organization": {"id": 606}, "project": {"owner": {"id": 799}, "assignee": {"id": 874}, "organization": {"id": 990}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 492}, "assignee": {"id": 554}, "organization": {"id": 194}, "project": {"owner": {"id": 729}, "assignee": {"id": 892}, "organization": {"id": 994}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 214}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 446}, "assignee": {"id": 539}, "organization": {"id": 140}, "project": {"owner": {"id": 775}, "assignee": {"id": 824}, "organization": {"id": 954}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 312, "owner": {"id": 432}, "assignee": {"id": 593}, "organization": {"id": 664}, "project": {"owner": {"id": 749}, "assignee": {"id": 894}, "organization": {"id": 943}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"id": 372, "owner": {"id": 477}, "assignee": {"id": 570}, "organization": {"id": 610}, "project": {"owner": {"id": 714}, "assignee": {"id": 872}, "organization": {"id": 997}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"id": 356, "owner": {"id": 473}, "assignee": {"id": 562}, "organization": {"id": 100}, "project": {"owner": {"id": 738}, "assignee": {"id": 881}, "organization": {"id": 958}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 123, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 478}, "assignee": {"id": 525}, "organization": {"id": 123}, "project": {"owner": {"id": 799}, "assignee": {"id": 810}, "organization": {"id": 969}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 286}, "user": {"role": null}}}, "resource": {"id": 363, "owner": {"id": 495}, "assignee": {"id": 568}, "organization": {"id": 627}, "project": {"owner": {"id": 779}, "assignee": {"id": 857}, "organization": {"id": 944}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 429}, "assignee": {"id": 550}, "organization": {"id": 668}, "project": {"owner": {"id": 766}, "assignee": {"id": 869}, "organization": {"id": 929}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 414}, "assignee": {"id": 535}, "organization": {"id": 129}, "project": {"owner": {"id": 713}, "assignee": {"id": 865}, "organization": {"id": 988}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 192, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 333, "owner": {"id": 482}, "assignee": {"id": 558}, "organization": {"id": 192}, "project": {"owner": {"id": 788}, "assignee": {"id": 893}, "organization": {"id": 969}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 384, "owner": {"id": 466}, "assignee": {"id": 561}, "organization": {"id": 602}, "project": {"owner": {"id": 797}, "assignee": {"id": 899}, "organization": {"id": 969}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 163, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 452}, "assignee": {"id": 578}, "organization": {"id": 645}, "project": {"owner": {"id": 700}, "assignee": {"id": 812}, "organization": {"id": 976}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 413}, "assignee": {"id": 574}, "organization": {"id": 126}, "project": {"owner": {"id": 775}, "assignee": {"id": 860}, "organization": {"id": 926}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 448}, "assignee": {"id": 567}, "organization": {"id": 155}, "project": {"owner": {"id": 710}, "assignee": {"id": 844}, "organization": {"id": 980}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 487}, "assignee": {"id": 590}, "organization": {"id": 675}, "project": {"owner": {"id": 763}, "assignee": {"id": 818}, "organization": {"id": 963}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 455}, "assignee": {"id": 594}, "organization": {"id": 695}, "project": {"owner": {"id": 794}, "assignee": {"id": 837}, "organization": {"id": 966}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"id": 340, "owner": {"id": 496}, "assignee": {"id": 550}, "organization": {"id": 144}, "project": {"owner": {"id": 733}, "assignee": {"id": 881}, "organization": {"id": 956}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"id": 339, "owner": {"id": 473}, "assignee": {"id": 551}, "organization": {"id": 120}, "project": {"owner": {"id": 730}, "assignee": {"id": 881}, "organization": {"id": 901}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"id": 378, "owner": {"id": 484}, "assignee": {"id": 513}, "organization": {"id": 617}, "project": {"owner": {"id": 774}, "assignee": {"id": 831}, "organization": {"id": 960}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 320, "owner": {"id": 475}, "assignee": {"id": 506}, "organization": {"id": 605}, "project": {"owner": {"id": 722}, "assignee": {"id": 829}, "organization": {"id": 927}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"id": 391, "owner": {"id": 477}, "assignee": {"id": 568}, "organization": {"id": 177}, "project": {"owner": {"id": 742}, "assignee": {"id": 882}, "organization": {"id": 978}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 305, "owner": {"id": 412}, "assignee": {"id": 545}, "organization": {"id": 101}, "project": {"owner": {"id": 764}, "assignee": {"id": 817}, "organization": {"id": 952}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 447}, "assignee": {"id": 505}, "organization": {"id": 636}, "project": {"owner": {"id": 741}, "assignee": {"id": 825}, "organization": {"id": 940}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 217}, "user": {"role": "worker"}}}, "resource": {"id": 368, "owner": {"id": 420}, "assignee": {"id": 526}, "organization": {"id": 641}, "project": {"owner": {"id": 759}, "assignee": {"id": 869}, "organization": {"id": 965}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 355, "owner": {"id": 427}, "assignee": {"id": 529}, "organization": {"id": 157}, "project": {"owner": {"id": 729}, "assignee": {"id": 853}, "organization": {"id": 932}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 345, "owner": {"id": 432}, "assignee": {"id": 538}, "organization": {"id": 116}, "project": {"owner": {"id": 720}, "assignee": {"id": 849}, "organization": {"id": 953}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 244}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 485}, "assignee": {"id": 550}, "organization": {"id": 633}, "project": {"owner": {"id": 719}, "assignee": {"id": 846}, "organization": {"id": 991}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 374, "owner": {"id": 445}, "assignee": {"id": 591}, "organization": {"id": 678}, "project": {"owner": {"id": 777}, "assignee": {"id": 876}, "organization": {"id": 956}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 156, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 348, "owner": {"id": 465}, "assignee": {"id": 569}, "organization": {"id": 156}, "project": {"owner": {"id": 720}, "assignee": {"id": 887}, "organization": {"id": 922}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 348, "owner": {"id": 459}, "assignee": {"id": 513}, "organization": {"id": 114}, "project": {"owner": {"id": 763}, "assignee": {"id": 842}, "organization": {"id": 955}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 96, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 439}, "assignee": {"id": 539}, "organization": {"id": 625}, "project": {"owner": {"id": 769}, "assignee": {"id": 807}, "organization": {"id": 918}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 95}, "user": {"role": "owner"}}}, "resource": {"id": 397, "owner": {"id": 451}, "assignee": {"id": 536}, "organization": {"id": 622}, "project": {"owner": {"id": 799}, "assignee": {"id": 818}, "organization": {"id": 946}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 450}, "assignee": {"id": 510}, "organization": {"id": 183}, "project": {"owner": {"id": 742}, "assignee": {"id": 810}, "organization": {"id": 920}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 431}, "assignee": {"id": 524}, "organization": {"id": 149}, "project": {"owner": {"id": 786}, "assignee": {"id": 807}, "organization": {"id": 919}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 150, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"id": 311, "owner": {"id": 436}, "assignee": {"id": 530}, "organization": {"id": 684}, "project": {"owner": {"id": 729}, "assignee": {"id": 889}, "organization": {"id": 961}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 107, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 407}, "assignee": {"id": 533}, "organization": {"id": 677}, "project": {"owner": {"id": 713}, "assignee": {"id": 815}, "organization": {"id": 966}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 451}, "assignee": {"id": 571}, "organization": {"id": 169}, "project": {"owner": {"id": 787}, "assignee": {"id": 840}, "organization": {"id": 964}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 107, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 413}, "assignee": {"id": 565}, "organization": {"id": 107}, "project": {"owner": {"id": 761}, "assignee": {"id": 881}, "organization": {"id": 948}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 319, "owner": {"id": 447}, "assignee": {"id": 540}, "organization": {"id": 698}, "project": {"owner": {"id": 720}, "assignee": {"id": 882}, "organization": {"id": 914}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 283}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 437}, "assignee": {"id": 554}, "organization": {"id": 665}, "project": {"owner": {"id": 772}, "assignee": {"id": 842}, "organization": {"id": 989}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 196, "owner": {"id": 214}, "user": {"role": "worker"}}}, "resource": {"id": 361, "owner": {"id": 475}, "assignee": {"id": 533}, "organization": {"id": 196}, "project": {"owner": {"id": 762}, "assignee": {"id": 872}, "organization": {"id": 978}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 442}, "assignee": {"id": 516}, "organization": {"id": 175}, "project": {"owner": {"id": 798}, "assignee": {"id": 878}, "organization": {"id": 930}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"id": 395, "owner": {"id": 484}, "assignee": {"id": 587}, "organization": {"id": 669}, "project": {"owner": {"id": 799}, "assignee": {"id": 852}, "organization": {"id": 989}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 391, "owner": {"id": 469}, "assignee": {"id": 590}, "organization": {"id": 607}, "project": {"owner": {"id": 746}, "assignee": {"id": 848}, "organization": {"id": 929}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 369, "owner": {"id": 406}, "assignee": {"id": 526}, "organization": {"id": 110}, "project": {"owner": {"id": 744}, "assignee": {"id": 882}, "organization": {"id": 906}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 341, "owner": {"id": 426}, "assignee": {"id": 576}, "organization": {"id": 116}, "project": {"owner": {"id": 729}, "assignee": {"id": 865}, "organization": {"id": 982}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 413}, "assignee": {"id": 550}, "organization": {"id": 636}, "project": {"owner": {"id": 704}, "assignee": {"id": 843}, "organization": {"id": 999}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 380, "owner": {"id": 440}, "assignee": {"id": 501}, "organization": {"id": 677}, "project": {"owner": {"id": 794}, "assignee": {"id": 864}, "organization": {"id": 925}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 492}, "assignee": {"id": 572}, "organization": {"id": 125}, "project": {"owner": {"id": 701}, "assignee": {"id": 841}, "organization": {"id": 912}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"id": 327, "owner": {"id": 433}, "assignee": {"id": 520}, "organization": {"id": 113}, "project": {"owner": {"id": 757}, "assignee": {"id": 828}, "organization": {"id": 992}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 457}, "assignee": {"id": 516}, "organization": {"id": 618}, "project": {"owner": {"id": 728}, "assignee": {"id": 847}, "organization": {"id": 952}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 318, "owner": {"id": 479}, "assignee": {"id": 504}, "organization": {"id": 666}, "project": {"owner": {"id": 754}, "assignee": {"id": 858}, "organization": {"id": 938}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 373, "owner": {"id": 422}, "assignee": {"id": 595}, "organization": {"id": 163}, "project": {"owner": {"id": 733}, "assignee": {"id": 852}, "organization": {"id": 999}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 486}, "assignee": {"id": 526}, "organization": {"id": 170}, "project": {"owner": {"id": 773}, "assignee": {"id": 824}, "organization": {"id": 945}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 156, "owner": {"id": 220}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 407}, "assignee": {"id": 580}, "organization": {"id": 602}, "project": {"owner": {"id": 730}, "assignee": {"id": 898}, "organization": {"id": 992}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"id": 332, "owner": {"id": 476}, "assignee": {"id": 544}, "organization": {"id": 660}, "project": {"owner": {"id": 744}, "assignee": {"id": 835}, "organization": {"id": 940}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 59, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"id": 395, "owner": {"id": 450}, "assignee": {"id": 541}, "organization": {"id": 145}, "project": {"owner": {"id": 728}, "assignee": {"id": 858}, "organization": {"id": 984}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 401}, "assignee": {"id": 503}, "organization": {"id": 172}, "project": {"owner": {"id": 717}, "assignee": {"id": 880}, "organization": {"id": 943}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 307, "owner": {"id": 433}, "assignee": {"id": 503}, "organization": {"id": 618}, "project": {"owner": {"id": 796}, "assignee": {"id": 884}, "organization": {"id": 972}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 418}, "assignee": {"id": 547}, "organization": {"id": 691}, "project": {"owner": {"id": 754}, "assignee": {"id": 853}, "organization": {"id": 954}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 495}, "assignee": {"id": 565}, "organization": {"id": 195}, "project": {"owner": {"id": 754}, "assignee": {"id": 831}, "organization": {"id": 938}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 431}, "assignee": {"id": 553}, "organization": {"id": 125}, "project": {"owner": {"id": 752}, "assignee": {"id": 819}, "organization": {"id": 974}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"id": 330, "owner": {"id": 400}, "assignee": {"id": 569}, "organization": {"id": 613}, "project": {"owner": {"id": 716}, "assignee": {"id": 864}, "organization": {"id": 950}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 314, "owner": {"id": 498}, "assignee": {"id": 534}, "organization": {"id": 607}, "project": {"owner": {"id": 745}, "assignee": {"id": 890}, "organization": {"id": 994}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"id": 322, "owner": {"id": 490}, "assignee": {"id": 571}, "organization": {"id": 164}, "project": {"owner": {"id": 719}, "assignee": {"id": 893}, "organization": {"id": 970}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 485}, "assignee": {"id": 543}, "organization": {"id": 157}, "project": {"owner": {"id": 759}, "assignee": {"id": 862}, "organization": {"id": 927}}}} } -test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 431}, "assignee": {"id": 579}, "organization": {"id": 654}, "project": {"owner": {"id": 740}, "assignee": {"id": 819}, "organization": {"id": 901}}}} +test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 382, "owner": {"id": 415}, "assignee": {"id": 545}, "organization": {"id": 616}, "project": {"owner": {"id": 774}, "assignee": {"id": 862}, "organization": {"id": 939}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 462}, "assignee": {"id": 557}, "organization": {"id": 647}, "project": {"owner": {"id": 33}, "assignee": {"id": 833}, "organization": {"id": 979}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": null}, "resource": {"id": 379, "owner": {"id": 401}, "assignee": {"id": 552}, "organization": {"id": 673}, "project": {"owner": {"id": 28}, "assignee": {"id": 888}, "organization": {"id": 904}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 460}, "assignee": {"id": 568}, "organization": {"id": 696}, "project": {"owner": {"id": 11}, "assignee": {"id": 827}, "organization": {"id": 950}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": null}, "resource": {"id": 345, "owner": {"id": 498}, "assignee": {"id": 584}, "organization": {"id": 608}, "project": {"owner": {"id": 29}, "assignee": {"id": 817}, "organization": {"id": 905}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 403}, "assignee": {"id": 517}, "organization": {"id": 633}, "project": {"owner": {"id": 96}, "assignee": {"id": 835}, "organization": {"id": 978}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": null}, "resource": {"id": 308, "owner": {"id": 452}, "assignee": {"id": 541}, "organization": {"id": 641}, "project": {"owner": {"id": 66}, "assignee": {"id": 803}, "organization": {"id": 991}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 482}, "assignee": {"id": 587}, "organization": {"id": 689}, "project": {"owner": {"id": 77}, "assignee": {"id": 846}, "organization": {"id": 970}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": null}, "resource": {"id": 351, "owner": {"id": 446}, "assignee": {"id": 524}, "organization": {"id": 603}, "project": {"owner": {"id": 66}, "assignee": {"id": 829}, "organization": {"id": 952}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 494}, "assignee": {"id": 579}, "organization": {"id": 691}, "project": {"owner": {"id": 1}, "assignee": {"id": 814}, "organization": {"id": 902}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": null}, "resource": {"id": 331, "owner": {"id": 494}, "assignee": {"id": 585}, "organization": {"id": 605}, "project": {"owner": {"id": 70}, "assignee": {"id": 844}, "organization": {"id": 958}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 461}, "assignee": {"id": 500}, "organization": {"id": 642}, "project": {"owner": {"id": 74}, "assignee": {"id": 883}, "organization": {"id": 995}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": null}, "resource": {"id": 331, "owner": {"id": 409}, "assignee": {"id": 507}, "organization": {"id": 627}, "project": {"owner": {"id": 776}, "assignee": {"id": 88}, "organization": {"id": 945}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 68, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 494}, "assignee": {"id": 526}, "organization": {"id": 691}, "project": {"owner": {"id": 68}, "assignee": {"id": 844}, "organization": {"id": 917}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": null}, "resource": {"id": 367, "owner": {"id": 439}, "assignee": {"id": 535}, "organization": {"id": 664}, "project": {"owner": {"id": 782}, "assignee": {"id": 76}, "organization": {"id": 990}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 487}, "assignee": {"id": 500}, "organization": {"id": 609}, "project": {"owner": {"id": 52}, "assignee": {"id": 839}, "organization": {"id": 962}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": null}, "resource": {"id": 378, "owner": {"id": 403}, "assignee": {"id": 597}, "organization": {"id": 615}, "project": {"owner": {"id": 761}, "assignee": {"id": 16}, "organization": {"id": 914}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 403}, "assignee": {"id": 561}, "organization": {"id": 616}, "project": {"owner": {"id": 59}, "assignee": {"id": 881}, "organization": {"id": 903}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": null}, "resource": {"id": 371, "owner": {"id": 419}, "assignee": {"id": 521}, "organization": {"id": 622}, "project": {"owner": {"id": 782}, "assignee": {"id": 56}, "organization": {"id": 902}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 457}, "assignee": {"id": 535}, "organization": {"id": 637}, "project": {"owner": {"id": 70}, "assignee": {"id": 861}, "organization": {"id": 985}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": null}, "resource": {"id": 343, "owner": {"id": 420}, "assignee": {"id": 503}, "organization": {"id": 600}, "project": {"owner": {"id": 793}, "assignee": {"id": 44}, "organization": {"id": 907}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 481}, "assignee": {"id": 566}, "organization": {"id": 659}, "project": {"owner": {"id": 81}, "assignee": {"id": 824}, "organization": {"id": 922}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": null}, "resource": {"id": 348, "owner": {"id": 46}, "assignee": {"id": 568}, "organization": {"id": 604}, "project": {"owner": {"id": 798}, "assignee": {"id": 840}, "organization": {"id": 931}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 496}, "assignee": {"id": 558}, "organization": {"id": 688}, "project": {"owner": {"id": 21}, "assignee": {"id": 852}, "organization": {"id": 911}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": null}, "resource": {"id": 306, "owner": {"id": 41}, "assignee": {"id": 567}, "organization": {"id": 673}, "project": {"owner": {"id": 761}, "assignee": {"id": 810}, "organization": {"id": 915}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 478}, "assignee": {"id": 599}, "organization": {"id": 672}, "project": {"owner": {"id": 67}, "assignee": {"id": 832}, "organization": {"id": 961}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": null}, "resource": {"id": 388, "owner": {"id": 29}, "assignee": {"id": 561}, "organization": {"id": 697}, "project": {"owner": {"id": 790}, "assignee": {"id": 893}, "organization": {"id": 993}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 497}, "assignee": {"id": 502}, "organization": {"id": 628}, "project": {"owner": {"id": 93}, "assignee": {"id": 813}, "organization": {"id": 915}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": null}, "resource": {"id": 316, "owner": {"id": 61}, "assignee": {"id": 514}, "organization": {"id": 686}, "project": {"owner": {"id": 758}, "assignee": {"id": 833}, "organization": {"id": 968}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 437}, "assignee": {"id": 560}, "organization": {"id": 635}, "project": {"owner": {"id": 32}, "assignee": {"id": 802}, "organization": {"id": 926}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": null}, "resource": {"id": 328, "owner": {"id": 2}, "assignee": {"id": 509}, "organization": {"id": 606}, "project": {"owner": {"id": 712}, "assignee": {"id": 880}, "organization": {"id": 963}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 492}, "assignee": {"id": 514}, "organization": {"id": 621}, "project": {"owner": {"id": 759}, "assignee": {"id": 62}, "organization": {"id": 940}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": null}, "resource": {"id": 366, "owner": {"id": 462}, "assignee": {"id": 17}, "organization": {"id": 658}, "project": {"owner": {"id": 787}, "assignee": {"id": 883}, "organization": {"id": 991}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 418}, "assignee": {"id": 588}, "organization": {"id": 658}, "project": {"owner": {"id": 725}, "assignee": {"id": 87}, "organization": {"id": 954}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": null}, "resource": {"id": 325, "owner": {"id": 490}, "assignee": {"id": 11}, "organization": {"id": 674}, "project": {"owner": {"id": 725}, "assignee": {"id": 840}, "organization": {"id": 976}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 400}, "assignee": {"id": 534}, "organization": {"id": 607}, "project": {"owner": {"id": 774}, "assignee": {"id": 1}, "organization": {"id": 966}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 93, "privilege": "user"}, "organization": null}, "resource": {"id": 351, "owner": {"id": 415}, "assignee": {"id": 93}, "organization": {"id": 634}, "project": {"owner": {"id": 739}, "assignee": {"id": 804}, "organization": {"id": 920}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 425}, "assignee": {"id": 506}, "organization": {"id": 632}, "project": {"owner": {"id": 794}, "assignee": {"id": 15}, "organization": {"id": 963}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": null}, "resource": {"id": 347, "owner": {"id": 461}, "assignee": {"id": 79}, "organization": {"id": 656}, "project": {"owner": {"id": 748}, "assignee": {"id": 866}, "organization": {"id": 983}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 431}, "assignee": {"id": 589}, "organization": {"id": 624}, "project": {"owner": {"id": 784}, "assignee": {"id": 15}, "organization": {"id": 941}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": null}, "resource": {"id": 326, "owner": {"id": 473}, "assignee": {"id": 66}, "organization": {"id": 661}, "project": {"owner": {"id": 715}, "assignee": {"id": 856}, "organization": {"id": 909}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 472}, "assignee": {"id": 521}, "organization": {"id": 681}, "project": {"owner": {"id": 754}, "assignee": {"id": 79}, "organization": {"id": 971}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": null}, "resource": {"id": 389, "owner": {"id": 474}, "assignee": {"id": 572}, "organization": {"id": 623}, "project": {"owner": {"id": 739}, "assignee": {"id": 831}, "organization": {"id": 960}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 488}, "assignee": {"id": 558}, "organization": {"id": 683}, "project": {"owner": {"id": 733}, "assignee": {"id": 1}, "organization": {"id": 996}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": null}, "resource": {"id": 373, "owner": {"id": 479}, "assignee": {"id": 526}, "organization": {"id": 689}, "project": {"owner": {"id": 748}, "assignee": {"id": 820}, "organization": {"id": 931}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 442}, "assignee": {"id": 516}, "organization": {"id": 661}, "project": {"owner": {"id": 735}, "assignee": {"id": 19}, "organization": {"id": 969}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": null}, "resource": {"id": 322, "owner": {"id": 409}, "assignee": {"id": 507}, "organization": {"id": 622}, "project": {"owner": {"id": 777}, "assignee": {"id": 835}, "organization": {"id": 978}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 456}, "assignee": {"id": 513}, "organization": {"id": 695}, "project": {"owner": {"id": 719}, "assignee": {"id": 76}, "organization": {"id": 919}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": null}, "resource": {"id": 352, "owner": {"id": 428}, "assignee": {"id": 543}, "organization": {"id": 652}, "project": {"owner": {"id": 789}, "assignee": {"id": 808}, "organization": {"id": 911}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 493}, "assignee": {"id": 530}, "organization": {"id": 660}, "project": {"owner": {"id": 761}, "assignee": {"id": 88}, "organization": {"id": 952}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": null}, "resource": {"id": 353, "owner": {"id": 458}, "assignee": {"id": 510}, "organization": {"id": 663}, "project": {"owner": {"id": 751}, "assignee": {"id": 844}, "organization": {"id": 955}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 441}, "assignee": {"id": 526}, "organization": {"id": 656}, "project": {"owner": {"id": 753}, "assignee": {"id": 49}, "organization": {"id": 962}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"id": 382, "owner": {"id": 474}, "assignee": {"id": 512}, "organization": {"id": 105}, "project": {"owner": {"id": 61}, "assignee": {"id": 808}, "organization": {"id": 950}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 25, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 461}, "assignee": {"id": 558}, "organization": {"id": 656}, "project": {"owner": {"id": 750}, "assignee": {"id": 25}, "organization": {"id": 924}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 447}, "assignee": {"id": 570}, "organization": {"id": 663}, "project": {"owner": {"id": 85}, "assignee": {"id": 864}, "organization": {"id": 931}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 448}, "assignee": {"id": 563}, "organization": {"id": 671}, "project": {"owner": {"id": 716}, "assignee": {"id": 64}, "organization": {"id": 914}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 465}, "assignee": {"id": 555}, "organization": {"id": 178}, "project": {"owner": {"id": 10}, "assignee": {"id": 826}, "organization": {"id": 946}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 410}, "assignee": {"id": 552}, "organization": {"id": 647}, "project": {"owner": {"id": 713}, "assignee": {"id": 10}, "organization": {"id": 992}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 324, "owner": {"id": 418}, "assignee": {"id": 557}, "organization": {"id": 604}, "project": {"owner": {"id": 36}, "assignee": {"id": 889}, "organization": {"id": 939}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 437}, "assignee": {"id": 500}, "organization": {"id": 667}, "project": {"owner": {"id": 707}, "assignee": {"id": 30}, "organization": {"id": 984}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 434}, "assignee": {"id": 520}, "organization": {"id": 144}, "project": {"owner": {"id": 10}, "assignee": {"id": 850}, "organization": {"id": 985}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 458}, "assignee": {"id": 594}, "organization": {"id": 671}, "project": {"owner": {"id": 755}, "assignee": {"id": 834}, "organization": {"id": 985}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 353, "owner": {"id": 400}, "assignee": {"id": 530}, "organization": {"id": 621}, "project": {"owner": {"id": 98}, "assignee": {"id": 811}, "organization": {"id": 910}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 81, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 449}, "assignee": {"id": 588}, "organization": {"id": 644}, "project": {"owner": {"id": 736}, "assignee": {"id": 864}, "organization": {"id": 927}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 490}, "assignee": {"id": 570}, "organization": {"id": 105}, "project": {"owner": {"id": 10}, "assignee": {"id": 805}, "organization": {"id": 903}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 459}, "assignee": {"id": 549}, "organization": {"id": 620}, "project": {"owner": {"id": 720}, "assignee": {"id": 894}, "organization": {"id": 910}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"id": 394, "owner": {"id": 484}, "assignee": {"id": 574}, "organization": {"id": 696}, "project": {"owner": {"id": 19}, "assignee": {"id": 879}, "organization": {"id": 940}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 495}, "assignee": {"id": 556}, "organization": {"id": 654}, "project": {"owner": {"id": 790}, "assignee": {"id": 822}, "organization": {"id": 946}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 320, "owner": {"id": 420}, "assignee": {"id": 521}, "organization": {"id": 138}, "project": {"owner": {"id": 90}, "assignee": {"id": 861}, "organization": {"id": 902}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 430}, "assignee": {"id": 555}, "organization": {"id": 649}, "project": {"owner": {"id": 709}, "assignee": {"id": 831}, "organization": {"id": 989}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 222}, "user": {"role": null}}}, "resource": {"id": 388, "owner": {"id": 460}, "assignee": {"id": 522}, "organization": {"id": 655}, "project": {"owner": {"id": 1}, "assignee": {"id": 863}, "organization": {"id": 946}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 472}, "assignee": {"id": 597}, "organization": {"id": 663}, "project": {"owner": {"id": 763}, "assignee": {"id": 859}, "organization": {"id": 914}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"id": 373, "owner": {"id": 469}, "assignee": {"id": 523}, "organization": {"id": 183}, "project": {"owner": {"id": 83}, "assignee": {"id": 870}, "organization": {"id": 958}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 436}, "assignee": {"id": 578}, "organization": {"id": 686}, "project": {"owner": {"id": 741}, "assignee": {"id": 844}, "organization": {"id": 966}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 492}, "assignee": {"id": 557}, "organization": {"id": 620}, "project": {"owner": {"id": 42}, "assignee": {"id": 875}, "organization": {"id": 909}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 475}, "assignee": {"id": 590}, "organization": {"id": 663}, "project": {"owner": {"id": 702}, "assignee": {"id": 860}, "organization": {"id": 922}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"id": 329, "owner": {"id": 478}, "assignee": {"id": 525}, "organization": {"id": 155}, "project": {"owner": {"id": 21}, "assignee": {"id": 899}, "organization": {"id": 949}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 476}, "assignee": {"id": 564}, "organization": {"id": 631}, "project": {"owner": {"id": 708}, "assignee": {"id": 807}, "organization": {"id": 985}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 318, "owner": {"id": 468}, "assignee": {"id": 569}, "organization": {"id": 676}, "project": {"owner": {"id": 86}, "assignee": {"id": 895}, "organization": {"id": 982}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 424}, "assignee": {"id": 540}, "organization": {"id": 608}, "project": {"owner": {"id": 775}, "assignee": {"id": 874}, "organization": {"id": 964}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"id": 346, "owner": {"id": 482}, "assignee": {"id": 584}, "organization": {"id": 106}, "project": {"owner": {"id": 57}, "assignee": {"id": 823}, "organization": {"id": 992}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 438}, "assignee": {"id": 565}, "organization": {"id": 655}, "project": {"owner": {"id": 705}, "assignee": {"id": 899}, "organization": {"id": 905}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 435}, "assignee": {"id": 595}, "organization": {"id": 627}, "project": {"owner": {"id": 28}, "assignee": {"id": 841}, "organization": {"id": 956}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 407}, "assignee": {"id": 557}, "organization": {"id": 648}, "project": {"owner": {"id": 759}, "assignee": {"id": 857}, "organization": {"id": 994}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 391, "owner": {"id": 421}, "assignee": {"id": 580}, "organization": {"id": 118}, "project": {"owner": {"id": 63}, "assignee": {"id": 878}, "organization": {"id": 930}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 473}, "assignee": {"id": 501}, "organization": {"id": 664}, "project": {"owner": {"id": 716}, "assignee": {"id": 887}, "organization": {"id": 930}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"id": 317, "owner": {"id": 411}, "assignee": {"id": 505}, "organization": {"id": 696}, "project": {"owner": {"id": 20}, "assignee": {"id": 887}, "organization": {"id": 972}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 497}, "assignee": {"id": 517}, "organization": {"id": 613}, "project": {"owner": {"id": 736}, "assignee": {"id": 872}, "organization": {"id": 948}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 330, "owner": {"id": 458}, "assignee": {"id": 584}, "organization": {"id": 110}, "project": {"owner": {"id": 43}, "assignee": {"id": 816}, "organization": {"id": 939}}}} } -test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 409}, "assignee": {"id": 541}, "organization": {"id": 649}, "project": {"owner": {"id": 756}, "assignee": {"id": 895}, "organization": {"id": 970}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 359, "owner": {"id": 449}, "assignee": {"id": 578}, "organization": {"id": 657}, "project": {"owner": {"id": 84}, "assignee": {"id": 885}, "organization": {"id": 958}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 579}, "organization": {"id": 150}, "project": {"owner": {"id": 32}, "assignee": {"id": 823}, "organization": {"id": 936}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 497}, "assignee": {"id": 514}, "organization": {"id": 125}, "project": {"owner": {"id": 0}, "assignee": {"id": 837}, "organization": {"id": 951}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 506}, "organization": {"id": 153}, "project": {"owner": {"id": 30}, "assignee": {"id": 869}, "organization": {"id": 938}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 467}, "assignee": {"id": 538}, "organization": {"id": 669}, "project": {"owner": {"id": 40}, "assignee": {"id": 863}, "organization": {"id": 902}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 77}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 577}, "organization": {"id": 188}, "project": {"owner": {"id": 77}, "assignee": {"id": 822}, "organization": {"id": 985}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"id": 362, "owner": {"id": 497}, "assignee": {"id": 562}, "organization": {"id": 166}, "project": {"owner": {"id": 19}, "assignee": {"id": 838}, "organization": {"id": 924}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 117, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 588}, "organization": {"id": 668}, "project": {"owner": {"id": 21}, "assignee": {"id": 868}, "organization": {"id": 900}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 110, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 358, "owner": {"id": 403}, "assignee": {"id": 554}, "organization": {"id": 624}, "project": {"owner": {"id": 92}, "assignee": {"id": 800}, "organization": {"id": 963}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 508}, "organization": {"id": 640}, "project": {"owner": {"id": 49}, "assignee": {"id": 824}, "organization": {"id": 963}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 475}, "assignee": {"id": 543}, "organization": {"id": 106}, "project": {"owner": {"id": 3}, "assignee": {"id": 877}, "organization": {"id": 967}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 481}, "assignee": {"id": 503}, "organization": {"id": 650}, "project": {"owner": {"id": 61}, "assignee": {"id": 806}, "organization": {"id": 942}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 295}, "user": {"role": "supervisor"}}}, "resource": {"id": 357, "owner": {"id": 432}, "assignee": {"id": 528}, "organization": {"id": 601}, "project": {"owner": {"id": 72}, "assignee": {"id": 822}, "organization": {"id": 903}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 537}, "organization": {"id": 108}, "project": {"owner": {"id": 68}, "assignee": {"id": 807}, "organization": {"id": 997}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 138, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 383, "owner": {"id": 468}, "assignee": {"id": 598}, "organization": {"id": 138}, "project": {"owner": {"id": 60}, "assignee": {"id": 881}, "organization": {"id": 941}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 474}, "assignee": {"id": 508}, "organization": {"id": 122}, "project": {"owner": {"id": 84}, "assignee": {"id": 881}, "organization": {"id": 901}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 466}, "assignee": {"id": 582}, "organization": {"id": 616}, "project": {"owner": {"id": 53}, "assignee": {"id": 895}, "organization": {"id": 925}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 569}, "organization": {"id": 173}, "project": {"owner": {"id": 16}, "assignee": {"id": 888}, "organization": {"id": 971}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 263}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 456}, "assignee": {"id": 524}, "organization": {"id": 166}, "project": {"owner": {"id": 30}, "assignee": {"id": 828}, "organization": {"id": 976}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 149, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 419}, "assignee": {"id": 573}, "organization": {"id": 610}, "project": {"owner": {"id": 83}, "assignee": {"id": 868}, "organization": {"id": 919}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"id": 387, "owner": {"id": 445}, "assignee": {"id": 568}, "organization": {"id": 644}, "project": {"owner": {"id": 92}, "assignee": {"id": 849}, "organization": {"id": 919}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 534}, "organization": {"id": 628}, "project": {"owner": {"id": 49}, "assignee": {"id": 840}, "organization": {"id": 992}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 363, "owner": {"id": 403}, "assignee": {"id": 552}, "organization": {"id": 191}, "project": {"owner": {"id": 39}, "assignee": {"id": 859}, "organization": {"id": 915}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 524}, "organization": {"id": 660}, "project": {"owner": {"id": 9}, "assignee": {"id": 802}, "organization": {"id": 978}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"id": 325, "owner": {"id": 425}, "assignee": {"id": 576}, "organization": {"id": 644}, "project": {"owner": {"id": 5}, "assignee": {"id": 800}, "organization": {"id": 947}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 461}, "assignee": {"id": 513}, "organization": {"id": 175}, "project": {"owner": {"id": 72}, "assignee": {"id": 823}, "organization": {"id": 922}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 270}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 442}, "assignee": {"id": 527}, "organization": {"id": 114}, "project": {"owner": {"id": 73}, "assignee": {"id": 854}, "organization": {"id": 979}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 521}, "organization": {"id": 162}, "project": {"owner": {"id": 64}, "assignee": {"id": 808}, "organization": {"id": 914}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 188, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"id": 388, "owner": {"id": 402}, "assignee": {"id": 543}, "organization": {"id": 677}, "project": {"owner": {"id": 67}, "assignee": {"id": 834}, "organization": {"id": 904}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 99, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 585}, "organization": {"id": 125}, "project": {"owner": {"id": 99}, "assignee": {"id": 858}, "organization": {"id": 910}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"id": 353, "owner": {"id": 469}, "assignee": {"id": 598}, "organization": {"id": 145}, "project": {"owner": {"id": 24}, "assignee": {"id": 810}, "organization": {"id": 924}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 460}, "assignee": {"id": 580}, "organization": {"id": 616}, "project": {"owner": {"id": 4}, "assignee": {"id": 812}, "organization": {"id": 940}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 195, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 408}, "assignee": {"id": 574}, "organization": {"id": 651}, "project": {"owner": {"id": 42}, "assignee": {"id": 800}, "organization": {"id": 943}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 137, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 429}, "assignee": {"id": 501}, "organization": {"id": 647}, "project": {"owner": {"id": 5}, "assignee": {"id": 868}, "organization": {"id": 909}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 244}, "user": {"role": "worker"}}}, "resource": {"id": 395, "owner": {"id": 488}, "assignee": {"id": 514}, "organization": {"id": 126}, "project": {"owner": {"id": 41}, "assignee": {"id": 847}, "organization": {"id": 936}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 163, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 429}, "assignee": {"id": 521}, "organization": {"id": 651}, "project": {"owner": {"id": 32}, "assignee": {"id": 850}, "organization": {"id": 959}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 193, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"id": 303, "owner": {"id": 431}, "assignee": {"id": 576}, "organization": {"id": 635}, "project": {"owner": {"id": 43}, "assignee": {"id": 851}, "organization": {"id": 982}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 452}, "assignee": {"id": 559}, "organization": {"id": 146}, "project": {"owner": {"id": 56}, "assignee": {"id": 862}, "organization": {"id": 904}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 412}, "assignee": {"id": 591}, "organization": {"id": 101}, "project": {"owner": {"id": 42}, "assignee": {"id": 890}, "organization": {"id": 943}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 189, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 501}, "organization": {"id": 189}, "project": {"owner": {"id": 17}, "assignee": {"id": 812}, "organization": {"id": 926}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"id": 342, "owner": {"id": 416}, "assignee": {"id": 521}, "organization": {"id": 637}, "project": {"owner": {"id": 35}, "assignee": {"id": 813}, "organization": {"id": 921}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 599}, "organization": {"id": 105}, "project": {"owner": {"id": 9}, "assignee": {"id": 843}, "organization": {"id": 922}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 95}, "user": {"role": "owner"}}}, "resource": {"id": 328, "owner": {"id": 437}, "assignee": {"id": 549}, "organization": {"id": 115}, "project": {"owner": {"id": 95}, "assignee": {"id": 890}, "organization": {"id": 951}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 492}, "assignee": {"id": 582}, "organization": {"id": 654}, "project": {"owner": {"id": 27}, "assignee": {"id": 824}, "organization": {"id": 909}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 353, "owner": {"id": 444}, "assignee": {"id": 594}, "organization": {"id": 693}, "project": {"owner": {"id": 11}, "assignee": {"id": 898}, "organization": {"id": 976}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 542}, "organization": {"id": 601}, "project": {"owner": {"id": 19}, "assignee": {"id": 803}, "organization": {"id": 902}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 490}, "assignee": {"id": 566}, "organization": {"id": 102}, "project": {"owner": {"id": 35}, "assignee": {"id": 841}, "organization": {"id": 996}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 181, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 539}, "organization": {"id": 670}, "project": {"owner": {"id": 1}, "assignee": {"id": 844}, "organization": {"id": 984}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 406}, "assignee": {"id": 594}, "organization": {"id": 610}, "project": {"owner": {"id": 38}, "assignee": {"id": 864}, "organization": {"id": 989}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 102, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 552}, "organization": {"id": 102}, "project": {"owner": {"id": 87}, "assignee": {"id": 817}, "organization": {"id": 984}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"id": 390, "owner": {"id": 429}, "assignee": {"id": 530}, "organization": {"id": 122}, "project": {"owner": {"id": 83}, "assignee": {"id": 823}, "organization": {"id": 952}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 123, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 503}, "organization": {"id": 123}, "project": {"owner": {"id": 29}, "assignee": {"id": 858}, "organization": {"id": 959}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 132, "owner": {"id": 238}, "user": {"role": "supervisor"}}}, "resource": {"id": 346, "owner": {"id": 456}, "assignee": {"id": 539}, "organization": {"id": 606}, "project": {"owner": {"id": 40}, "assignee": {"id": 845}, "organization": {"id": 996}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 557}, "organization": {"id": 162}, "project": {"owner": {"id": 80}, "assignee": {"id": 873}, "organization": {"id": 934}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 491}, "assignee": {"id": 503}, "organization": {"id": 169}, "project": {"owner": {"id": 88}, "assignee": {"id": 883}, "organization": {"id": 956}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 137, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 522}, "organization": {"id": 630}, "project": {"owner": {"id": 44}, "assignee": {"id": 804}, "organization": {"id": 988}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 433}, "assignee": {"id": 533}, "organization": {"id": 641}, "project": {"owner": {"id": 89}, "assignee": {"id": 884}, "organization": {"id": 959}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 137, "owner": {"id": 244}, "user": {"role": null}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 592}, "organization": {"id": 604}, "project": {"owner": {"id": 17}, "assignee": {"id": 865}, "organization": {"id": 944}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"id": 322, "owner": {"id": 474}, "assignee": {"id": 542}, "organization": {"id": 100}, "project": {"owner": {"id": 66}, "assignee": {"id": 849}, "organization": {"id": 940}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 509}, "organization": {"id": 664}, "project": {"owner": {"id": 44}, "assignee": {"id": 802}, "organization": {"id": 981}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"id": 312, "owner": {"id": 489}, "assignee": {"id": 596}, "organization": {"id": 642}, "project": {"owner": {"id": 9}, "assignee": {"id": 886}, "organization": {"id": 999}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 434}, "assignee": {"id": 515}, "organization": {"id": 177}, "project": {"owner": {"id": 48}, "assignee": {"id": 841}, "organization": {"id": 955}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 401}, "assignee": {"id": 542}, "organization": {"id": 193}, "project": {"owner": {"id": 735}, "assignee": {"id": 60}, "organization": {"id": 945}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 554}, "organization": {"id": 140}, "project": {"owner": {"id": 74}, "assignee": {"id": 873}, "organization": {"id": 971}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"id": 395, "owner": {"id": 499}, "assignee": {"id": 556}, "organization": {"id": 654}, "project": {"owner": {"id": 770}, "assignee": {"id": 26}, "organization": {"id": 958}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 472}, "assignee": {"id": 532}, "organization": {"id": 101}, "project": {"owner": {"id": 42}, "assignee": {"id": 892}, "organization": {"id": 975}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 71, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 356, "owner": {"id": 484}, "assignee": {"id": 500}, "organization": {"id": 125}, "project": {"owner": {"id": 757}, "assignee": {"id": 71}, "organization": {"id": 923}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 429}, "assignee": {"id": 557}, "organization": {"id": 612}, "project": {"owner": {"id": 87}, "assignee": {"id": 846}, "organization": {"id": 931}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 482}, "assignee": {"id": 582}, "organization": {"id": 609}, "project": {"owner": {"id": 743}, "assignee": {"id": 2}, "organization": {"id": 930}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 521}, "organization": {"id": 605}, "project": {"owner": {"id": 44}, "assignee": {"id": 813}, "organization": {"id": 977}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 103, "owner": {"id": 282}, "user": {"role": "supervisor"}}}, "resource": {"id": 310, "owner": {"id": 477}, "assignee": {"id": 536}, "organization": {"id": 103}, "project": {"owner": {"id": 768}, "assignee": {"id": 34}, "organization": {"id": 994}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 527}, "organization": {"id": 603}, "project": {"owner": {"id": 34}, "assignee": {"id": 821}, "organization": {"id": 964}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 310, "owner": {"id": 438}, "assignee": {"id": 515}, "organization": {"id": 659}, "project": {"owner": {"id": 713}, "assignee": {"id": 45}, "organization": {"id": 946}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 217}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 466}, "assignee": {"id": 537}, "organization": {"id": 188}, "project": {"owner": {"id": 10}, "assignee": {"id": 834}, "organization": {"id": 917}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 357, "owner": {"id": 498}, "assignee": {"id": 547}, "organization": {"id": 195}, "project": {"owner": {"id": 764}, "assignee": {"id": 60}, "organization": {"id": 973}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 278}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 519}, "organization": {"id": 119}, "project": {"owner": {"id": 6}, "assignee": {"id": 875}, "organization": {"id": 900}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": {"id": 190, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"id": 319, "owner": {"id": 471}, "assignee": {"id": 516}, "organization": {"id": 615}, "project": {"owner": {"id": 709}, "assignee": {"id": 12}, "organization": {"id": 999}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 516}, "organization": {"id": 169}, "project": {"owner": {"id": 15}, "assignee": {"id": 826}, "organization": {"id": 975}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 349, "owner": {"id": 465}, "assignee": {"id": 525}, "organization": {"id": 157}, "project": {"owner": {"id": 709}, "assignee": {"id": 96}, "organization": {"id": 900}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 588}, "organization": {"id": 623}, "project": {"owner": {"id": 83}, "assignee": {"id": 878}, "organization": {"id": 903}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 244}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 430}, "assignee": {"id": 549}, "organization": {"id": 660}, "project": {"owner": {"id": 751}, "assignee": {"id": 36}, "organization": {"id": 953}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 519}, "organization": {"id": 697}, "project": {"owner": {"id": 77}, "assignee": {"id": 888}, "organization": {"id": 927}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 459}, "assignee": {"id": 591}, "organization": {"id": 161}, "project": {"owner": {"id": 779}, "assignee": {"id": 86}, "organization": {"id": 940}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 127, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 540}, "organization": {"id": 629}, "project": {"owner": {"id": 67}, "assignee": {"id": 859}, "organization": {"id": 997}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 166, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 381, "owner": {"id": 437}, "assignee": {"id": 509}, "organization": {"id": 663}, "project": {"owner": {"id": 720}, "assignee": {"id": 11}, "organization": {"id": 934}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 541}, "organization": {"id": 152}, "project": {"owner": {"id": 59}, "assignee": {"id": 806}, "organization": {"id": 907}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 493}, "assignee": {"id": 508}, "organization": {"id": 192}, "project": {"owner": {"id": 765}, "assignee": {"id": 42}, "organization": {"id": 930}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 159, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 474}, "assignee": {"id": 511}, "organization": {"id": 159}, "project": {"owner": {"id": 39}, "assignee": {"id": 860}, "organization": {"id": 985}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 366, "owner": {"id": 478}, "assignee": {"id": 569}, "organization": {"id": 675}, "project": {"owner": {"id": 737}, "assignee": {"id": 69}, "organization": {"id": 984}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 492}, "assignee": {"id": 544}, "organization": {"id": 150}, "project": {"owner": {"id": 82}, "assignee": {"id": 821}, "organization": {"id": 984}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"id": 393, "owner": {"id": 466}, "assignee": {"id": 594}, "organization": {"id": 117}, "project": {"owner": {"id": 756}, "assignee": {"id": 48}, "organization": {"id": 908}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 474}, "assignee": {"id": 508}, "organization": {"id": 608}, "project": {"owner": {"id": 5}, "assignee": {"id": 834}, "organization": {"id": 934}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 420}, "assignee": {"id": 524}, "organization": {"id": 627}, "project": {"owner": {"id": 708}, "assignee": {"id": 83}, "organization": {"id": 943}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 546}, "organization": {"id": 690}, "project": {"owner": {"id": 42}, "assignee": {"id": 814}, "organization": {"id": 986}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 283}, "user": {"role": "worker"}}}, "resource": {"id": 312, "owner": {"id": 461}, "assignee": {"id": 549}, "organization": {"id": 185}, "project": {"owner": {"id": 746}, "assignee": {"id": 19}, "organization": {"id": 981}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 549}, "organization": {"id": 606}, "project": {"owner": {"id": 14}, "assignee": {"id": 884}, "organization": {"id": 918}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 427}, "assignee": {"id": 579}, "organization": {"id": 654}, "project": {"owner": {"id": 712}, "assignee": {"id": 8}, "organization": {"id": 901}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 209}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 576}, "organization": {"id": 161}, "project": {"owner": {"id": 50}, "assignee": {"id": 884}, "organization": {"id": 941}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"id": 311, "owner": {"id": 483}, "assignee": {"id": 510}, "organization": {"id": 165}, "project": {"owner": {"id": 706}, "assignee": {"id": 43}, "organization": {"id": 972}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 511}, "organization": {"id": 138}, "project": {"owner": {"id": 23}, "assignee": {"id": 862}, "organization": {"id": 901}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 130, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"id": 393, "owner": {"id": 445}, "assignee": {"id": 510}, "organization": {"id": 659}, "project": {"owner": {"id": 745}, "assignee": {"id": 34}, "organization": {"id": 911}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 526}, "organization": {"id": 112}, "project": {"owner": {"id": 4}, "assignee": {"id": 826}, "organization": {"id": 994}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 469}, "assignee": {"id": 523}, "organization": {"id": 173}, "project": {"owner": {"id": 792}, "assignee": {"id": 19}, "organization": {"id": 994}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 536}, "organization": {"id": 677}, "project": {"owner": {"id": 34}, "assignee": {"id": 830}, "organization": {"id": 983}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 105, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 498}, "assignee": {"id": 549}, "organization": {"id": 696}, "project": {"owner": {"id": 755}, "assignee": {"id": 41}, "organization": {"id": 952}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 500}, "organization": {"id": 647}, "project": {"owner": {"id": 79}, "assignee": {"id": 839}, "organization": {"id": 935}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"id": 332, "owner": {"id": 446}, "assignee": {"id": 554}, "organization": {"id": 153}, "project": {"owner": {"id": 711}, "assignee": {"id": 69}, "organization": {"id": 993}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 514}, "organization": {"id": 637}, "project": {"owner": {"id": 92}, "assignee": {"id": 801}, "organization": {"id": 957}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 300, "owner": {"id": 469}, "assignee": {"id": 593}, "organization": {"id": 698}, "project": {"owner": {"id": 761}, "assignee": {"id": 23}, "organization": {"id": 959}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 544}, "organization": {"id": 115}, "project": {"owner": {"id": 18}, "assignee": {"id": 814}, "organization": {"id": 923}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 336, "owner": {"id": 431}, "assignee": {"id": 527}, "organization": {"id": 198}, "project": {"owner": {"id": 793}, "assignee": {"id": 47}, "organization": {"id": 954}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 516}, "organization": {"id": 107}, "project": {"owner": {"id": 20}, "assignee": {"id": 802}, "organization": {"id": 929}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 391, "owner": {"id": 429}, "assignee": {"id": 595}, "organization": {"id": 623}, "project": {"owner": {"id": 748}, "assignee": {"id": 15}, "organization": {"id": 914}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"owner": {"id": 424}, "assignee": {"id": 570}, "organization": {"id": 188}, "project": {"owner": {"id": 20}, "assignee": {"id": 850}, "organization": {"id": 928}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 174, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 402}, "assignee": {"id": 504}, "organization": {"id": 174}, "project": {"owner": {"id": 717}, "assignee": {"id": 46}, "organization": {"id": 955}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 130, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"owner": {"id": 474}, "assignee": {"id": 565}, "organization": {"id": 693}, "project": {"owner": {"id": 20}, "assignee": {"id": 808}, "organization": {"id": 945}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 492}, "assignee": {"id": 592}, "organization": {"id": 606}, "project": {"owner": {"id": 777}, "assignee": {"id": 46}, "organization": {"id": 975}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 520}, "organization": {"id": 659}, "project": {"owner": {"id": 76}, "assignee": {"id": 893}, "organization": {"id": 964}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 456}, "assignee": {"id": 519}, "organization": {"id": 186}, "project": {"owner": {"id": 709}, "assignee": {"id": 30}, "organization": {"id": 972}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"owner": {"id": 424}, "assignee": {"id": 582}, "organization": {"id": 660}, "project": {"owner": {"id": 80}, "assignee": {"id": 867}, "organization": {"id": 940}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 81, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 239}, "user": {"role": null}}}, "resource": {"id": 342, "owner": {"id": 466}, "assignee": {"id": 528}, "organization": {"id": 665}, "project": {"owner": {"id": 783}, "assignee": {"id": 81}, "organization": {"id": 923}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 572}, "organization": {"id": 160}, "project": {"owner": {"id": 4}, "assignee": {"id": 893}, "organization": {"id": 942}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"id": 348, "owner": {"id": 401}, "assignee": {"id": 516}, "organization": {"id": 197}, "project": {"owner": {"id": 768}, "assignee": {"id": 52}, "organization": {"id": 956}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 596}, "organization": {"id": 188}, "project": {"owner": {"id": 27}, "assignee": {"id": 861}, "organization": {"id": 988}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 96, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 319, "owner": {"id": 456}, "assignee": {"id": 580}, "organization": {"id": 696}, "project": {"owner": {"id": 748}, "assignee": {"id": 96}, "organization": {"id": 996}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 10}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 586}, "organization": {"id": 100}, "project": {"owner": {"id": 10}, "assignee": {"id": 846}, "organization": {"id": 992}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 439}, "assignee": {"id": 560}, "organization": {"id": 177}, "project": {"owner": {"id": 798}, "assignee": {"id": 91}, "organization": {"id": 957}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 527}, "organization": {"id": 680}, "project": {"owner": {"id": 99}, "assignee": {"id": 867}, "organization": {"id": 939}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 107, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 452}, "assignee": {"id": 527}, "organization": {"id": 641}, "project": {"owner": {"id": 729}, "assignee": {"id": 57}, "organization": {"id": 994}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 110, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 561}, "organization": {"id": 608}, "project": {"owner": {"id": 19}, "assignee": {"id": 815}, "organization": {"id": 979}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 417}, "assignee": {"id": 536}, "organization": {"id": 118}, "project": {"owner": {"id": 797}, "assignee": {"id": 86}, "organization": {"id": 917}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 10}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 584}, "organization": {"id": 633}, "project": {"owner": {"id": 10}, "assignee": {"id": 827}, "organization": {"id": 963}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"id": 305, "owner": {"id": 446}, "assignee": {"id": 571}, "organization": {"id": 636}, "project": {"owner": {"id": 770}, "assignee": {"id": 42}, "organization": {"id": 939}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 535}, "organization": {"id": 157}, "project": {"owner": {"id": 97}, "assignee": {"id": 832}, "organization": {"id": 921}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 103, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 388, "owner": {"id": 434}, "assignee": {"id": 552}, "organization": {"id": 103}, "project": {"owner": {"id": 788}, "assignee": {"id": 15}, "organization": {"id": 945}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 227}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 539}, "organization": {"id": 152}, "project": {"owner": {"id": 36}, "assignee": {"id": 828}, "organization": {"id": 945}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 383, "owner": {"id": 401}, "assignee": {"id": 528}, "organization": {"id": 648}, "project": {"owner": {"id": 751}, "assignee": {"id": 81}, "organization": {"id": 991}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 534}, "organization": {"id": 168}, "project": {"owner": {"id": 64}, "assignee": {"id": 819}, "organization": {"id": 956}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 383, "owner": {"id": 446}, "assignee": {"id": 530}, "organization": {"id": 137}, "project": {"owner": {"id": 771}, "assignee": {"id": 17}, "organization": {"id": 958}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 563}, "organization": {"id": 617}, "project": {"owner": {"id": 10}, "assignee": {"id": 833}, "organization": {"id": 944}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 430}, "assignee": {"id": 519}, "organization": {"id": 642}, "project": {"owner": {"id": 793}, "assignee": {"id": 91}, "organization": {"id": 993}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 563}, "organization": {"id": 667}, "project": {"owner": {"id": 27}, "assignee": {"id": 807}, "organization": {"id": 938}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 45}, "user": {"role": "owner"}}}, "resource": {"id": 317, "owner": {"id": 451}, "assignee": {"id": 506}, "organization": {"id": 100}, "project": {"owner": {"id": 799}, "assignee": {"id": 45}, "organization": {"id": 974}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 510}, "organization": {"id": 634}, "project": {"owner": {"id": 78}, "assignee": {"id": 875}, "organization": {"id": 911}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 403}, "assignee": {"id": 599}, "organization": {"id": 680}, "project": {"owner": {"id": 777}, "assignee": {"id": 62}, "organization": {"id": 968}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 434}, "assignee": {"id": 556}, "organization": {"id": 124}, "project": {"owner": {"id": 56}, "assignee": {"id": 870}, "organization": {"id": 983}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 270}, "user": {"role": "maintainer"}}}, "resource": {"id": 331, "owner": {"id": 410}, "assignee": {"id": 553}, "organization": {"id": 166}, "project": {"owner": {"id": 730}, "assignee": {"id": 17}, "organization": {"id": 904}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 590}, "organization": {"id": 178}, "project": {"owner": {"id": 46}, "assignee": {"id": 843}, "organization": {"id": 904}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 323, "owner": {"id": 415}, "assignee": {"id": 564}, "organization": {"id": 669}, "project": {"owner": {"id": 766}, "assignee": {"id": 1}, "organization": {"id": 920}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 509}, "organization": {"id": 168}, "project": {"owner": {"id": 80}, "assignee": {"id": 854}, "organization": {"id": 969}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 305, "owner": {"id": 410}, "assignee": {"id": 568}, "organization": {"id": 143}, "project": {"owner": {"id": 769}, "assignee": {"id": 88}, "organization": {"id": 968}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 553}, "organization": {"id": 665}, "project": {"owner": {"id": 7}, "assignee": {"id": 819}, "organization": {"id": 947}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 359, "owner": {"id": 444}, "assignee": {"id": 593}, "organization": {"id": 654}, "project": {"owner": {"id": 785}, "assignee": {"id": 89}, "organization": {"id": 903}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 404}, "assignee": {"id": 539}, "organization": {"id": 628}, "project": {"owner": {"id": 96}, "assignee": {"id": 860}, "organization": {"id": 940}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"id": 351, "owner": {"id": 439}, "assignee": {"id": 511}, "organization": {"id": 161}, "project": {"owner": {"id": 778}, "assignee": {"id": 69}, "organization": {"id": 958}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 592}, "organization": {"id": 669}, "project": {"owner": {"id": 31}, "assignee": {"id": 802}, "organization": {"id": 992}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 388, "owner": {"id": 455}, "assignee": {"id": 567}, "organization": {"id": 600}, "project": {"owner": {"id": 744}, "assignee": {"id": 40}, "organization": {"id": 924}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 576}, "organization": {"id": 155}, "project": {"owner": {"id": 51}, "assignee": {"id": 864}, "organization": {"id": 929}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 427}, "assignee": {"id": 501}, "organization": {"id": 180}, "project": {"owner": {"id": 774}, "assignee": {"id": 22}, "organization": {"id": 933}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 473}, "assignee": {"id": 522}, "organization": {"id": 156}, "project": {"owner": {"id": 21}, "assignee": {"id": 827}, "organization": {"id": 916}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 451}, "assignee": {"id": 539}, "organization": {"id": 699}, "project": {"owner": {"id": 779}, "assignee": {"id": 70}, "organization": {"id": 989}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 473}, "assignee": {"id": 583}, "organization": {"id": 157}, "project": {"owner": {"id": 99}, "assignee": {"id": 807}, "organization": {"id": 902}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 92}, "user": {"role": "owner"}}}, "resource": {"id": 334, "owner": {"id": 92}, "assignee": {"id": 536}, "organization": {"id": 176}, "project": {"owner": {"id": 729}, "assignee": {"id": 868}, "organization": {"id": 942}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 149, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 590}, "organization": {"id": 671}, "project": {"owner": {"id": 24}, "assignee": {"id": 877}, "organization": {"id": 957}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 172, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"id": 324, "owner": {"id": 17}, "assignee": {"id": 544}, "organization": {"id": 609}, "project": {"owner": {"id": 756}, "assignee": {"id": 845}, "organization": {"id": 965}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 569}, "organization": {"id": 657}, "project": {"owner": {"id": 40}, "assignee": {"id": 811}, "organization": {"id": 972}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"id": 332, "owner": {"id": 95}, "assignee": {"id": 502}, "organization": {"id": 159}, "project": {"owner": {"id": 705}, "assignee": {"id": 816}, "organization": {"id": 983}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 110, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 483}, "assignee": {"id": 500}, "organization": {"id": 688}, "project": {"owner": {"id": 69}, "assignee": {"id": 816}, "organization": {"id": 922}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 325, "owner": {"id": 87}, "assignee": {"id": 543}, "organization": {"id": 688}, "project": {"owner": {"id": 747}, "assignee": {"id": 842}, "organization": {"id": 902}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 223}, "user": {"role": null}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 529}, "organization": {"id": 162}, "project": {"owner": {"id": 10}, "assignee": {"id": 849}, "organization": {"id": 924}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 68}, "assignee": {"id": 519}, "organization": {"id": 142}, "project": {"owner": {"id": 776}, "assignee": {"id": 821}, "organization": {"id": 913}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 224}, "user": {"role": null}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 579}, "organization": {"id": 197}, "project": {"owner": {"id": 82}, "assignee": {"id": 881}, "organization": {"id": 986}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 197, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 352, "owner": {"id": 70}, "assignee": {"id": 572}, "organization": {"id": 673}, "project": {"owner": {"id": 722}, "assignee": {"id": 823}, "organization": {"id": 993}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 581}, "organization": {"id": 121}, "project": {"owner": {"id": 29}, "assignee": {"id": 856}, "organization": {"id": 915}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 328, "owner": {"id": 21}, "assignee": {"id": 505}, "organization": {"id": 183}, "project": {"owner": {"id": 732}, "assignee": {"id": 829}, "organization": {"id": 923}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 270}, "user": {"role": null}}}, "resource": {"owner": {"id": 477}, "assignee": {"id": 588}, "organization": {"id": 605}, "project": {"owner": {"id": 96}, "assignee": {"id": 885}, "organization": {"id": 985}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"id": 374, "owner": {"id": 6}, "assignee": {"id": 545}, "organization": {"id": 677}, "project": {"owner": {"id": 704}, "assignee": {"id": 806}, "organization": {"id": 937}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 526}, "organization": {"id": 624}, "project": {"owner": {"id": 64}, "assignee": {"id": 842}, "organization": {"id": 909}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 23}, "assignee": {"id": 587}, "organization": {"id": 185}, "project": {"owner": {"id": 742}, "assignee": {"id": 891}, "organization": {"id": 971}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 530}, "organization": {"id": 616}, "project": {"owner": {"id": 13}, "assignee": {"id": 828}, "organization": {"id": 940}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 73}, "assignee": {"id": 559}, "organization": {"id": 618}, "project": {"owner": {"id": 754}, "assignee": {"id": 835}, "organization": {"id": 990}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 472}, "assignee": {"id": 521}, "organization": {"id": 110}, "project": {"owner": {"id": 6}, "assignee": {"id": 873}, "organization": {"id": 969}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 333, "owner": {"id": 7}, "assignee": {"id": 517}, "organization": {"id": 114}, "project": {"owner": {"id": 728}, "assignee": {"id": 880}, "organization": {"id": 938}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": {"id": 193, "owner": {"id": 72}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 463}, "assignee": {"id": 522}, "organization": {"id": 193}, "project": {"owner": {"id": 72}, "assignee": {"id": 871}, "organization": {"id": 937}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 323, "owner": {"id": 40}, "assignee": {"id": 544}, "organization": {"id": 671}, "project": {"owner": {"id": 717}, "assignee": {"id": 827}, "organization": {"id": 963}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 591}, "organization": {"id": 101}, "project": {"owner": {"id": 62}, "assignee": {"id": 883}, "organization": {"id": 906}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 329, "owner": {"id": 26}, "assignee": {"id": 539}, "organization": {"id": 180}, "project": {"owner": {"id": 790}, "assignee": {"id": 895}, "organization": {"id": 987}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 45}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 544}, "organization": {"id": 636}, "project": {"owner": {"id": 45}, "assignee": {"id": 840}, "organization": {"id": 977}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"id": 331, "owner": {"id": 72}, "assignee": {"id": 521}, "organization": {"id": 691}, "project": {"owner": {"id": 728}, "assignee": {"id": 887}, "organization": {"id": 959}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 442}, "assignee": {"id": 558}, "organization": {"id": 602}, "project": {"owner": {"id": 85}, "assignee": {"id": 854}, "organization": {"id": 983}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"id": 374, "owner": {"id": 71}, "assignee": {"id": 585}, "organization": {"id": 169}, "project": {"owner": {"id": 783}, "assignee": {"id": 836}, "organization": {"id": 959}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 25, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 595}, "organization": {"id": 611}, "project": {"owner": {"id": 25}, "assignee": {"id": 855}, "organization": {"id": 911}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 322, "owner": {"id": 33}, "assignee": {"id": 562}, "organization": {"id": 683}, "project": {"owner": {"id": 758}, "assignee": {"id": 827}, "organization": {"id": 929}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 409}, "assignee": {"id": 514}, "organization": {"id": 178}, "project": {"owner": {"id": 69}, "assignee": {"id": 802}, "organization": {"id": 951}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"id": 358, "owner": {"id": 33}, "assignee": {"id": 530}, "organization": {"id": 118}, "project": {"owner": {"id": 730}, "assignee": {"id": 862}, "organization": {"id": 970}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 473}, "assignee": {"id": 520}, "organization": {"id": 180}, "project": {"owner": {"id": 36}, "assignee": {"id": 805}, "organization": {"id": 951}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 343, "owner": {"id": 78}, "assignee": {"id": 505}, "organization": {"id": 674}, "project": {"owner": {"id": 754}, "assignee": {"id": 856}, "organization": {"id": 945}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 112, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 516}, "organization": {"id": 112}, "project": {"owner": {"id": 35}, "assignee": {"id": 857}, "organization": {"id": 954}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 311, "owner": {"id": 71}, "assignee": {"id": 590}, "organization": {"id": 124}, "project": {"owner": {"id": 716}, "assignee": {"id": 804}, "organization": {"id": 938}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 483}, "assignee": {"id": 517}, "organization": {"id": 689}, "project": {"owner": {"id": 0}, "assignee": {"id": 844}, "organization": {"id": 954}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 354, "owner": {"id": 95}, "assignee": {"id": 572}, "organization": {"id": 662}, "project": {"owner": {"id": 763}, "assignee": {"id": 828}, "organization": {"id": 984}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 227}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 492}, "assignee": {"id": 570}, "organization": {"id": 672}, "project": {"owner": {"id": 14}, "assignee": {"id": 845}, "organization": {"id": 968}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"id": 328, "owner": {"id": 43}, "assignee": {"id": 525}, "organization": {"id": 162}, "project": {"owner": {"id": 741}, "assignee": {"id": 856}, "organization": {"id": 999}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 297}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 552}, "organization": {"id": 634}, "project": {"owner": {"id": 16}, "assignee": {"id": 801}, "organization": {"id": 968}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 93, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"id": 380, "owner": {"id": 93}, "assignee": {"id": 542}, "organization": {"id": 612}, "project": {"owner": {"id": 786}, "assignee": {"id": 866}, "organization": {"id": 927}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 238}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 577}, "organization": {"id": 109}, "project": {"owner": {"id": 99}, "assignee": {"id": 838}, "organization": {"id": 917}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 362, "owner": {"id": 75}, "assignee": {"id": 526}, "organization": {"id": 187}, "project": {"owner": {"id": 743}, "assignee": {"id": 855}, "organization": {"id": 953}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 564}, "organization": {"id": 142}, "project": {"owner": {"id": 52}, "assignee": {"id": 815}, "organization": {"id": 935}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 7}, "assignee": {"id": 592}, "organization": {"id": 670}, "project": {"owner": {"id": 731}, "assignee": {"id": 837}, "organization": {"id": 903}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 579}, "organization": {"id": 109}, "project": {"owner": {"id": 28}, "assignee": {"id": 802}, "organization": {"id": 989}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 94}, "assignee": {"id": 553}, "organization": {"id": 198}, "project": {"owner": {"id": 770}, "assignee": {"id": 825}, "organization": {"id": 993}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 245}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 474}, "assignee": {"id": 525}, "organization": {"id": 659}, "project": {"owner": {"id": 79}, "assignee": {"id": 858}, "organization": {"id": 953}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 238}, "user": {"role": "supervisor"}}}, "resource": {"id": 367, "owner": {"id": 95}, "assignee": {"id": 555}, "organization": {"id": 604}, "project": {"owner": {"id": 749}, "assignee": {"id": 800}, "organization": {"id": 902}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 589}, "organization": {"id": 673}, "project": {"owner": {"id": 59}, "assignee": {"id": 893}, "organization": {"id": 964}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"id": 365, "owner": {"id": 82}, "assignee": {"id": 535}, "organization": {"id": 158}, "project": {"owner": {"id": 747}, "assignee": {"id": 808}, "organization": {"id": 944}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 199, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 510}, "organization": {"id": 613}, "project": {"owner": {"id": 85}, "assignee": {"id": 890}, "organization": {"id": 944}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 150, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 18}, "assignee": {"id": 566}, "organization": {"id": 603}, "project": {"owner": {"id": 794}, "assignee": {"id": 809}, "organization": {"id": 979}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 196, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 583}, "organization": {"id": 196}, "project": {"owner": {"id": 5}, "assignee": {"id": 841}, "organization": {"id": 998}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 316, "owner": {"id": 65}, "assignee": {"id": 522}, "organization": {"id": 106}, "project": {"owner": {"id": 763}, "assignee": {"id": 861}, "organization": {"id": 916}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 595}, "organization": {"id": 162}, "project": {"owner": {"id": 1}, "assignee": {"id": 895}, "organization": {"id": 984}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 65}, "assignee": {"id": 547}, "organization": {"id": 610}, "project": {"owner": {"id": 750}, "assignee": {"id": 870}, "organization": {"id": 927}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 594}, "organization": {"id": 114}, "project": {"owner": {"id": 90}, "assignee": {"id": 830}, "organization": {"id": 920}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"id": 391, "owner": {"id": 98}, "assignee": {"id": 518}, "organization": {"id": 174}, "project": {"owner": {"id": 730}, "assignee": {"id": 894}, "organization": {"id": 904}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 479}, "assignee": {"id": 534}, "organization": {"id": 629}, "project": {"owner": {"id": 46}, "assignee": {"id": 817}, "organization": {"id": 950}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 24}, "assignee": {"id": 500}, "organization": {"id": 645}, "project": {"owner": {"id": 734}, "assignee": {"id": 834}, "organization": {"id": 946}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 209}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 554}, "organization": {"id": 619}, "project": {"owner": {"id": 38}, "assignee": {"id": 859}, "organization": {"id": 976}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 290}, "user": {"role": "maintainer"}}}, "resource": {"id": 383, "owner": {"id": 27}, "assignee": {"id": 563}, "organization": {"id": 101}, "project": {"owner": {"id": 735}, "assignee": {"id": 818}, "organization": {"id": 912}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 573}, "organization": {"id": 681}, "project": {"owner": {"id": 83}, "assignee": {"id": 834}, "organization": {"id": 986}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 45}, "assignee": {"id": 572}, "organization": {"id": 614}, "project": {"owner": {"id": 779}, "assignee": {"id": 892}, "organization": {"id": 982}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 569}, "organization": {"id": 146}, "project": {"owner": {"id": 4}, "assignee": {"id": 890}, "organization": {"id": 916}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 100, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 31}, "assignee": {"id": 520}, "organization": {"id": 100}, "project": {"owner": {"id": 753}, "assignee": {"id": 878}, "organization": {"id": 989}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 529}, "organization": {"id": 121}, "project": {"owner": {"id": 40}, "assignee": {"id": 817}, "organization": {"id": 966}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"id": 395, "owner": {"id": 78}, "assignee": {"id": 515}, "organization": {"id": 642}, "project": {"owner": {"id": 741}, "assignee": {"id": 895}, "organization": {"id": 949}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 516}, "organization": {"id": 163}, "project": {"owner": {"id": 84}, "assignee": {"id": 851}, "organization": {"id": 938}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 6}, "assignee": {"id": 598}, "organization": {"id": 126}, "project": {"owner": {"id": 765}, "assignee": {"id": 859}, "organization": {"id": 997}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 592}, "organization": {"id": 654}, "project": {"owner": {"id": 64}, "assignee": {"id": 804}, "organization": {"id": 974}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 37}, "assignee": {"id": 577}, "organization": {"id": 615}, "project": {"owner": {"id": 785}, "assignee": {"id": 894}, "organization": {"id": 942}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 567}, "organization": {"id": 662}, "project": {"owner": {"id": 54}, "assignee": {"id": 816}, "organization": {"id": 917}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 237}, "user": {"role": null}}}, "resource": {"id": 361, "owner": {"id": 60}, "assignee": {"id": 536}, "organization": {"id": 110}, "project": {"owner": {"id": 771}, "assignee": {"id": 800}, "organization": {"id": 956}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"owner": {"id": 483}, "assignee": {"id": 550}, "organization": {"id": 645}, "project": {"owner": {"id": 92}, "assignee": {"id": 861}, "organization": {"id": 946}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"id": 320, "owner": {"id": 71}, "assignee": {"id": 502}, "organization": {"id": 656}, "project": {"owner": {"id": 703}, "assignee": {"id": 811}, "organization": {"id": 900}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 536}, "organization": {"id": 180}, "project": {"owner": {"id": 97}, "assignee": {"id": 862}, "organization": {"id": 974}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 1}, "assignee": {"id": 508}, "organization": {"id": 168}, "project": {"owner": {"id": 732}, "assignee": {"id": 830}, "organization": {"id": 987}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 564}, "organization": {"id": 196}, "project": {"owner": {"id": 34}, "assignee": {"id": 801}, "organization": {"id": 947}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 70}, "assignee": {"id": 543}, "organization": {"id": 680}, "project": {"owner": {"id": 723}, "assignee": {"id": 821}, "organization": {"id": 915}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 585}, "organization": {"id": 102}, "project": {"owner": {"id": 52}, "assignee": {"id": 886}, "organization": {"id": 975}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"id": 328, "owner": {"id": 56}, "assignee": {"id": 550}, "organization": {"id": 197}, "project": {"owner": {"id": 755}, "assignee": {"id": 879}, "organization": {"id": 925}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 28}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 512}, "organization": {"id": 648}, "project": {"owner": {"id": 28}, "assignee": {"id": 886}, "organization": {"id": 996}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 8}, "assignee": {"id": 589}, "organization": {"id": 621}, "project": {"owner": {"id": 746}, "assignee": {"id": 882}, "organization": {"id": 929}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": {"id": 142, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 552}, "organization": {"id": 625}, "project": {"owner": {"id": 47}, "assignee": {"id": 878}, "organization": {"id": 900}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 4}, "assignee": {"id": 558}, "organization": {"id": 108}, "project": {"owner": {"id": 793}, "assignee": {"id": 802}, "organization": {"id": 945}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 107, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 426}, "assignee": {"id": 568}, "organization": {"id": 667}, "project": {"owner": {"id": 68}, "assignee": {"id": 869}, "organization": {"id": 951}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 265}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 87}, "assignee": {"id": 596}, "organization": {"id": 616}, "project": {"owner": {"id": 797}, "assignee": {"id": 856}, "organization": {"id": 974}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 554}, "organization": {"id": 192}, "project": {"owner": {"id": 72}, "assignee": {"id": 896}, "organization": {"id": 991}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 85}, "assignee": {"id": 518}, "organization": {"id": 179}, "project": {"owner": {"id": 766}, "assignee": {"id": 885}, "organization": {"id": 925}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 586}, "organization": {"id": 101}, "project": {"owner": {"id": 27}, "assignee": {"id": 888}, "organization": {"id": 914}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 8}, "assignee": {"id": 578}, "organization": {"id": 634}, "project": {"owner": {"id": 763}, "assignee": {"id": 872}, "organization": {"id": 979}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 442}, "assignee": {"id": 510}, "organization": {"id": 193}, "project": {"owner": {"id": 66}, "assignee": {"id": 856}, "organization": {"id": 920}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 225}, "user": {"role": null}}}, "resource": {"id": 378, "owner": {"id": 63}, "assignee": {"id": 546}, "organization": {"id": 136}, "project": {"owner": {"id": 762}, "assignee": {"id": 852}, "organization": {"id": 963}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 59, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 550}, "organization": {"id": 610}, "project": {"owner": {"id": 59}, "assignee": {"id": 878}, "organization": {"id": 991}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"id": 393, "owner": {"id": 94}, "assignee": {"id": 576}, "organization": {"id": 682}, "project": {"owner": {"id": 786}, "assignee": {"id": 876}, "organization": {"id": 963}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 466}, "assignee": {"id": 550}, "organization": {"id": 661}, "project": {"owner": {"id": 47}, "assignee": {"id": 810}, "organization": {"id": 947}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 8}, "user": {"role": "owner"}}}, "resource": {"id": 325, "owner": {"id": 411}, "assignee": {"id": 8}, "organization": {"id": 143}, "project": {"owner": {"id": 798}, "assignee": {"id": 856}, "organization": {"id": 979}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 508}, "organization": {"id": 629}, "project": {"owner": {"id": 89}, "assignee": {"id": 873}, "organization": {"id": 946}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"id": 317, "owner": {"id": 460}, "assignee": {"id": 35}, "organization": {"id": 652}, "project": {"owner": {"id": 764}, "assignee": {"id": 861}, "organization": {"id": 985}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 599}, "organization": {"id": 133}, "project": {"owner": {"id": 80}, "assignee": {"id": 868}, "organization": {"id": 934}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 485}, "assignee": {"id": 41}, "organization": {"id": 193}, "project": {"owner": {"id": 716}, "assignee": {"id": 825}, "organization": {"id": 990}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 482}, "assignee": {"id": 584}, "organization": {"id": 124}, "project": {"owner": {"id": 24}, "assignee": {"id": 807}, "organization": {"id": 912}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 116, "owner": {"id": 223}, "user": {"role": "maintainer"}}}, "resource": {"id": 349, "owner": {"id": 464}, "assignee": {"id": 49}, "organization": {"id": 688}, "project": {"owner": {"id": 770}, "assignee": {"id": 819}, "organization": {"id": 951}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 515}, "organization": {"id": 186}, "project": {"owner": {"id": 92}, "assignee": {"id": 862}, "organization": {"id": 962}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 119, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"id": 310, "owner": {"id": 431}, "assignee": {"id": 91}, "organization": {"id": 119}, "project": {"owner": {"id": 709}, "assignee": {"id": 850}, "organization": {"id": 910}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 557}, "organization": {"id": 635}, "project": {"owner": {"id": 46}, "assignee": {"id": 842}, "organization": {"id": 986}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 450}, "assignee": {"id": 89}, "organization": {"id": 676}, "project": {"owner": {"id": 780}, "assignee": {"id": 860}, "organization": {"id": 938}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 573}, "organization": {"id": 679}, "project": {"owner": {"id": 19}, "assignee": {"id": 877}, "organization": {"id": 908}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 472}, "assignee": {"id": 36}, "organization": {"id": 164}, "project": {"owner": {"id": 712}, "assignee": {"id": 855}, "organization": {"id": 948}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 595}, "organization": {"id": 655}, "project": {"owner": {"id": 12}, "assignee": {"id": 814}, "organization": {"id": 918}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 76, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 281}, "user": {"role": "worker"}}}, "resource": {"id": 396, "owner": {"id": 442}, "assignee": {"id": 76}, "organization": {"id": 646}, "project": {"owner": {"id": 767}, "assignee": {"id": 867}, "organization": {"id": 944}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 485}, "assignee": {"id": 568}, "organization": {"id": 183}, "project": {"owner": {"id": 44}, "assignee": {"id": 845}, "organization": {"id": 921}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 493}, "assignee": {"id": 9}, "organization": {"id": 171}, "project": {"owner": {"id": 749}, "assignee": {"id": 814}, "organization": {"id": 910}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 550}, "organization": {"id": 175}, "project": {"owner": {"id": 21}, "assignee": {"id": 865}, "organization": {"id": 951}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 380, "owner": {"id": 494}, "assignee": {"id": 65}, "organization": {"id": 614}, "project": {"owner": {"id": 739}, "assignee": {"id": 891}, "organization": {"id": 908}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 535}, "organization": {"id": 119}, "project": {"owner": {"id": 45}, "assignee": {"id": 899}, "organization": {"id": 997}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"id": 343, "owner": {"id": 440}, "assignee": {"id": 50}, "organization": {"id": 101}, "project": {"owner": {"id": 712}, "assignee": {"id": 854}, "organization": {"id": 974}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 424}, "assignee": {"id": 562}, "organization": {"id": 667}, "project": {"owner": {"id": 65}, "assignee": {"id": 820}, "organization": {"id": 923}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 441}, "assignee": {"id": 70}, "organization": {"id": 651}, "project": {"owner": {"id": 771}, "assignee": {"id": 811}, "organization": {"id": 922}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 536}, "organization": {"id": 662}, "project": {"owner": {"id": 44}, "assignee": {"id": 847}, "organization": {"id": 930}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"id": 368, "owner": {"id": 494}, "assignee": {"id": 59}, "organization": {"id": 163}, "project": {"owner": {"id": 713}, "assignee": {"id": 881}, "organization": {"id": 952}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 558}, "organization": {"id": 653}, "project": {"owner": {"id": 67}, "assignee": {"id": 867}, "organization": {"id": 976}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"id": 340, "owner": {"id": 444}, "assignee": {"id": 51}, "organization": {"id": 691}, "project": {"owner": {"id": 705}, "assignee": {"id": 889}, "organization": {"id": 914}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 541}, "organization": {"id": 185}, "project": {"owner": {"id": 9}, "assignee": {"id": 897}, "organization": {"id": 965}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 387, "owner": {"id": 475}, "assignee": {"id": 39}, "organization": {"id": 198}, "project": {"owner": {"id": 720}, "assignee": {"id": 898}, "organization": {"id": 922}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 593}, "organization": {"id": 119}, "project": {"owner": {"id": 49}, "assignee": {"id": 801}, "organization": {"id": 914}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 423}, "assignee": {"id": 29}, "organization": {"id": 657}, "project": {"owner": {"id": 759}, "assignee": {"id": 869}, "organization": {"id": 935}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"owner": {"id": 483}, "assignee": {"id": 534}, "organization": {"id": 137}, "project": {"owner": {"id": 88}, "assignee": {"id": 898}, "organization": {"id": 989}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"id": 342, "owner": {"id": 412}, "assignee": {"id": 17}, "organization": {"id": 156}, "project": {"owner": {"id": 775}, "assignee": {"id": 859}, "organization": {"id": 939}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 41, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 523}, "organization": {"id": 608}, "project": {"owner": {"id": 41}, "assignee": {"id": 892}, "organization": {"id": 917}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"id": 333, "owner": {"id": 468}, "assignee": {"id": 33}, "organization": {"id": 626}, "project": {"owner": {"id": 769}, "assignee": {"id": 893}, "organization": {"id": 918}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 154, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 542}, "organization": {"id": 671}, "project": {"owner": {"id": 98}, "assignee": {"id": 809}, "organization": {"id": 960}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"id": 388, "owner": {"id": 407}, "assignee": {"id": 69}, "organization": {"id": 161}, "project": {"owner": {"id": 793}, "assignee": {"id": 863}, "organization": {"id": 987}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 523}, "organization": {"id": 676}, "project": {"owner": {"id": 7}, "assignee": {"id": 845}, "organization": {"id": 992}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 437}, "assignee": {"id": 36}, "organization": {"id": 691}, "project": {"owner": {"id": 710}, "assignee": {"id": 811}, "organization": {"id": 917}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 64}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 534}, "organization": {"id": 106}, "project": {"owner": {"id": 732}, "assignee": {"id": 64}, "organization": {"id": 947}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"id": 374, "owner": {"id": 498}, "assignee": {"id": 23}, "organization": {"id": 160}, "project": {"owner": {"id": 768}, "assignee": {"id": 814}, "organization": {"id": 948}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 116, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 557}, "organization": {"id": 116}, "project": {"owner": {"id": 796}, "assignee": {"id": 48}, "organization": {"id": 972}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 376, "owner": {"id": 459}, "assignee": {"id": 27}, "organization": {"id": 661}, "project": {"owner": {"id": 741}, "assignee": {"id": 825}, "organization": {"id": 984}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 585}, "organization": {"id": 194}, "project": {"owner": {"id": 763}, "assignee": {"id": 39}, "organization": {"id": 911}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 492}, "assignee": {"id": 76}, "organization": {"id": 171}, "project": {"owner": {"id": 793}, "assignee": {"id": 815}, "organization": {"id": 932}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 547}, "organization": {"id": 652}, "project": {"owner": {"id": 738}, "assignee": {"id": 48}, "organization": {"id": 966}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 81, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 388, "owner": {"id": 434}, "assignee": {"id": 81}, "organization": {"id": 622}, "project": {"owner": {"id": 794}, "assignee": {"id": 888}, "organization": {"id": 964}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 529}, "organization": {"id": 657}, "project": {"owner": {"id": 737}, "assignee": {"id": 93}, "organization": {"id": 940}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 128, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 485}, "assignee": {"id": 65}, "organization": {"id": 128}, "project": {"owner": {"id": 770}, "assignee": {"id": 837}, "organization": {"id": 949}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 549}, "organization": {"id": 682}, "project": {"owner": {"id": 779}, "assignee": {"id": 63}, "organization": {"id": 933}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"id": 337, "owner": {"id": 458}, "assignee": {"id": 44}, "organization": {"id": 687}, "project": {"owner": {"id": 795}, "assignee": {"id": 849}, "organization": {"id": 973}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 589}, "organization": {"id": 157}, "project": {"owner": {"id": 705}, "assignee": {"id": 70}, "organization": {"id": 996}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 370, "owner": {"id": 475}, "assignee": {"id": 5}, "organization": {"id": 169}, "project": {"owner": {"id": 710}, "assignee": {"id": 825}, "organization": {"id": 905}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 50, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 543}, "organization": {"id": 182}, "project": {"owner": {"id": 757}, "assignee": {"id": 50}, "organization": {"id": 933}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"id": 378, "owner": {"id": 488}, "assignee": {"id": 67}, "organization": {"id": 634}, "project": {"owner": {"id": 703}, "assignee": {"id": 870}, "organization": {"id": 949}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 428}, "assignee": {"id": 563}, "organization": {"id": 168}, "project": {"owner": {"id": 789}, "assignee": {"id": 80}, "organization": {"id": 944}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": {"id": 128, "owner": {"id": 266}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 401}, "assignee": {"id": 7}, "organization": {"id": 128}, "project": {"owner": {"id": 769}, "assignee": {"id": 885}, "organization": {"id": 936}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 116, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 409}, "assignee": {"id": 545}, "organization": {"id": 640}, "project": {"owner": {"id": 701}, "assignee": {"id": 78}, "organization": {"id": 920}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 286}, "user": {"role": null}}}, "resource": {"id": 356, "owner": {"id": 496}, "assignee": {"id": 37}, "organization": {"id": 620}, "project": {"owner": {"id": 714}, "assignee": {"id": 877}, "organization": {"id": 907}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 426}, "assignee": {"id": 518}, "organization": {"id": 609}, "project": {"owner": {"id": 705}, "assignee": {"id": 52}, "organization": {"id": 902}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 495}, "assignee": {"id": 81}, "organization": {"id": 149}, "project": {"owner": {"id": 744}, "assignee": {"id": 878}, "organization": {"id": 962}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 190, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 535}, "organization": {"id": 613}, "project": {"owner": {"id": 704}, "assignee": {"id": 82}, "organization": {"id": 989}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 45}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 424}, "assignee": {"id": 45}, "organization": {"id": 662}, "project": {"owner": {"id": 703}, "assignee": {"id": 805}, "organization": {"id": 919}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 123, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 568}, "organization": {"id": 123}, "project": {"owner": {"id": 742}, "assignee": {"id": 68}, "organization": {"id": 927}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 400}, "assignee": {"id": 49}, "organization": {"id": 123}, "project": {"owner": {"id": 745}, "assignee": {"id": 881}, "organization": {"id": 919}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 264}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 559}, "organization": {"id": 184}, "project": {"owner": {"id": 713}, "assignee": {"id": 70}, "organization": {"id": 943}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 398, "owner": {"id": 486}, "assignee": {"id": 80}, "organization": {"id": 607}, "project": {"owner": {"id": 766}, "assignee": {"id": 876}, "organization": {"id": 921}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 590}, "organization": {"id": 158}, "project": {"owner": {"id": 764}, "assignee": {"id": 66}, "organization": {"id": 986}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 459}, "assignee": {"id": 93}, "organization": {"id": 177}, "project": {"owner": {"id": 714}, "assignee": {"id": 866}, "organization": {"id": 943}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 160, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 460}, "assignee": {"id": 588}, "organization": {"id": 645}, "project": {"owner": {"id": 780}, "assignee": {"id": 25}, "organization": {"id": 909}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 328, "owner": {"id": 422}, "assignee": {"id": 72}, "organization": {"id": 680}, "project": {"owner": {"id": 793}, "assignee": {"id": 871}, "organization": {"id": 947}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 545}, "organization": {"id": 600}, "project": {"owner": {"id": 771}, "assignee": {"id": 60}, "organization": {"id": 937}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 423}, "assignee": {"id": 61}, "organization": {"id": 182}, "project": {"owner": {"id": 729}, "assignee": {"id": 857}, "organization": {"id": 917}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 516}, "organization": {"id": 676}, "project": {"owner": {"id": 788}, "assignee": {"id": 23}, "organization": {"id": 947}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 473}, "assignee": {"id": 60}, "organization": {"id": 610}, "project": {"owner": {"id": 795}, "assignee": {"id": 840}, "organization": {"id": 960}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 102, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 543}, "organization": {"id": 102}, "project": {"owner": {"id": 708}, "assignee": {"id": 93}, "organization": {"id": 974}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 271}, "user": {"role": null}}}, "resource": {"id": 332, "owner": {"id": 441}, "assignee": {"id": 98}, "organization": {"id": 165}, "project": {"owner": {"id": 714}, "assignee": {"id": 897}, "organization": {"id": 925}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 581}, "organization": {"id": 113}, "project": {"owner": {"id": 798}, "assignee": {"id": 16}, "organization": {"id": 916}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 387, "owner": {"id": 495}, "assignee": {"id": 71}, "organization": {"id": 671}, "project": {"owner": {"id": 785}, "assignee": {"id": 864}, "organization": {"id": 901}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 404}, "assignee": {"id": 511}, "organization": {"id": 111}, "project": {"owner": {"id": 772}, "assignee": {"id": 88}, "organization": {"id": 937}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 95}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 421}, "assignee": {"id": 95}, "organization": {"id": 182}, "project": {"owner": {"id": 730}, "assignee": {"id": 865}, "organization": {"id": 910}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 549}, "organization": {"id": 653}, "project": {"owner": {"id": 790}, "assignee": {"id": 49}, "organization": {"id": 946}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 345, "owner": {"id": 474}, "assignee": {"id": 40}, "organization": {"id": 636}, "project": {"owner": {"id": 759}, "assignee": {"id": 816}, "organization": {"id": 904}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 523}, "organization": {"id": 615}, "project": {"owner": {"id": 747}, "assignee": {"id": 29}, "organization": {"id": 974}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 320, "owner": {"id": 403}, "assignee": {"id": 7}, "organization": {"id": 163}, "project": {"owner": {"id": 700}, "assignee": {"id": 872}, "organization": {"id": 975}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 549}, "organization": {"id": 684}, "project": {"owner": {"id": 703}, "assignee": {"id": 10}, "organization": {"id": 913}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 490}, "assignee": {"id": 72}, "organization": {"id": 659}, "project": {"owner": {"id": 759}, "assignee": {"id": 845}, "organization": {"id": 983}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 578}, "organization": {"id": 121}, "project": {"owner": {"id": 710}, "assignee": {"id": 47}, "organization": {"id": 990}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 441}, "assignee": {"id": 72}, "organization": {"id": 196}, "project": {"owner": {"id": 790}, "assignee": {"id": 801}, "organization": {"id": 925}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": {"id": 127, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 592}, "organization": {"id": 127}, "project": {"owner": {"id": 747}, "assignee": {"id": 60}, "organization": {"id": 920}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 242}, "user": {"role": "supervisor"}}}, "resource": {"id": 361, "owner": {"id": 453}, "assignee": {"id": 69}, "organization": {"id": 633}, "project": {"owner": {"id": 789}, "assignee": {"id": 859}, "organization": {"id": 940}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 546}, "organization": {"id": 183}, "project": {"owner": {"id": 714}, "assignee": {"id": 30}, "organization": {"id": 906}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 495}, "assignee": {"id": 15}, "organization": {"id": 113}, "project": {"owner": {"id": 761}, "assignee": {"id": 818}, "organization": {"id": 938}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 50, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 551}, "organization": {"id": 664}, "project": {"owner": {"id": 703}, "assignee": {"id": 50}, "organization": {"id": 923}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 419}, "assignee": {"id": 40}, "organization": {"id": 600}, "project": {"owner": {"id": 785}, "assignee": {"id": 845}, "organization": {"id": 983}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"owner": {"id": 442}, "assignee": {"id": 511}, "organization": {"id": 655}, "project": {"owner": {"id": 716}, "assignee": {"id": 51}, "organization": {"id": 955}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"id": 331, "owner": {"id": 469}, "assignee": {"id": 90}, "organization": {"id": 182}, "project": {"owner": {"id": 788}, "assignee": {"id": 843}, "organization": {"id": 907}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 163, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 553}, "organization": {"id": 672}, "project": {"owner": {"id": 705}, "assignee": {"id": 45}, "organization": {"id": 926}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 398, "owner": {"id": 481}, "assignee": {"id": 20}, "organization": {"id": 640}, "project": {"owner": {"id": 710}, "assignee": {"id": 800}, "organization": {"id": 953}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 113, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 584}, "organization": {"id": 113}, "project": {"owner": {"id": 750}, "assignee": {"id": 87}, "organization": {"id": 910}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 498}, "assignee": {"id": 503}, "organization": {"id": 184}, "project": {"owner": {"id": 723}, "assignee": {"id": 864}, "organization": {"id": 947}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 587}, "organization": {"id": 146}, "project": {"owner": {"id": 706}, "assignee": {"id": 21}, "organization": {"id": 901}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 156, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"id": 363, "owner": {"id": 413}, "assignee": {"id": 507}, "organization": {"id": 666}, "project": {"owner": {"id": 721}, "assignee": {"id": 875}, "organization": {"id": 965}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": {"id": 139, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 573}, "organization": {"id": 139}, "project": {"owner": {"id": 706}, "assignee": {"id": 93}, "organization": {"id": 968}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 495}, "assignee": {"id": 540}, "organization": {"id": 108}, "project": {"owner": {"id": 764}, "assignee": {"id": 883}, "organization": {"id": 967}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 546}, "organization": {"id": 631}, "project": {"owner": {"id": 747}, "assignee": {"id": 43}, "organization": {"id": 920}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 301, "owner": {"id": 453}, "assignee": {"id": 527}, "organization": {"id": 620}, "project": {"owner": {"id": 717}, "assignee": {"id": 830}, "organization": {"id": 960}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 520}, "organization": {"id": 633}, "project": {"owner": {"id": 774}, "assignee": {"id": 89}, "organization": {"id": 982}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 465}, "assignee": {"id": 549}, "organization": {"id": 108}, "project": {"owner": {"id": 703}, "assignee": {"id": 898}, "organization": {"id": 947}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 516}, "organization": {"id": 610}, "project": {"owner": {"id": 711}, "assignee": {"id": 50}, "organization": {"id": 998}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 103, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 394, "owner": {"id": 458}, "assignee": {"id": 585}, "organization": {"id": 693}, "project": {"owner": {"id": 711}, "assignee": {"id": 812}, "organization": {"id": 907}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 512}, "organization": {"id": 167}, "project": {"owner": {"id": 754}, "assignee": {"id": 40}, "organization": {"id": 903}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"id": 380, "owner": {"id": 471}, "assignee": {"id": 552}, "organization": {"id": 106}, "project": {"owner": {"id": 727}, "assignee": {"id": 855}, "organization": {"id": 917}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 440}, "assignee": {"id": 563}, "organization": {"id": 168}, "project": {"owner": {"id": 724}, "assignee": {"id": 39}, "organization": {"id": 923}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"id": 377, "owner": {"id": 434}, "assignee": {"id": 532}, "organization": {"id": 610}, "project": {"owner": {"id": 742}, "assignee": {"id": 856}, "organization": {"id": 904}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 558}, "organization": {"id": 143}, "project": {"owner": {"id": 781}, "assignee": {"id": 58}, "organization": {"id": 971}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 132, "owner": {"id": 239}, "user": {"role": null}}}, "resource": {"id": 366, "owner": {"id": 402}, "assignee": {"id": 518}, "organization": {"id": 132}, "project": {"owner": {"id": 709}, "assignee": {"id": 811}, "organization": {"id": 934}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 591}, "organization": {"id": 611}, "project": {"owner": {"id": 796}, "assignee": {"id": 28}, "organization": {"id": 944}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 459}, "assignee": {"id": 595}, "organization": {"id": 692}, "project": {"owner": {"id": 783}, "assignee": {"id": 890}, "organization": {"id": 961}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 127, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 578}, "organization": {"id": 656}, "project": {"owner": {"id": 781}, "assignee": {"id": 19}, "organization": {"id": 947}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 470}, "assignee": {"id": 542}, "organization": {"id": 153}, "project": {"owner": {"id": 747}, "assignee": {"id": 842}, "organization": {"id": 970}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 426}, "assignee": {"id": 567}, "organization": {"id": 673}, "project": {"owner": {"id": 723}, "assignee": {"id": 25}, "organization": {"id": 933}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 92}, "user": {"role": "owner"}}}, "resource": {"id": 373, "owner": {"id": 471}, "assignee": {"id": 570}, "organization": {"id": 636}, "project": {"owner": {"id": 760}, "assignee": {"id": 819}, "organization": {"id": 914}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 570}, "organization": {"id": 164}, "project": {"owner": {"id": 791}, "assignee": {"id": 40}, "organization": {"id": 944}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 396, "owner": {"id": 415}, "assignee": {"id": 502}, "organization": {"id": 170}, "project": {"owner": {"id": 748}, "assignee": {"id": 832}, "organization": {"id": 948}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 585}, "organization": {"id": 171}, "project": {"owner": {"id": 782}, "assignee": {"id": 63}, "organization": {"id": 932}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 333, "owner": {"id": 482}, "assignee": {"id": 574}, "organization": {"id": 630}, "project": {"owner": {"id": 793}, "assignee": {"id": 838}, "organization": {"id": 951}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 64, "privilege": "business"}, "organization": {"id": 139, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 502}, "organization": {"id": 139}, "project": {"owner": {"id": 724}, "assignee": {"id": 64}, "organization": {"id": 950}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"id": 343, "owner": {"id": 418}, "assignee": {"id": 596}, "organization": {"id": 144}, "project": {"owner": {"id": 792}, "assignee": {"id": 815}, "organization": {"id": 916}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 477}, "assignee": {"id": 552}, "organization": {"id": 600}, "project": {"owner": {"id": 797}, "assignee": {"id": 62}, "organization": {"id": 945}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"id": 334, "owner": {"id": 477}, "assignee": {"id": 531}, "organization": {"id": 691}, "project": {"owner": {"id": 705}, "assignee": {"id": 878}, "organization": {"id": 970}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 513}, "organization": {"id": 685}, "project": {"owner": {"id": 786}, "assignee": {"id": 10}, "organization": {"id": 929}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 412}, "assignee": {"id": 596}, "organization": {"id": 112}, "project": {"owner": {"id": 737}, "assignee": {"id": 817}, "organization": {"id": 965}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 216}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 474}, "assignee": {"id": 528}, "organization": {"id": 648}, "project": {"owner": {"id": 710}, "assignee": {"id": 43}, "organization": {"id": 903}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 397, "owner": {"id": 414}, "assignee": {"id": 564}, "organization": {"id": 652}, "project": {"owner": {"id": 737}, "assignee": {"id": 833}, "organization": {"id": 952}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 531}, "organization": {"id": 115}, "project": {"owner": {"id": 753}, "assignee": {"id": 94}, "organization": {"id": 981}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 488}, "assignee": {"id": 517}, "organization": {"id": 150}, "project": {"owner": {"id": 781}, "assignee": {"id": 847}, "organization": {"id": 940}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 597}, "organization": {"id": 177}, "project": {"owner": {"id": 724}, "assignee": {"id": 39}, "organization": {"id": 955}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 467}, "assignee": {"id": 553}, "organization": {"id": 664}, "project": {"owner": {"id": 739}, "assignee": {"id": 881}, "organization": {"id": 916}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 419}, "assignee": {"id": 597}, "organization": {"id": 176}, "project": {"owner": {"id": 759}, "assignee": {"id": 86}, "organization": {"id": 916}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 415}, "assignee": {"id": 514}, "organization": {"id": 101}, "project": {"owner": {"id": 784}, "assignee": {"id": 878}, "organization": {"id": 947}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 576}, "organization": {"id": 617}, "project": {"owner": {"id": 777}, "assignee": {"id": 25}, "organization": {"id": 983}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 28}, "user": {"role": "owner"}}}, "resource": {"id": 321, "owner": {"id": 482}, "assignee": {"id": 550}, "organization": {"id": 644}, "project": {"owner": {"id": 710}, "assignee": {"id": 810}, "organization": {"id": 989}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 578}, "organization": {"id": 628}, "project": {"owner": {"id": 786}, "assignee": {"id": 20}, "organization": {"id": 973}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:owner", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 281}, "user": {"role": "maintainer"}}}, "resource": {"id": 393, "owner": {"id": 441}, "assignee": {"id": 506}, "organization": {"id": 190}, "project": {"owner": {"id": 797}, "assignee": {"id": 809}, "organization": {"id": 958}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 457}, "assignee": {"id": 564}, "organization": {"id": 687}, "project": {"owner": {"id": 764}, "assignee": {"id": 88}, "organization": {"id": 954}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 471}, "assignee": {"id": 596}, "organization": {"id": 637}, "project": {"owner": {"id": 713}, "assignee": {"id": 896}, "organization": {"id": 944}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 505}, "organization": {"id": 136}, "project": {"owner": {"id": 725}, "assignee": {"id": 30}, "organization": {"id": 993}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"id": 393, "owner": {"id": 480}, "assignee": {"id": 512}, "organization": {"id": 117}, "project": {"owner": {"id": 784}, "assignee": {"id": 838}, "organization": {"id": 958}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 544}, "organization": {"id": 172}, "project": {"owner": {"id": 776}, "assignee": {"id": 40}, "organization": {"id": 976}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 434}, "assignee": {"id": 509}, "organization": {"id": 657}, "project": {"owner": {"id": 762}, "assignee": {"id": 828}, "organization": {"id": 938}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 139, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"owner": {"id": 460}, "assignee": {"id": 514}, "organization": {"id": 139}, "project": {"owner": {"id": 742}, "assignee": {"id": 29}, "organization": {"id": 918}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 417}, "assignee": {"id": 565}, "organization": {"id": 127}, "project": {"owner": {"id": 714}, "assignee": {"id": 866}, "organization": {"id": 977}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 263}, "user": {"role": null}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 526}, "organization": {"id": 621}, "project": {"owner": {"id": 787}, "assignee": {"id": 37}, "organization": {"id": 950}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 303, "owner": {"id": 463}, "assignee": {"id": 579}, "organization": {"id": 623}, "project": {"owner": {"id": 757}, "assignee": {"id": 850}, "organization": {"id": 926}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 189, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 539}, "organization": {"id": 691}, "project": {"owner": {"id": 797}, "assignee": {"id": 2}, "organization": {"id": 919}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"id": 322, "owner": {"id": 439}, "assignee": {"id": 560}, "organization": {"id": 126}, "project": {"owner": {"id": 734}, "assignee": {"id": 808}, "organization": {"id": 995}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 564}, "organization": {"id": 685}, "project": {"owner": {"id": 727}, "assignee": {"id": 26}, "organization": {"id": 908}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 210}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 462}, "assignee": {"id": 523}, "organization": {"id": 645}, "project": {"owner": {"id": 702}, "assignee": {"id": 816}, "organization": {"id": 963}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 524}, "organization": {"id": 112}, "project": {"owner": {"id": 797}, "assignee": {"id": 75}, "organization": {"id": 972}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 76}, "user": {"role": "owner"}}}, "resource": {"id": 376, "owner": {"id": 425}, "assignee": {"id": 599}, "organization": {"id": 151}, "project": {"owner": {"id": 797}, "assignee": {"id": 865}, "organization": {"id": 995}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 597}, "organization": {"id": 176}, "project": {"owner": {"id": 734}, "assignee": {"id": 63}, "organization": {"id": 914}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"id": 315, "owner": {"id": 447}, "assignee": {"id": 559}, "organization": {"id": 680}, "project": {"owner": {"id": 793}, "assignee": {"id": 876}, "organization": {"id": 959}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 442}, "assignee": {"id": 527}, "organization": {"id": 106}, "project": {"owner": {"id": 773}, "assignee": {"id": 34}, "organization": {"id": 993}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 393, "owner": {"id": 433}, "assignee": {"id": 573}, "organization": {"id": 174}, "project": {"owner": {"id": 786}, "assignee": {"id": 868}, "organization": {"id": 987}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 583}, "organization": {"id": 693}, "project": {"owner": {"id": 707}, "assignee": {"id": 21}, "organization": {"id": 934}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"id": 381, "owner": {"id": 442}, "assignee": {"id": 517}, "organization": {"id": 676}, "project": {"owner": {"id": 774}, "assignee": {"id": 896}, "organization": {"id": 983}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 10}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 527}, "organization": {"id": 699}, "project": {"owner": {"id": 760}, "assignee": {"id": 10}, "organization": {"id": 970}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 387, "owner": {"id": 400}, "assignee": {"id": 507}, "organization": {"id": 179}, "project": {"owner": {"id": 704}, "assignee": {"id": 810}, "organization": {"id": 941}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 597}, "organization": {"id": 615}, "project": {"owner": {"id": 702}, "assignee": {"id": 31}, "organization": {"id": 964}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 410}, "assignee": {"id": 534}, "organization": {"id": 637}, "project": {"owner": {"id": 735}, "assignee": {"id": 809}, "organization": {"id": 948}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 532}, "organization": {"id": 171}, "project": {"owner": {"id": 703}, "assignee": {"id": 70}, "organization": {"id": 976}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"id": 356, "owner": {"id": 470}, "assignee": {"id": 506}, "organization": {"id": 110}, "project": {"owner": {"id": 704}, "assignee": {"id": 837}, "organization": {"id": 995}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 472}, "assignee": {"id": 586}, "organization": {"id": 168}, "project": {"owner": {"id": 736}, "assignee": {"id": 63}, "organization": {"id": 930}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 477}, "assignee": {"id": 587}, "organization": {"id": 675}, "project": {"owner": {"id": 723}, "assignee": {"id": 816}, "organization": {"id": 905}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 193, "owner": {"id": 205}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 574}, "organization": {"id": 193}, "project": {"owner": {"id": 771}, "assignee": {"id": 95}, "organization": {"id": 925}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 152, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"id": 373, "owner": {"id": 493}, "assignee": {"id": 507}, "organization": {"id": 152}, "project": {"owner": {"id": 713}, "assignee": {"id": 804}, "organization": {"id": 989}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": {"id": 138, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 547}, "organization": {"id": 697}, "project": {"owner": {"id": 728}, "assignee": {"id": 29}, "organization": {"id": 961}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"id": 374, "owner": {"id": 468}, "assignee": {"id": 550}, "organization": {"id": 657}, "project": {"owner": {"id": 798}, "assignee": {"id": 872}, "organization": {"id": 906}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 550}, "organization": {"id": 662}, "project": {"owner": {"id": 726}, "assignee": {"id": 64}, "organization": {"id": 913}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 8}, "user": {"role": "owner"}}}, "resource": {"id": 301, "owner": {"id": 423}, "assignee": {"id": 527}, "organization": {"id": 102}, "project": {"owner": {"id": 731}, "assignee": {"id": 855}, "organization": {"id": 983}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 289}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 472}, "assignee": {"id": 548}, "organization": {"id": 609}, "project": {"owner": {"id": 733}, "assignee": {"id": 58}, "organization": {"id": 911}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 320, "owner": {"id": 443}, "assignee": {"id": 516}, "organization": {"id": 695}, "project": {"owner": {"id": 700}, "assignee": {"id": 887}, "organization": {"id": 985}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 562}, "organization": {"id": 157}, "project": {"owner": {"id": 760}, "assignee": {"id": 12}, "organization": {"id": 936}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 491}, "assignee": {"id": 566}, "organization": {"id": 136}, "project": {"owner": {"id": 772}, "assignee": {"id": 892}, "organization": {"id": 987}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 521}, "organization": {"id": 168}, "project": {"owner": {"id": 700}, "assignee": {"id": 13}, "organization": {"id": 915}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 308, "owner": {"id": 418}, "assignee": {"id": 534}, "organization": {"id": 660}, "project": {"owner": {"id": 708}, "assignee": {"id": 801}, "organization": {"id": 936}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 154, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 539}, "organization": {"id": 154}, "project": {"owner": {"id": 711}, "assignee": {"id": 85}, "organization": {"id": 961}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"id": 345, "owner": {"id": 470}, "assignee": {"id": 561}, "organization": {"id": 168}, "project": {"owner": {"id": 766}, "assignee": {"id": 829}, "organization": {"id": 971}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 534}, "organization": {"id": 654}, "project": {"owner": {"id": 752}, "assignee": {"id": 12}, "organization": {"id": 995}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 176, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 359, "owner": {"id": 458}, "assignee": {"id": 516}, "organization": {"id": 633}, "project": {"owner": {"id": 758}, "assignee": {"id": 896}, "organization": {"id": 926}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 537}, "organization": {"id": 653}, "project": {"owner": {"id": 773}, "assignee": {"id": 1}, "organization": {"id": 961}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 59, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"id": 388, "owner": {"id": 487}, "assignee": {"id": 517}, "organization": {"id": 153}, "project": {"owner": {"id": 708}, "assignee": {"id": 800}, "organization": {"id": 991}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 508}, "organization": {"id": 616}, "project": {"owner": {"id": 734}, "assignee": {"id": 58}, "organization": {"id": 913}}, "user": {"num_resources": 10}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"id": 319, "owner": {"id": 497}, "assignee": {"id": 500}, "organization": {"id": 659}, "project": {"owner": {"id": 793}, "assignee": {"id": 818}, "organization": {"id": 937}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 228}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 532}, "organization": {"id": 135}, "project": {"owner": {"id": 763}, "assignee": {"id": 69}, "organization": {"id": 924}}, "user": {"num_resources": 0}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 415}, "assignee": {"id": 552}, "organization": {"id": 171}, "project": {"owner": {"id": 711}, "assignee": {"id": 831}, "organization": {"id": 972}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 14, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 527}, "organization": {"id": 158}, "project": {"owner": {"id": 711}, "assignee": {"id": 14}, "organization": {"id": 997}}, "user": {"num_resources": 3}}} +test_scope_UPDATE_OWNER_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:owner", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 481}, "assignee": {"id": 547}, "organization": {"id": 692}, "project": {"owner": {"id": 700}, "assignee": {"id": 893}, "organization": {"id": 932}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 567}, "organization": {"id": 173}, "project": {"owner": {"id": 736}, "assignee": {"id": 97}, "organization": {"id": 940}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": null}, "resource": {"id": 322, "owner": {"id": 493}, "assignee": {"id": 555}, "organization": {"id": 618}, "project": {"owner": {"id": 80}, "assignee": {"id": 806}, "organization": {"id": 936}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 531}, "organization": {"id": 655}, "project": {"owner": {"id": 712}, "assignee": {"id": 85}, "organization": {"id": 931}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": null}, "resource": {"id": 383, "owner": {"id": 458}, "assignee": {"id": 571}, "organization": {"id": 667}, "project": {"owner": {"id": 14}, "assignee": {"id": 878}, "organization": {"id": 915}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 165, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 549}, "organization": {"id": 699}, "project": {"owner": {"id": 703}, "assignee": {"id": 2}, "organization": {"id": 992}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": null}, "resource": {"id": 355, "owner": {"id": 416}, "assignee": {"id": 529}, "organization": {"id": 642}, "project": {"owner": {"id": 12}, "assignee": {"id": 857}, "organization": {"id": 965}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 292}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 575}, "organization": {"id": 621}, "project": {"owner": {"id": 784}, "assignee": {"id": 63}, "organization": {"id": 952}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": null}, "resource": {"id": 396, "owner": {"id": 469}, "assignee": {"id": 540}, "organization": {"id": 667}, "project": {"owner": {"id": 76}, "assignee": {"id": 846}, "organization": {"id": 944}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"owner": {"id": 428}, "assignee": {"id": 520}, "organization": {"id": 102}, "project": {"owner": {"id": 701}, "assignee": {"id": 52}, "organization": {"id": 930}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": null}, "resource": {"id": 312, "owner": {"id": 497}, "assignee": {"id": 571}, "organization": {"id": 605}, "project": {"owner": {"id": 86}, "assignee": {"id": 818}, "organization": {"id": 993}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 557}, "organization": {"id": 159}, "project": {"owner": {"id": 751}, "assignee": {"id": 48}, "organization": {"id": 930}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": null}, "resource": {"id": 394, "owner": {"id": 439}, "assignee": {"id": 580}, "organization": {"id": 679}, "project": {"owner": {"id": 755}, "assignee": {"id": 12}, "organization": {"id": 981}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 579}, "organization": {"id": 162}, "project": {"owner": {"id": 760}, "assignee": {"id": 71}, "organization": {"id": 968}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": null}, "resource": {"id": 301, "owner": {"id": 417}, "assignee": {"id": 503}, "organization": {"id": 696}, "project": {"owner": {"id": 754}, "assignee": {"id": 13}, "organization": {"id": 901}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": {"id": 138, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 589}, "organization": {"id": 681}, "project": {"owner": {"id": 797}, "assignee": {"id": 1}, "organization": {"id": 907}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": null}, "resource": {"id": 311, "owner": {"id": 487}, "assignee": {"id": 516}, "organization": {"id": 648}, "project": {"owner": {"id": 714}, "assignee": {"id": 76}, "organization": {"id": 906}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 578}, "organization": {"id": 607}, "project": {"owner": {"id": 744}, "assignee": {"id": 6}, "organization": {"id": 975}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": null}, "resource": {"id": 329, "owner": {"id": 402}, "assignee": {"id": 543}, "organization": {"id": 696}, "project": {"owner": {"id": 799}, "assignee": {"id": 94}, "organization": {"id": 939}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"owner": {"id": 419}, "assignee": {"id": 539}, "organization": {"id": 617}, "project": {"owner": {"id": 766}, "assignee": {"id": 10}, "organization": {"id": 978}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": null}, "resource": {"id": 344, "owner": {"id": 482}, "assignee": {"id": 548}, "organization": {"id": 621}, "project": {"owner": {"id": 722}, "assignee": {"id": 94}, "organization": {"id": 900}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 529}, "organization": {"id": 172}, "project": {"owner": {"id": 752}, "assignee": {"id": 61}, "organization": {"id": 918}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": null}, "resource": {"id": 345, "owner": {"id": 86}, "assignee": {"id": 522}, "organization": {"id": 634}, "project": {"owner": {"id": 737}, "assignee": {"id": 875}, "organization": {"id": 976}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 480}, "assignee": {"id": 585}, "organization": {"id": 128}, "project": {"owner": {"id": 724}, "assignee": {"id": 82}, "organization": {"id": 902}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": null}, "resource": {"id": 392, "owner": {"id": 50}, "assignee": {"id": 546}, "organization": {"id": 662}, "project": {"owner": {"id": 747}, "assignee": {"id": 886}, "organization": {"id": 997}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 479}, "assignee": {"id": 519}, "organization": {"id": 121}, "project": {"owner": {"id": 776}, "assignee": {"id": 17}, "organization": {"id": 901}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": null}, "resource": {"id": 395, "owner": {"id": 16}, "assignee": {"id": 556}, "organization": {"id": 685}, "project": {"owner": {"id": 762}, "assignee": {"id": 803}, "organization": {"id": 965}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 461}, "assignee": {"id": 561}, "organization": {"id": 635}, "project": {"owner": {"id": 780}, "assignee": {"id": 6}, "organization": {"id": 908}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 65}, "assignee": {"id": 535}, "organization": {"id": 669}, "project": {"owner": {"id": 797}, "assignee": {"id": 870}, "organization": {"id": 917}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 14}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 569}, "organization": {"id": 689}, "project": {"owner": {"id": 741}, "assignee": {"id": 14}, "organization": {"id": 921}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": null}, "resource": {"id": 363, "owner": {"id": 61}, "assignee": {"id": 532}, "organization": {"id": 683}, "project": {"owner": {"id": 748}, "assignee": {"id": 841}, "organization": {"id": 914}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 500}, "organization": {"id": 647}, "project": {"owner": {"id": 746}, "assignee": {"id": 34}, "organization": {"id": 906}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": null}, "resource": {"id": 368, "owner": {"id": 495}, "assignee": {"id": 95}, "organization": {"id": 634}, "project": {"owner": {"id": 702}, "assignee": {"id": 876}, "organization": {"id": 987}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 587}, "organization": {"id": 137}, "project": {"owner": {"id": 707}, "assignee": {"id": 78}, "organization": {"id": 964}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": null}, "resource": {"id": 320, "owner": {"id": 499}, "assignee": {"id": 4}, "organization": {"id": 655}, "project": {"owner": {"id": 757}, "assignee": {"id": 819}, "organization": {"id": 957}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 30, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 518}, "organization": {"id": 126}, "project": {"owner": {"id": 702}, "assignee": {"id": 30}, "organization": {"id": 990}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": null}, "resource": {"id": 333, "owner": {"id": 475}, "assignee": {"id": 66}, "organization": {"id": 651}, "project": {"owner": {"id": 726}, "assignee": {"id": 862}, "organization": {"id": 914}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 276}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 502}, "organization": {"id": 161}, "project": {"owner": {"id": 760}, "assignee": {"id": 64}, "organization": {"id": 968}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": null}, "resource": {"id": 314, "owner": {"id": 418}, "assignee": {"id": 2}, "organization": {"id": 687}, "project": {"owner": {"id": 743}, "assignee": {"id": 882}, "organization": {"id": 972}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 591}, "organization": {"id": 632}, "project": {"owner": {"id": 738}, "assignee": {"id": 26}, "organization": {"id": 954}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": null}, "resource": {"id": 362, "owner": {"id": 440}, "assignee": {"id": 35}, "organization": {"id": 606}, "project": {"owner": {"id": 762}, "assignee": {"id": 825}, "organization": {"id": 943}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 530}, "organization": {"id": 692}, "project": {"owner": {"id": 799}, "assignee": {"id": 18}, "organization": {"id": 966}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": null}, "resource": {"id": 361, "owner": {"id": 484}, "assignee": {"id": 576}, "organization": {"id": 655}, "project": {"owner": {"id": 723}, "assignee": {"id": 867}, "organization": {"id": 939}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 568}, "organization": {"id": 603}, "project": {"owner": {"id": 735}, "assignee": {"id": 35}, "organization": {"id": 985}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": null}, "resource": {"id": 320, "owner": {"id": 491}, "assignee": {"id": 583}, "organization": {"id": 685}, "project": {"owner": {"id": 797}, "assignee": {"id": 868}, "organization": {"id": 931}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 512}, "organization": {"id": 122}, "project": {"owner": {"id": 790}, "assignee": {"id": 53}, "organization": {"id": 984}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": null}, "resource": {"id": 379, "owner": {"id": 437}, "assignee": {"id": 563}, "organization": {"id": 692}, "project": {"owner": {"id": 735}, "assignee": {"id": 826}, "organization": {"id": 919}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 199, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 559}, "organization": {"id": 199}, "project": {"owner": {"id": 741}, "assignee": {"id": 86}, "organization": {"id": 962}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": null}, "resource": {"id": 315, "owner": {"id": 413}, "assignee": {"id": 560}, "organization": {"id": 659}, "project": {"owner": {"id": 746}, "assignee": {"id": 834}, "organization": {"id": 943}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 501}, "organization": {"id": 125}, "project": {"owner": {"id": 718}, "assignee": {"id": 78}, "organization": {"id": 917}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": null}, "resource": {"id": 342, "owner": {"id": 477}, "assignee": {"id": 510}, "organization": {"id": 671}, "project": {"owner": {"id": 735}, "assignee": {"id": 854}, "organization": {"id": 973}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 112, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 515}, "organization": {"id": 685}, "project": {"owner": {"id": 771}, "assignee": {"id": 20}, "organization": {"id": 916}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 101, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 371, "owner": {"id": 481}, "assignee": {"id": 546}, "organization": {"id": 101}, "project": {"owner": {"id": 19}, "assignee": {"id": 863}, "organization": {"id": 904}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 518}, "organization": {"id": 667}, "project": {"owner": {"id": 768}, "assignee": {"id": 5}, "organization": {"id": 982}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 64}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 452}, "assignee": {"id": 506}, "organization": {"id": 661}, "project": {"owner": {"id": 64}, "assignee": {"id": 844}, "organization": {"id": 971}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 571}, "organization": {"id": 663}, "project": {"owner": {"id": 761}, "assignee": {"id": 13}, "organization": {"id": 929}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 496}, "assignee": {"id": 550}, "organization": {"id": 194}, "project": {"owner": {"id": 95}, "assignee": {"id": 812}, "organization": {"id": 957}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 482}, "assignee": {"id": 582}, "organization": {"id": 143}, "project": {"owner": {"id": 766}, "assignee": {"id": 63}, "organization": {"id": 974}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 310, "owner": {"id": 469}, "assignee": {"id": 581}, "organization": {"id": 603}, "project": {"owner": {"id": 87}, "assignee": {"id": 817}, "organization": {"id": 956}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 196, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 598}, "organization": {"id": 196}, "project": {"owner": {"id": 775}, "assignee": {"id": 90}, "organization": {"id": 925}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"id": 374, "owner": {"id": 435}, "assignee": {"id": 571}, "organization": {"id": 114}, "project": {"owner": {"id": 30}, "assignee": {"id": 804}, "organization": {"id": 927}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 555}, "organization": {"id": 114}, "project": {"owner": {"id": 750}, "assignee": {"id": 99}, "organization": {"id": 962}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 343, "owner": {"id": 420}, "assignee": {"id": 528}, "organization": {"id": 633}, "project": {"owner": {"id": 18}, "assignee": {"id": 860}, "organization": {"id": 902}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 224}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 557}, "organization": {"id": 641}, "project": {"owner": {"id": 765}, "assignee": {"id": 19}, "organization": {"id": 905}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 420}, "assignee": {"id": 563}, "organization": {"id": 141}, "project": {"owner": {"id": 82}, "assignee": {"id": 816}, "organization": {"id": 953}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 591}, "organization": {"id": 694}, "project": {"owner": {"id": 796}, "assignee": {"id": 49}, "organization": {"id": 930}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 258}, "user": {"role": "worker"}}}, "resource": {"id": 347, "owner": {"id": 464}, "assignee": {"id": 501}, "organization": {"id": 603}, "project": {"owner": {"id": 6}, "assignee": {"id": 863}, "organization": {"id": 932}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 196, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 511}, "organization": {"id": 610}, "project": {"owner": {"id": 760}, "assignee": {"id": 86}, "organization": {"id": 962}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 305, "owner": {"id": 481}, "assignee": {"id": 572}, "organization": {"id": 139}, "project": {"owner": {"id": 86}, "assignee": {"id": 815}, "organization": {"id": 943}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 528}, "organization": {"id": 157}, "project": {"owner": {"id": 711}, "assignee": {"id": 26}, "organization": {"id": 905}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 204}, "user": {"role": null}}}, "resource": {"id": 381, "owner": {"id": 451}, "assignee": {"id": 500}, "organization": {"id": 628}, "project": {"owner": {"id": 62}, "assignee": {"id": 832}, "organization": {"id": 943}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 597}, "organization": {"id": 179}, "project": {"owner": {"id": 736}, "assignee": {"id": 83}, "organization": {"id": 986}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 473}, "assignee": {"id": 511}, "organization": {"id": 152}, "project": {"owner": {"id": 51}, "assignee": {"id": 897}, "organization": {"id": 957}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 516}, "organization": {"id": 198}, "project": {"owner": {"id": 781}, "assignee": {"id": 32}, "organization": {"id": 994}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 459}, "assignee": {"id": 502}, "organization": {"id": 647}, "project": {"owner": {"id": 50}, "assignee": {"id": 814}, "organization": {"id": 956}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 249}, "user": {"role": null}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 580}, "organization": {"id": 635}, "project": {"owner": {"id": 715}, "assignee": {"id": 65}, "organization": {"id": 965}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 397, "owner": {"id": 402}, "assignee": {"id": 589}, "organization": {"id": 126}, "project": {"owner": {"id": 84}, "assignee": {"id": 801}, "organization": {"id": 975}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 530}, "organization": {"id": 693}, "project": {"owner": {"id": 794}, "assignee": {"id": 13}, "organization": {"id": 924}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 350, "owner": {"id": 474}, "assignee": {"id": 513}, "organization": {"id": 671}, "project": {"owner": {"id": 22}, "assignee": {"id": 881}, "organization": {"id": 948}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 223}, "user": {"role": null}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 591}, "organization": {"id": 682}, "project": {"owner": {"id": 712}, "assignee": {"id": 41}, "organization": {"id": 985}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 175, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 487}, "assignee": {"id": 500}, "organization": {"id": 175}, "project": {"owner": {"id": 63}, "assignee": {"id": 815}, "organization": {"id": 916}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 15}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 454}, "assignee": {"id": 511}, "organization": {"id": 193}, "project": {"owner": {"id": 726}, "assignee": {"id": 15}, "organization": {"id": 953}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 414}, "assignee": {"id": 545}, "organization": {"id": 671}, "project": {"owner": {"id": 32}, "assignee": {"id": 820}, "organization": {"id": 903}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 552}, "organization": {"id": 165}, "project": {"owner": {"id": 781}, "assignee": {"id": 7}, "organization": {"id": 916}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"id": 336, "owner": {"id": 456}, "assignee": {"id": 545}, "organization": {"id": 132}, "project": {"owner": {"id": 52}, "assignee": {"id": 838}, "organization": {"id": 964}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 190, "owner": {"id": 8}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 419}, "assignee": {"id": 577}, "organization": {"id": 190}, "project": {"owner": {"id": 758}, "assignee": {"id": 8}, "organization": {"id": 926}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 250}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 410}, "assignee": {"id": 533}, "organization": {"id": 614}, "project": {"owner": {"id": 63}, "assignee": {"id": 856}, "organization": {"id": 984}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 434}, "assignee": {"id": 545}, "organization": {"id": 649}, "project": {"owner": {"id": 760}, "assignee": {"id": 2}, "organization": {"id": 929}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"id": 305, "owner": {"id": 462}, "assignee": {"id": 551}, "organization": {"id": 101}, "project": {"owner": {"id": 47}, "assignee": {"id": 897}, "organization": {"id": 975}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 578}, "organization": {"id": 667}, "project": {"owner": {"id": 701}, "assignee": {"id": 37}, "organization": {"id": 993}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 317, "owner": {"id": 414}, "assignee": {"id": 585}, "organization": {"id": 635}, "project": {"owner": {"id": 35}, "assignee": {"id": 821}, "organization": {"id": 943}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 551}, "organization": {"id": 603}, "project": {"owner": {"id": 768}, "assignee": {"id": 86}, "organization": {"id": 947}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 90, "privilege": "user"}, "organization": {"id": 110, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 455}, "assignee": {"id": 555}, "organization": {"id": 110}, "project": {"owner": {"id": 90}, "assignee": {"id": 875}, "organization": {"id": 982}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": {"id": 160, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 590}, "organization": {"id": 160}, "project": {"owner": {"id": 734}, "assignee": {"id": 75}, "organization": {"id": 931}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 484}, "assignee": {"id": 516}, "organization": {"id": 617}, "project": {"owner": {"id": 66}, "assignee": {"id": 822}, "organization": {"id": 912}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 255}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 428}, "assignee": {"id": 551}, "organization": {"id": 125}, "project": {"owner": {"id": 716}, "assignee": {"id": 61}, "organization": {"id": 919}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 484}, "assignee": {"id": 551}, "organization": {"id": 181}, "project": {"owner": {"id": 59}, "assignee": {"id": 853}, "organization": {"id": 955}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 506}, "organization": {"id": 165}, "project": {"owner": {"id": 788}, "assignee": {"id": 99}, "organization": {"id": 982}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"id": 331, "owner": {"id": 446}, "assignee": {"id": 514}, "organization": {"id": 645}, "project": {"owner": {"id": 64}, "assignee": {"id": 871}, "organization": {"id": 913}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 160, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 526}, "organization": {"id": 664}, "project": {"owner": {"id": 719}, "assignee": {"id": 99}, "organization": {"id": 938}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"id": 320, "owner": {"id": 440}, "assignee": {"id": 511}, "organization": {"id": 188}, "project": {"owner": {"id": 41}, "assignee": {"id": 830}, "organization": {"id": 942}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 523}, "organization": {"id": 667}, "project": {"owner": {"id": 771}, "assignee": {"id": 1}, "organization": {"id": 905}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 487}, "assignee": {"id": 520}, "organization": {"id": 627}, "project": {"owner": {"id": 71}, "assignee": {"id": 862}, "organization": {"id": 989}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 568}, "organization": {"id": 698}, "project": {"owner": {"id": 713}, "assignee": {"id": 61}, "organization": {"id": 906}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 45, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 358, "owner": {"id": 495}, "assignee": {"id": 516}, "organization": {"id": 112}, "project": {"owner": {"id": 45}, "assignee": {"id": 873}, "organization": {"id": 924}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 479}, "assignee": {"id": 598}, "organization": {"id": 195}, "project": {"owner": {"id": 739}, "assignee": {"id": 48}, "organization": {"id": 905}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 383, "owner": {"id": 411}, "assignee": {"id": 531}, "organization": {"id": 647}, "project": {"owner": {"id": 39}, "assignee": {"id": 896}, "organization": {"id": 945}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 562}, "organization": {"id": 141}, "project": {"owner": {"id": 724}, "assignee": {"id": 63}, "organization": {"id": 938}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 264}, "user": {"role": null}}}, "resource": {"id": 391, "owner": {"id": 445}, "assignee": {"id": 511}, "organization": {"id": 117}, "project": {"owner": {"id": 98}, "assignee": {"id": 802}, "organization": {"id": 936}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 507}, "organization": {"id": 146}, "project": {"owner": {"id": 791}, "assignee": {"id": 13}, "organization": {"id": 996}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"id": 356, "owner": {"id": 433}, "assignee": {"id": 596}, "organization": {"id": 622}, "project": {"owner": {"id": 69}, "assignee": {"id": 872}, "organization": {"id": 921}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 245}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 424}, "assignee": {"id": 593}, "organization": {"id": 685}, "project": {"owner": {"id": 705}, "assignee": {"id": 42}, "organization": {"id": 984}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 484}, "assignee": {"id": 596}, "organization": {"id": 187}, "project": {"owner": {"id": 11}, "assignee": {"id": 892}, "organization": {"id": 948}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 553}, "organization": {"id": 646}, "project": {"owner": {"id": 750}, "assignee": {"id": 0}, "organization": {"id": 958}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 496}, "assignee": {"id": 595}, "organization": {"id": 646}, "project": {"owner": {"id": 75}, "assignee": {"id": 886}, "organization": {"id": 998}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 575}, "organization": {"id": 695}, "project": {"owner": {"id": 749}, "assignee": {"id": 84}, "organization": {"id": 980}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 491}, "assignee": {"id": 581}, "organization": {"id": 133}, "project": {"owner": {"id": 72}, "assignee": {"id": 832}, "organization": {"id": 949}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 526}, "organization": {"id": 115}, "project": {"owner": {"id": 745}, "assignee": {"id": 51}, "organization": {"id": 909}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 408}, "assignee": {"id": 538}, "organization": {"id": 674}, "project": {"owner": {"id": 85}, "assignee": {"id": 878}, "organization": {"id": 983}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 281}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 404}, "assignee": {"id": 504}, "organization": {"id": 180}, "project": {"owner": {"id": 778}, "assignee": {"id": 70}, "organization": {"id": 907}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 492}, "assignee": {"id": 577}, "organization": {"id": 165}, "project": {"owner": {"id": 28}, "assignee": {"id": 816}, "organization": {"id": 974}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 585}, "organization": {"id": 120}, "project": {"owner": {"id": 782}, "assignee": {"id": 43}, "organization": {"id": 946}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 210}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 461}, "assignee": {"id": 557}, "organization": {"id": 676}, "project": {"owner": {"id": 76}, "assignee": {"id": 806}, "organization": {"id": 998}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 564}, "organization": {"id": 669}, "project": {"owner": {"id": 799}, "assignee": {"id": 7}, "organization": {"id": 962}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 48, "privilege": "worker"}, "organization": {"id": 156, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 396, "owner": {"id": 467}, "assignee": {"id": 593}, "organization": {"id": 156}, "project": {"owner": {"id": 48}, "assignee": {"id": 881}, "organization": {"id": 940}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 540}, "organization": {"id": 693}, "project": {"owner": {"id": 753}, "assignee": {"id": 57}, "organization": {"id": 906}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 497}, "assignee": {"id": 541}, "organization": {"id": 645}, "project": {"owner": {"id": 36}, "assignee": {"id": 870}, "organization": {"id": 900}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 224}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 466}, "assignee": {"id": 544}, "organization": {"id": 682}, "project": {"owner": {"id": 772}, "assignee": {"id": 85}, "organization": {"id": 960}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"id": 343, "owner": {"id": 456}, "assignee": {"id": 537}, "organization": {"id": 131}, "project": {"owner": {"id": 91}, "assignee": {"id": 886}, "organization": {"id": 958}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 510}, "organization": {"id": 134}, "project": {"owner": {"id": 788}, "assignee": {"id": 57}, "organization": {"id": 924}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 266}, "user": {"role": null}}}, "resource": {"id": 388, "owner": {"id": 428}, "assignee": {"id": 534}, "organization": {"id": 677}, "project": {"owner": {"id": 28}, "assignee": {"id": 857}, "organization": {"id": 935}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"owner": {"id": 429}, "assignee": {"id": 503}, "organization": {"id": 104}, "project": {"owner": {"id": 794}, "assignee": {"id": 86}, "organization": {"id": 975}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 190, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 446}, "assignee": {"id": 558}, "organization": {"id": 190}, "project": {"owner": {"id": 44}, "assignee": {"id": 817}, "organization": {"id": 930}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 529}, "organization": {"id": 163}, "project": {"owner": {"id": 735}, "assignee": {"id": 12}, "organization": {"id": 922}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 419}, "assignee": {"id": 535}, "organization": {"id": 639}, "project": {"owner": {"id": 90}, "assignee": {"id": 898}, "organization": {"id": 951}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 532}, "organization": {"id": 627}, "project": {"owner": {"id": 756}, "assignee": {"id": 16}, "organization": {"id": 950}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 353, "owner": {"id": 468}, "assignee": {"id": 579}, "organization": {"id": 144}, "project": {"owner": {"id": 38}, "assignee": {"id": 834}, "organization": {"id": 961}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 535}, "organization": {"id": 671}, "project": {"owner": {"id": 749}, "assignee": {"id": 90}, "organization": {"id": 999}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 476}, "assignee": {"id": 555}, "organization": {"id": 601}, "project": {"owner": {"id": 72}, "assignee": {"id": 858}, "organization": {"id": 918}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 537}, "organization": {"id": 675}, "project": {"owner": {"id": 778}, "assignee": {"id": 99}, "organization": {"id": 966}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 385, "owner": {"id": 418}, "assignee": {"id": 584}, "organization": {"id": 177}, "project": {"owner": {"id": 69}, "assignee": {"id": 808}, "organization": {"id": 959}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 59}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 552}, "organization": {"id": 108}, "project": {"owner": {"id": 756}, "assignee": {"id": 820}, "organization": {"id": 923}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"id": 385, "owner": {"id": 496}, "assignee": {"id": 526}, "organization": {"id": 600}, "project": {"owner": {"id": 95}, "assignee": {"id": 823}, "organization": {"id": 999}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 197, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 598}, "organization": {"id": 197}, "project": {"owner": {"id": 734}, "assignee": {"id": 883}, "organization": {"id": 900}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"id": 389, "owner": {"id": 449}, "assignee": {"id": 501}, "organization": {"id": 175}, "project": {"owner": {"id": 33}, "assignee": {"id": 893}, "organization": {"id": 978}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 529}, "organization": {"id": 182}, "project": {"owner": {"id": 728}, "assignee": {"id": 875}, "organization": {"id": 994}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 452}, "assignee": {"id": 536}, "organization": {"id": 643}, "project": {"owner": {"id": 98}, "assignee": {"id": 834}, "organization": {"id": 978}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 560}, "organization": {"id": 686}, "project": {"owner": {"id": 799}, "assignee": {"id": 824}, "organization": {"id": 987}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 469}, "assignee": {"id": 540}, "organization": {"id": 109}, "project": {"owner": {"id": 36}, "assignee": {"id": 820}, "organization": {"id": 989}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 536}, "organization": {"id": 685}, "project": {"owner": {"id": 711}, "assignee": {"id": 844}, "organization": {"id": 918}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 263}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 463}, "assignee": {"id": 553}, "organization": {"id": 695}, "project": {"owner": {"id": 32}, "assignee": {"id": 857}, "organization": {"id": 997}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 527}, "organization": {"id": 666}, "project": {"owner": {"id": 719}, "assignee": {"id": 810}, "organization": {"id": 929}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"id": 319, "owner": {"id": 449}, "assignee": {"id": 517}, "organization": {"id": 144}, "project": {"owner": {"id": 753}, "assignee": {"id": 87}, "organization": {"id": 915}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 515}, "organization": {"id": 105}, "project": {"owner": {"id": 741}, "assignee": {"id": 802}, "organization": {"id": 993}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 71, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"id": 333, "owner": {"id": 421}, "assignee": {"id": 599}, "organization": {"id": 688}, "project": {"owner": {"id": 728}, "assignee": {"id": 71}, "organization": {"id": 916}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 599}, "organization": {"id": 165}, "project": {"owner": {"id": 765}, "assignee": {"id": 838}, "organization": {"id": 941}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 119, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 323, "owner": {"id": 444}, "assignee": {"id": 573}, "organization": {"id": 119}, "project": {"owner": {"id": 750}, "assignee": {"id": 2}, "organization": {"id": 926}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 481}, "assignee": {"id": 548}, "organization": {"id": 192}, "project": {"owner": {"id": 736}, "assignee": {"id": 814}, "organization": {"id": 912}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 388, "owner": {"id": 428}, "assignee": {"id": 518}, "organization": {"id": 625}, "project": {"owner": {"id": 769}, "assignee": {"id": 58}, "organization": {"id": 979}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 101, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 555}, "organization": {"id": 640}, "project": {"owner": {"id": 767}, "assignee": {"id": 869}, "organization": {"id": 927}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 439}, "assignee": {"id": 549}, "organization": {"id": 167}, "project": {"owner": {"id": 794}, "assignee": {"id": 89}, "organization": {"id": 939}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 463}, "assignee": {"id": 535}, "organization": {"id": 622}, "project": {"owner": {"id": 784}, "assignee": {"id": 819}, "organization": {"id": 908}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"id": 373, "owner": {"id": 487}, "assignee": {"id": 596}, "organization": {"id": 645}, "project": {"owner": {"id": 767}, "assignee": {"id": 65}, "organization": {"id": 904}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 419}, "assignee": {"id": 510}, "organization": {"id": 619}, "project": {"owner": {"id": 783}, "assignee": {"id": 858}, "organization": {"id": 920}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 102, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 490}, "assignee": {"id": 517}, "organization": {"id": 102}, "project": {"owner": {"id": 708}, "assignee": {"id": 16}, "organization": {"id": 910}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 170, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 466}, "assignee": {"id": 561}, "organization": {"id": 170}, "project": {"owner": {"id": 767}, "assignee": {"id": 874}, "organization": {"id": 929}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"id": 380, "owner": {"id": 432}, "assignee": {"id": 568}, "organization": {"id": 688}, "project": {"owner": {"id": 776}, "assignee": {"id": 18}, "organization": {"id": 906}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 545}, "organization": {"id": 179}, "project": {"owner": {"id": 742}, "assignee": {"id": 890}, "organization": {"id": 999}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 421}, "assignee": {"id": 567}, "organization": {"id": 154}, "project": {"owner": {"id": 786}, "assignee": {"id": 32}, "organization": {"id": 907}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 577}, "organization": {"id": 145}, "project": {"owner": {"id": 716}, "assignee": {"id": 839}, "organization": {"id": 969}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 342, "owner": {"id": 439}, "assignee": {"id": 519}, "organization": {"id": 663}, "project": {"owner": {"id": 788}, "assignee": {"id": 1}, "organization": {"id": 957}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 454}, "assignee": {"id": 526}, "organization": {"id": 627}, "project": {"owner": {"id": 776}, "assignee": {"id": 811}, "organization": {"id": 976}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 330, "owner": {"id": 469}, "assignee": {"id": 511}, "organization": {"id": 104}, "project": {"owner": {"id": 741}, "assignee": {"id": 13}, "organization": {"id": 974}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 419}, "assignee": {"id": 571}, "organization": {"id": 666}, "project": {"owner": {"id": 781}, "assignee": {"id": 805}, "organization": {"id": 956}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 431}, "assignee": {"id": 553}, "organization": {"id": 659}, "project": {"owner": {"id": 709}, "assignee": {"id": 58}, "organization": {"id": 982}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 452}, "assignee": {"id": 564}, "organization": {"id": 604}, "project": {"owner": {"id": 762}, "assignee": {"id": 832}, "organization": {"id": 984}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 343, "owner": {"id": 432}, "assignee": {"id": 516}, "organization": {"id": 161}, "project": {"owner": {"id": 780}, "assignee": {"id": 24}, "organization": {"id": 907}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 81, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 472}, "assignee": {"id": 521}, "organization": {"id": 193}, "project": {"owner": {"id": 785}, "assignee": {"id": 820}, "organization": {"id": 989}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"id": 383, "owner": {"id": 480}, "assignee": {"id": 547}, "organization": {"id": 674}, "project": {"owner": {"id": 748}, "assignee": {"id": 62}, "organization": {"id": 971}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 283}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 561}, "organization": {"id": 173}, "project": {"owner": {"id": 770}, "assignee": {"id": 817}, "organization": {"id": 955}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 149, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"id": 340, "owner": {"id": 409}, "assignee": {"id": 534}, "organization": {"id": 149}, "project": {"owner": {"id": 719}, "assignee": {"id": 82}, "organization": {"id": 937}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 404}, "assignee": {"id": 501}, "organization": {"id": 120}, "project": {"owner": {"id": 705}, "assignee": {"id": 860}, "organization": {"id": 972}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 432}, "assignee": {"id": 516}, "organization": {"id": 672}, "project": {"owner": {"id": 738}, "assignee": {"id": 45}, "organization": {"id": 986}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 599}, "organization": {"id": 616}, "project": {"owner": {"id": 782}, "assignee": {"id": 805}, "organization": {"id": 908}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 495}, "assignee": {"id": 597}, "organization": {"id": 114}, "project": {"owner": {"id": 780}, "assignee": {"id": 62}, "organization": {"id": 993}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 571}, "organization": {"id": 661}, "project": {"owner": {"id": 799}, "assignee": {"id": 893}, "organization": {"id": 974}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 417}, "assignee": {"id": 580}, "organization": {"id": 668}, "project": {"owner": {"id": 721}, "assignee": {"id": 89}, "organization": {"id": 927}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 189, "owner": {"id": 292}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 574}, "organization": {"id": 636}, "project": {"owner": {"id": 792}, "assignee": {"id": 822}, "organization": {"id": 992}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 312, "owner": {"id": 415}, "assignee": {"id": 572}, "organization": {"id": 167}, "project": {"owner": {"id": 702}, "assignee": {"id": 43}, "organization": {"id": 902}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 172, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 520}, "organization": {"id": 172}, "project": {"owner": {"id": 755}, "assignee": {"id": 873}, "organization": {"id": 989}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 369, "owner": {"id": 498}, "assignee": {"id": 550}, "organization": {"id": 611}, "project": {"owner": {"id": 752}, "assignee": {"id": 2}, "organization": {"id": 946}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"owner": {"id": 452}, "assignee": {"id": 597}, "organization": {"id": 111}, "project": {"owner": {"id": 751}, "assignee": {"id": 817}, "organization": {"id": 983}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 472}, "assignee": {"id": 532}, "organization": {"id": 175}, "project": {"owner": {"id": 710}, "assignee": {"id": 7}, "organization": {"id": 940}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"owner": {"id": 474}, "assignee": {"id": 548}, "organization": {"id": 180}, "project": {"owner": {"id": 749}, "assignee": {"id": 832}, "organization": {"id": 950}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"id": 391, "owner": {"id": 432}, "assignee": {"id": 535}, "organization": {"id": 656}, "project": {"owner": {"id": 769}, "assignee": {"id": 50}, "organization": {"id": 900}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 277}, "user": {"role": null}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 531}, "organization": {"id": 684}, "project": {"owner": {"id": 772}, "assignee": {"id": 866}, "organization": {"id": 925}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 404}, "assignee": {"id": 558}, "organization": {"id": 179}, "project": {"owner": {"id": 745}, "assignee": {"id": 72}, "organization": {"id": 990}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 116, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 515}, "organization": {"id": 645}, "project": {"owner": {"id": 777}, "assignee": {"id": 820}, "organization": {"id": 940}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 290}, "user": {"role": "maintainer"}}}, "resource": {"id": 324, "owner": {"id": 433}, "assignee": {"id": 518}, "organization": {"id": 657}, "project": {"owner": {"id": 786}, "assignee": {"id": 32}, "organization": {"id": 978}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"owner": {"id": 480}, "assignee": {"id": 523}, "organization": {"id": 691}, "project": {"owner": {"id": 746}, "assignee": {"id": 805}, "organization": {"id": 968}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 496}, "assignee": {"id": 526}, "organization": {"id": 152}, "project": {"owner": {"id": 752}, "assignee": {"id": 41}, "organization": {"id": 932}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 532}, "organization": {"id": 128}, "project": {"owner": {"id": 710}, "assignee": {"id": 896}, "organization": {"id": 908}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"id": 371, "owner": {"id": 461}, "assignee": {"id": 545}, "organization": {"id": 602}, "project": {"owner": {"id": 793}, "assignee": {"id": 42}, "organization": {"id": 905}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 549}, "organization": {"id": 171}, "project": {"owner": {"id": 705}, "assignee": {"id": 822}, "organization": {"id": 989}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 174, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 400}, "assignee": {"id": 568}, "organization": {"id": 174}, "project": {"owner": {"id": 707}, "assignee": {"id": 53}, "organization": {"id": 952}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 594}, "organization": {"id": 140}, "project": {"owner": {"id": 718}, "assignee": {"id": 818}, "organization": {"id": 987}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 172, "owner": {"id": 228}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 494}, "assignee": {"id": 534}, "organization": {"id": 687}, "project": {"owner": {"id": 721}, "assignee": {"id": 59}, "organization": {"id": 937}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 539}, "organization": {"id": 669}, "project": {"owner": {"id": 735}, "assignee": {"id": 891}, "organization": {"id": 994}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 435}, "assignee": {"id": 549}, "organization": {"id": 141}, "project": {"owner": {"id": 762}, "assignee": {"id": 18}, "organization": {"id": 991}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 38}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 503}, "organization": {"id": 694}, "project": {"owner": {"id": 718}, "assignee": {"id": 812}, "organization": {"id": 925}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 68, "privilege": "user"}, "organization": {"id": 145, "owner": {"id": 237}, "user": {"role": null}}}, "resource": {"id": 383, "owner": {"id": 430}, "assignee": {"id": 591}, "organization": {"id": 625}, "project": {"owner": {"id": 708}, "assignee": {"id": 68}, "organization": {"id": 939}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 543}, "organization": {"id": 635}, "project": {"owner": {"id": 780}, "assignee": {"id": 831}, "organization": {"id": 973}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"id": 357, "owner": {"id": 434}, "assignee": {"id": 522}, "organization": {"id": 138}, "project": {"owner": {"id": 799}, "assignee": {"id": 35}, "organization": {"id": 900}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 525}, "organization": {"id": 107}, "project": {"owner": {"id": 715}, "assignee": {"id": 850}, "organization": {"id": 910}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 428}, "assignee": {"id": 519}, "organization": {"id": 673}, "project": {"owner": {"id": 734}, "assignee": {"id": 44}, "organization": {"id": 978}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 594}, "organization": {"id": 112}, "project": {"owner": {"id": 764}, "assignee": {"id": 837}, "organization": {"id": 954}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 458}, "assignee": {"id": 553}, "organization": {"id": 154}, "project": {"owner": {"id": 742}, "assignee": {"id": 27}, "organization": {"id": 920}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 531}, "organization": {"id": 181}, "project": {"owner": {"id": 780}, "assignee": {"id": 826}, "organization": {"id": 920}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 401}, "assignee": {"id": 599}, "organization": {"id": 623}, "project": {"owner": {"id": 710}, "assignee": {"id": 35}, "organization": {"id": 908}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 563}, "organization": {"id": 696}, "project": {"owner": {"id": 754}, "assignee": {"id": 821}, "organization": {"id": 983}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 398, "owner": {"id": 407}, "assignee": {"id": 586}, "organization": {"id": 101}, "project": {"owner": {"id": 748}, "assignee": {"id": 59}, "organization": {"id": 979}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 528}, "organization": {"id": 618}, "project": {"owner": {"id": 749}, "assignee": {"id": 853}, "organization": {"id": 992}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"id": 304, "owner": {"id": 458}, "assignee": {"id": 547}, "organization": {"id": 614}, "project": {"owner": {"id": 777}, "assignee": {"id": 94}, "organization": {"id": 976}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 452}, "assignee": {"id": 595}, "organization": {"id": 626}, "project": {"owner": {"id": 772}, "assignee": {"id": 851}, "organization": {"id": 945}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 316, "owner": {"id": 470}, "assignee": {"id": 594}, "organization": {"id": 158}, "project": {"owner": {"id": 773}, "assignee": {"id": 57}, "organization": {"id": 930}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 585}, "organization": {"id": 106}, "project": {"owner": {"id": 737}, "assignee": {"id": 861}, "organization": {"id": 952}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 380, "owner": {"id": 495}, "assignee": {"id": 530}, "organization": {"id": 690}, "project": {"owner": {"id": 721}, "assignee": {"id": 38}, "organization": {"id": 956}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 583}, "organization": {"id": 177}, "project": {"owner": {"id": 774}, "assignee": {"id": 815}, "organization": {"id": 948}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 433}, "assignee": {"id": 597}, "organization": {"id": 121}, "project": {"owner": {"id": 738}, "assignee": {"id": 7}, "organization": {"id": 969}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 554}, "organization": {"id": 118}, "project": {"owner": {"id": 712}, "assignee": {"id": 894}, "organization": {"id": 929}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 391, "owner": {"id": 403}, "assignee": {"id": 585}, "organization": {"id": 646}, "project": {"owner": {"id": 757}, "assignee": {"id": 4}, "organization": {"id": 993}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 524}, "organization": {"id": 651}, "project": {"owner": {"id": 797}, "assignee": {"id": 843}, "organization": {"id": 976}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 199, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 395, "owner": {"id": 486}, "assignee": {"id": 555}, "organization": {"id": 199}, "project": {"owner": {"id": 779}, "assignee": {"id": 0}, "organization": {"id": 943}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 409}, "assignee": {"id": 553}, "organization": {"id": 651}, "project": {"owner": {"id": 715}, "assignee": {"id": 897}, "organization": {"id": 983}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 376, "owner": {"id": 446}, "assignee": {"id": 595}, "organization": {"id": 655}, "project": {"owner": {"id": 762}, "assignee": {"id": 65}, "organization": {"id": 942}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 550}, "organization": {"id": 659}, "project": {"owner": {"id": 716}, "assignee": {"id": 802}, "organization": {"id": 992}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 445}, "assignee": {"id": 571}, "organization": {"id": 151}, "project": {"owner": {"id": 736}, "assignee": {"id": 54}, "organization": {"id": 946}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 281}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 517}, "organization": {"id": 192}, "project": {"owner": {"id": 792}, "assignee": {"id": 849}, "organization": {"id": 947}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"id": 399, "owner": {"id": 419}, "assignee": {"id": 539}, "organization": {"id": 668}, "project": {"owner": {"id": 727}, "assignee": {"id": 4}, "organization": {"id": 921}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 258}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 588}, "organization": {"id": 133}, "project": {"owner": {"id": 789}, "assignee": {"id": 864}, "organization": {"id": 908}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 59, "privilege": "none"}, "organization": {"id": 154, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 453}, "assignee": {"id": 535}, "organization": {"id": 154}, "project": {"owner": {"id": 799}, "assignee": {"id": 59}, "organization": {"id": 969}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 558}, "organization": {"id": 101}, "project": {"owner": {"id": 739}, "assignee": {"id": 829}, "organization": {"id": 902}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 390, "owner": {"id": 458}, "assignee": {"id": 511}, "organization": {"id": 658}, "project": {"owner": {"id": 774}, "assignee": {"id": 54}, "organization": {"id": 922}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 550}, "organization": {"id": 618}, "project": {"owner": {"id": 716}, "assignee": {"id": 818}, "organization": {"id": 947}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 397, "owner": {"id": 443}, "assignee": {"id": 558}, "organization": {"id": 100}, "project": {"owner": {"id": 719}, "assignee": {"id": 43}, "organization": {"id": 903}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 502}, "organization": {"id": 653}, "project": {"owner": {"id": 779}, "assignee": {"id": 819}, "organization": {"id": 991}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 438}, "assignee": {"id": 547}, "organization": {"id": 645}, "project": {"owner": {"id": 785}, "assignee": {"id": 35}, "organization": {"id": 982}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 16, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 586}, "organization": {"id": 624}, "project": {"owner": {"id": 705}, "assignee": {"id": 855}, "organization": {"id": 909}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 492}, "assignee": {"id": 576}, "organization": {"id": 134}, "project": {"owner": {"id": 760}, "assignee": {"id": 9}, "organization": {"id": 907}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 548}, "organization": {"id": 138}, "project": {"owner": {"id": 751}, "assignee": {"id": 824}, "organization": {"id": 970}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 432}, "assignee": {"id": 570}, "organization": {"id": 653}, "project": {"owner": {"id": 762}, "assignee": {"id": 73}, "organization": {"id": 906}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 559}, "organization": {"id": 157}, "project": {"owner": {"id": 717}, "assignee": {"id": 879}, "organization": {"id": 939}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 326, "owner": {"id": 41}, "assignee": {"id": 550}, "organization": {"id": 188}, "project": {"owner": {"id": 756}, "assignee": {"id": 809}, "organization": {"id": 936}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 505}, "organization": {"id": 128}, "project": {"owner": {"id": 765}, "assignee": {"id": 809}, "organization": {"id": 986}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 37, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 37}, "assignee": {"id": 549}, "organization": {"id": 616}, "project": {"owner": {"id": 723}, "assignee": {"id": 892}, "organization": {"id": 947}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"owner": {"id": 428}, "assignee": {"id": 593}, "organization": {"id": 626}, "project": {"owner": {"id": 717}, "assignee": {"id": 814}, "organization": {"id": 936}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 70}, "assignee": {"id": 521}, "organization": {"id": 131}, "project": {"owner": {"id": 753}, "assignee": {"id": 828}, "organization": {"id": 983}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"owner": {"id": 473}, "assignee": {"id": 560}, "organization": {"id": 615}, "project": {"owner": {"id": 783}, "assignee": {"id": 823}, "organization": {"id": 911}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"id": 310, "owner": {"id": 20}, "assignee": {"id": 520}, "organization": {"id": 695}, "project": {"owner": {"id": 798}, "assignee": {"id": 881}, "organization": {"id": 945}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 166, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 574}, "organization": {"id": 651}, "project": {"owner": {"id": 733}, "assignee": {"id": 875}, "organization": {"id": 991}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 88}, "assignee": {"id": 501}, "organization": {"id": 183}, "project": {"owner": {"id": 757}, "assignee": {"id": 860}, "organization": {"id": 900}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 11, "privilege": "user"}, "organization": {"id": 145, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 565}, "organization": {"id": 145}, "project": {"owner": {"id": 753}, "assignee": {"id": 813}, "organization": {"id": 972}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 1}, "assignee": {"id": 589}, "organization": {"id": 614}, "project": {"owner": {"id": 768}, "assignee": {"id": 879}, "organization": {"id": 964}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 483}, "assignee": {"id": 532}, "organization": {"id": 106}, "project": {"owner": {"id": 701}, "assignee": {"id": 808}, "organization": {"id": 987}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 4}, "assignee": {"id": 540}, "organization": {"id": 152}, "project": {"owner": {"id": 785}, "assignee": {"id": 866}, "organization": {"id": 913}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 480}, "assignee": {"id": 523}, "organization": {"id": 178}, "project": {"owner": {"id": 774}, "assignee": {"id": 822}, "organization": {"id": 989}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 361, "owner": {"id": 13}, "assignee": {"id": 575}, "organization": {"id": 667}, "project": {"owner": {"id": 781}, "assignee": {"id": 837}, "organization": {"id": 945}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 483}, "assignee": {"id": 562}, "organization": {"id": 671}, "project": {"owner": {"id": 793}, "assignee": {"id": 890}, "organization": {"id": 976}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 51}, "assignee": {"id": 586}, "organization": {"id": 196}, "project": {"owner": {"id": 704}, "assignee": {"id": 805}, "organization": {"id": 940}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 404}, "assignee": {"id": 560}, "organization": {"id": 649}, "project": {"owner": {"id": 702}, "assignee": {"id": 801}, "organization": {"id": 926}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 364, "owner": {"id": 87}, "assignee": {"id": 509}, "organization": {"id": 667}, "project": {"owner": {"id": 720}, "assignee": {"id": 852}, "organization": {"id": 939}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 529}, "organization": {"id": 673}, "project": {"owner": {"id": 749}, "assignee": {"id": 866}, "organization": {"id": 939}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 349, "owner": {"id": 58}, "assignee": {"id": 575}, "organization": {"id": 132}, "project": {"owner": {"id": 709}, "assignee": {"id": 856}, "organization": {"id": 967}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 93, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 536}, "organization": {"id": 124}, "project": {"owner": {"id": 759}, "assignee": {"id": 807}, "organization": {"id": 953}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 350, "owner": {"id": 29}, "assignee": {"id": 554}, "organization": {"id": 670}, "project": {"owner": {"id": 719}, "assignee": {"id": 826}, "organization": {"id": 950}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 573}, "organization": {"id": 140}, "project": {"owner": {"id": 776}, "assignee": {"id": 873}, "organization": {"id": 918}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 149, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"id": 353, "owner": {"id": 98}, "assignee": {"id": 553}, "organization": {"id": 149}, "project": {"owner": {"id": 734}, "assignee": {"id": 821}, "organization": {"id": 996}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 474}, "assignee": {"id": 569}, "organization": {"id": 198}, "project": {"owner": {"id": 708}, "assignee": {"id": 811}, "organization": {"id": 965}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 67}, "assignee": {"id": 507}, "organization": {"id": 637}, "project": {"owner": {"id": 745}, "assignee": {"id": 888}, "organization": {"id": 972}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 270}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 599}, "organization": {"id": 689}, "project": {"owner": {"id": 761}, "assignee": {"id": 839}, "organization": {"id": 916}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 39}, "assignee": {"id": 580}, "organization": {"id": 191}, "project": {"owner": {"id": 711}, "assignee": {"id": 896}, "organization": {"id": 903}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 434}, "assignee": {"id": 509}, "organization": {"id": 612}, "project": {"owner": {"id": 721}, "assignee": {"id": 883}, "organization": {"id": 935}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"id": 391, "owner": {"id": 38}, "assignee": {"id": 545}, "organization": {"id": 638}, "project": {"owner": {"id": 783}, "assignee": {"id": 868}, "organization": {"id": 960}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 461}, "assignee": {"id": 505}, "organization": {"id": 658}, "project": {"owner": {"id": 755}, "assignee": {"id": 889}, "organization": {"id": 915}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"id": 357, "owner": {"id": 18}, "assignee": {"id": 562}, "organization": {"id": 119}, "project": {"owner": {"id": 700}, "assignee": {"id": 823}, "organization": {"id": 907}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 513}, "organization": {"id": 157}, "project": {"owner": {"id": 782}, "assignee": {"id": 898}, "organization": {"id": 922}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 333, "owner": {"id": 29}, "assignee": {"id": 590}, "organization": {"id": 676}, "project": {"owner": {"id": 746}, "assignee": {"id": 818}, "organization": {"id": 970}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { - allow with input as {"scope": "create@project", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 571}, "organization": {"id": 117}, "project": {"owner": {"id": 713}, "assignee": {"id": 866}, "organization": {"id": 972}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 309, "owner": {"id": 5}, "assignee": {"id": 532}, "organization": {"id": 185}, "project": {"owner": {"id": 746}, "assignee": {"id": 820}, "organization": {"id": 925}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 11, "privilege": "user"}, "organization": {"id": 123, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 531}, "organization": {"id": 123}, "project": {"owner": {"id": 732}, "assignee": {"id": 848}, "organization": {"id": 918}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"id": 381, "owner": {"id": 93}, "assignee": {"id": 514}, "organization": {"id": 669}, "project": {"owner": {"id": 790}, "assignee": {"id": 850}, "organization": {"id": 951}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 248}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 578}, "organization": {"id": 669}, "project": {"owner": {"id": 778}, "assignee": {"id": 813}, "organization": {"id": 962}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"id": 321, "owner": {"id": 79}, "assignee": {"id": 562}, "organization": {"id": 183}, "project": {"owner": {"id": 773}, "assignee": {"id": 874}, "organization": {"id": 995}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 526}, "organization": {"id": 663}, "project": {"owner": {"id": 781}, "assignee": {"id": 818}, "organization": {"id": 985}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 77}, "user": {"role": "owner"}}}, "resource": {"id": 384, "owner": {"id": 77}, "assignee": {"id": 565}, "organization": {"id": 679}, "project": {"owner": {"id": 747}, "assignee": {"id": 821}, "organization": {"id": 916}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 502}, "organization": {"id": 632}, "project": {"owner": {"id": 727}, "assignee": {"id": 840}, "organization": {"id": 913}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"id": 390, "owner": {"id": 84}, "assignee": {"id": 518}, "organization": {"id": 132}, "project": {"owner": {"id": 712}, "assignee": {"id": 891}, "organization": {"id": 936}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 174, "owner": {"id": 281}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 473}, "assignee": {"id": 557}, "organization": {"id": 174}, "project": {"owner": {"id": 746}, "assignee": {"id": 801}, "organization": {"id": 926}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 79}, "assignee": {"id": 551}, "organization": {"id": 637}, "project": {"owner": {"id": 753}, "assignee": {"id": 818}, "organization": {"id": 936}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 550}, "organization": {"id": 161}, "project": {"owner": {"id": 730}, "assignee": {"id": 865}, "organization": {"id": 954}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 330, "owner": {"id": 97}, "assignee": {"id": 534}, "organization": {"id": 177}, "project": {"owner": {"id": 781}, "assignee": {"id": 896}, "organization": {"id": 937}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 145, "owner": {"id": 228}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 580}, "organization": {"id": 145}, "project": {"owner": {"id": 717}, "assignee": {"id": 865}, "organization": {"id": 911}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"id": 367, "owner": {"id": 26}, "assignee": {"id": 541}, "organization": {"id": 692}, "project": {"owner": {"id": 771}, "assignee": {"id": 853}, "organization": {"id": 924}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 524}, "organization": {"id": 692}, "project": {"owner": {"id": 789}, "assignee": {"id": 831}, "organization": {"id": 986}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 48}, "assignee": {"id": 537}, "organization": {"id": 140}, "project": {"owner": {"id": 788}, "assignee": {"id": 872}, "organization": {"id": 993}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 591}, "organization": {"id": 676}, "project": {"owner": {"id": 754}, "assignee": {"id": 803}, "organization": {"id": 976}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 38}, "assignee": {"id": 546}, "organization": {"id": 693}, "project": {"owner": {"id": 783}, "assignee": {"id": 856}, "organization": {"id": 992}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 558}, "organization": {"id": 620}, "project": {"owner": {"id": 796}, "assignee": {"id": 823}, "organization": {"id": 927}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"id": 307, "owner": {"id": 96}, "assignee": {"id": 531}, "organization": {"id": 114}, "project": {"owner": {"id": 730}, "assignee": {"id": 867}, "organization": {"id": 914}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 580}, "organization": {"id": 115}, "project": {"owner": {"id": 769}, "assignee": {"id": 888}, "organization": {"id": 989}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"id": 322, "owner": {"id": 40}, "assignee": {"id": 541}, "organization": {"id": 641}, "project": {"owner": {"id": 799}, "assignee": {"id": 881}, "organization": {"id": 980}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 286}, "user": {"role": null}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 532}, "organization": {"id": 180}, "project": {"owner": {"id": 746}, "assignee": {"id": 834}, "organization": {"id": 917}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 72}, "user": {"role": "owner"}}}, "resource": {"id": 343, "owner": {"id": 72}, "assignee": {"id": 524}, "organization": {"id": 180}, "project": {"owner": {"id": 754}, "assignee": {"id": 838}, "organization": {"id": 977}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 273}, "user": {"role": null}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 557}, "organization": {"id": 121}, "project": {"owner": {"id": 751}, "assignee": {"id": 886}, "organization": {"id": 948}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 319, "owner": {"id": 9}, "assignee": {"id": 568}, "organization": {"id": 699}, "project": {"owner": {"id": 702}, "assignee": {"id": 805}, "organization": {"id": 943}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 515}, "organization": {"id": 687}, "project": {"owner": {"id": 785}, "assignee": {"id": 821}, "organization": {"id": 968}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"id": 300, "owner": {"id": 28}, "assignee": {"id": 529}, "organization": {"id": 180}, "project": {"owner": {"id": 734}, "assignee": {"id": 822}, "organization": {"id": 997}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 243}, "user": {"role": null}}}, "resource": {"owner": {"id": 429}, "assignee": {"id": 593}, "organization": {"id": 699}, "project": {"owner": {"id": 701}, "assignee": {"id": 865}, "organization": {"id": 964}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 35}, "assignee": {"id": 557}, "organization": {"id": 646}, "project": {"owner": {"id": 782}, "assignee": {"id": 898}, "organization": {"id": 963}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 547}, "organization": {"id": 652}, "project": {"owner": {"id": 787}, "assignee": {"id": 845}, "organization": {"id": 904}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 90}, "assignee": {"id": 537}, "organization": {"id": 184}, "project": {"owner": {"id": 770}, "assignee": {"id": 832}, "organization": {"id": 965}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 474}, "assignee": {"id": 565}, "organization": {"id": 163}, "project": {"owner": {"id": 708}, "assignee": {"id": 854}, "organization": {"id": 910}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 394, "owner": {"id": 74}, "assignee": {"id": 564}, "organization": {"id": 691}, "project": {"owner": {"id": 724}, "assignee": {"id": 845}, "organization": {"id": 970}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 528}, "organization": {"id": 177}, "project": {"owner": {"id": 717}, "assignee": {"id": 865}, "organization": {"id": 908}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 217}, "user": {"role": "worker"}}}, "resource": {"id": 394, "owner": {"id": 57}, "assignee": {"id": 543}, "organization": {"id": 172}, "project": {"owner": {"id": 756}, "assignee": {"id": 899}, "organization": {"id": 909}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 585}, "organization": {"id": 127}, "project": {"owner": {"id": 793}, "assignee": {"id": 843}, "organization": {"id": 953}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 320, "owner": {"id": 40}, "assignee": {"id": 500}, "organization": {"id": 628}, "project": {"owner": {"id": 724}, "assignee": {"id": 879}, "organization": {"id": 983}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 77}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 585}, "organization": {"id": 697}, "project": {"owner": {"id": 764}, "assignee": {"id": 883}, "organization": {"id": 916}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 210}, "user": {"role": null}}}, "resource": {"id": 362, "owner": {"id": 66}, "assignee": {"id": 520}, "organization": {"id": 149}, "project": {"owner": {"id": 709}, "assignee": {"id": 897}, "organization": {"id": 971}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 196, "owner": {"id": 59}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 536}, "organization": {"id": 602}, "project": {"owner": {"id": 710}, "assignee": {"id": 884}, "organization": {"id": 962}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 263}, "user": {"role": null}}}, "resource": {"id": 336, "owner": {"id": 40}, "assignee": {"id": 530}, "organization": {"id": 604}, "project": {"owner": {"id": 716}, "assignee": {"id": 888}, "organization": {"id": 974}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 15}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 559}, "organization": {"id": 698}, "project": {"owner": {"id": 742}, "assignee": {"id": 848}, "organization": {"id": 959}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 199, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 330, "owner": {"id": 58}, "assignee": {"id": 541}, "organization": {"id": 199}, "project": {"owner": {"id": 703}, "assignee": {"id": 837}, "organization": {"id": 944}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 594}, "organization": {"id": 183}, "project": {"owner": {"id": 718}, "assignee": {"id": 843}, "organization": {"id": 967}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 178, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 67}, "assignee": {"id": 554}, "organization": {"id": 691}, "project": {"owner": {"id": 782}, "assignee": {"id": 879}, "organization": {"id": 932}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 48, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 550}, "organization": {"id": 159}, "project": {"owner": {"id": 703}, "assignee": {"id": 881}, "organization": {"id": 931}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 205}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 15}, "assignee": {"id": 573}, "organization": {"id": 167}, "project": {"owner": {"id": 740}, "assignee": {"id": 825}, "organization": {"id": 964}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 581}, "organization": {"id": 142}, "project": {"owner": {"id": 793}, "assignee": {"id": 834}, "organization": {"id": 970}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 399, "owner": {"id": 0}, "assignee": {"id": 581}, "organization": {"id": 648}, "project": {"owner": {"id": 707}, "assignee": {"id": 874}, "organization": {"id": 993}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 282}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 584}, "organization": {"id": 663}, "project": {"owner": {"id": 725}, "assignee": {"id": 828}, "organization": {"id": 901}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 27}, "assignee": {"id": 513}, "organization": {"id": 155}, "project": {"owner": {"id": 753}, "assignee": {"id": 855}, "organization": {"id": 993}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 573}, "organization": {"id": 655}, "project": {"owner": {"id": 724}, "assignee": {"id": 862}, "organization": {"id": 949}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 277}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 19}, "assignee": {"id": 519}, "organization": {"id": 659}, "project": {"owner": {"id": 754}, "assignee": {"id": 899}, "organization": {"id": 953}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 297}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 512}, "organization": {"id": 688}, "project": {"owner": {"id": 769}, "assignee": {"id": 835}, "organization": {"id": 969}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"id": 338, "owner": {"id": 39}, "assignee": {"id": 517}, "organization": {"id": 164}, "project": {"owner": {"id": 756}, "assignee": {"id": 863}, "organization": {"id": 966}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 485}, "assignee": {"id": 572}, "organization": {"id": 162}, "project": {"owner": {"id": 745}, "assignee": {"id": 882}, "organization": {"id": 949}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": {"id": 150, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 328, "owner": {"id": 50}, "assignee": {"id": 503}, "organization": {"id": 632}, "project": {"owner": {"id": 747}, "assignee": {"id": 864}, "organization": {"id": 902}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 264}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 574}, "organization": {"id": 153}, "project": {"owner": {"id": 782}, "assignee": {"id": 879}, "organization": {"id": 936}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"id": 342, "owner": {"id": 66}, "assignee": {"id": 579}, "organization": {"id": 117}, "project": {"owner": {"id": 701}, "assignee": {"id": 806}, "organization": {"id": 991}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 532}, "organization": {"id": 175}, "project": {"owner": {"id": 757}, "assignee": {"id": 873}, "organization": {"id": 941}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 26}, "assignee": {"id": 502}, "organization": {"id": 626}, "project": {"owner": {"id": 787}, "assignee": {"id": 866}, "organization": {"id": 940}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 551}, "organization": {"id": 687}, "project": {"owner": {"id": 779}, "assignee": {"id": 828}, "organization": {"id": 974}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 444}, "assignee": {"id": 91}, "organization": {"id": 104}, "project": {"owner": {"id": 789}, "assignee": {"id": 891}, "organization": {"id": 905}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 456}, "assignee": {"id": 564}, "organization": {"id": 645}, "project": {"owner": {"id": 776}, "assignee": {"id": 881}, "organization": {"id": 926}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 400}, "assignee": {"id": 43}, "organization": {"id": 615}, "project": {"owner": {"id": 737}, "assignee": {"id": 862}, "organization": {"id": 939}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 291}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 526}, "organization": {"id": 674}, "project": {"owner": {"id": 780}, "assignee": {"id": 886}, "organization": {"id": 936}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"id": 304, "owner": {"id": 429}, "assignee": {"id": 3}, "organization": {"id": 154}, "project": {"owner": {"id": 721}, "assignee": {"id": 831}, "organization": {"id": 977}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 426}, "assignee": {"id": 532}, "organization": {"id": 121}, "project": {"owner": {"id": 757}, "assignee": {"id": 810}, "organization": {"id": 984}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 76, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 476}, "assignee": {"id": 76}, "organization": {"id": 667}, "project": {"owner": {"id": 794}, "assignee": {"id": 822}, "organization": {"id": 982}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 456}, "assignee": {"id": 559}, "organization": {"id": 191}, "project": {"owner": {"id": 723}, "assignee": {"id": 887}, "organization": {"id": 942}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"id": 328, "owner": {"id": 480}, "assignee": {"id": 49}, "organization": {"id": 120}, "project": {"owner": {"id": 748}, "assignee": {"id": 870}, "organization": {"id": 902}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 508}, "organization": {"id": 101}, "project": {"owner": {"id": 726}, "assignee": {"id": 840}, "organization": {"id": 900}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 352, "owner": {"id": 474}, "assignee": {"id": 4}, "organization": {"id": 637}, "project": {"owner": {"id": 702}, "assignee": {"id": 814}, "organization": {"id": 965}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 513}, "organization": {"id": 659}, "project": {"owner": {"id": 729}, "assignee": {"id": 865}, "organization": {"id": 950}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 466}, "assignee": {"id": 2}, "organization": {"id": 104}, "project": {"owner": {"id": 731}, "assignee": {"id": 802}, "organization": {"id": 983}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 292}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 560}, "organization": {"id": 651}, "project": {"owner": {"id": 716}, "assignee": {"id": 833}, "organization": {"id": 979}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"id": 307, "owner": {"id": 419}, "assignee": {"id": 16}, "organization": {"id": 697}, "project": {"owner": {"id": 734}, "assignee": {"id": 864}, "organization": {"id": 916}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 404}, "assignee": {"id": 578}, "organization": {"id": 611}, "project": {"owner": {"id": 703}, "assignee": {"id": 878}, "organization": {"id": 937}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 332, "owner": {"id": 418}, "assignee": {"id": 41}, "organization": {"id": 167}, "project": {"owner": {"id": 772}, "assignee": {"id": 876}, "organization": {"id": 923}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"owner": {"id": 456}, "assignee": {"id": 562}, "organization": {"id": 137}, "project": {"owner": {"id": 776}, "assignee": {"id": 825}, "organization": {"id": 942}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 427}, "assignee": {"id": 41}, "organization": {"id": 655}, "project": {"owner": {"id": 733}, "assignee": {"id": 804}, "organization": {"id": 992}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 546}, "organization": {"id": 157}, "project": {"owner": {"id": 787}, "assignee": {"id": 843}, "organization": {"id": 966}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 457}, "assignee": {"id": 99}, "organization": {"id": 112}, "project": {"owner": {"id": 732}, "assignee": {"id": 869}, "organization": {"id": 909}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"owner": {"id": 457}, "assignee": {"id": 574}, "organization": {"id": 176}, "project": {"owner": {"id": 771}, "assignee": {"id": 804}, "organization": {"id": 997}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"id": 352, "owner": {"id": 492}, "assignee": {"id": 83}, "organization": {"id": 646}, "project": {"owner": {"id": 766}, "assignee": {"id": 820}, "organization": {"id": 908}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 528}, "organization": {"id": 644}, "project": {"owner": {"id": 736}, "assignee": {"id": 898}, "organization": {"id": 956}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 497}, "assignee": {"id": 79}, "organization": {"id": 188}, "project": {"owner": {"id": 790}, "assignee": {"id": 855}, "organization": {"id": 937}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 560}, "organization": {"id": 696}, "project": {"owner": {"id": 734}, "assignee": {"id": 814}, "organization": {"id": 936}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 328, "owner": {"id": 453}, "assignee": {"id": 61}, "organization": {"id": 664}, "project": {"owner": {"id": 791}, "assignee": {"id": 833}, "organization": {"id": 947}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 277}, "user": {"role": null}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 502}, "organization": {"id": 674}, "project": {"owner": {"id": 745}, "assignee": {"id": 877}, "organization": {"id": 983}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 367, "owner": {"id": 477}, "assignee": {"id": 81}, "organization": {"id": 134}, "project": {"owner": {"id": 710}, "assignee": {"id": 888}, "organization": {"id": 947}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 118, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 544}, "organization": {"id": 118}, "project": {"owner": {"id": 794}, "assignee": {"id": 866}, "organization": {"id": 994}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 174, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"id": 325, "owner": {"id": 429}, "assignee": {"id": 15}, "organization": {"id": 680}, "project": {"owner": {"id": 761}, "assignee": {"id": 883}, "organization": {"id": 917}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 580}, "organization": {"id": 135}, "project": {"owner": {"id": 753}, "assignee": {"id": 803}, "organization": {"id": 952}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 139, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 405}, "assignee": {"id": 31}, "organization": {"id": 139}, "project": {"owner": {"id": 758}, "assignee": {"id": 845}, "organization": {"id": 948}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 501}, "organization": {"id": 122}, "project": {"owner": {"id": 731}, "assignee": {"id": 871}, "organization": {"id": 965}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 450}, "assignee": {"id": 15}, "organization": {"id": 673}, "project": {"owner": {"id": 744}, "assignee": {"id": 893}, "organization": {"id": 943}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 8}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 461}, "assignee": {"id": 589}, "organization": {"id": 660}, "project": {"owner": {"id": 769}, "assignee": {"id": 835}, "organization": {"id": 992}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 244}, "user": {"role": null}}}, "resource": {"id": 374, "owner": {"id": 469}, "assignee": {"id": 97}, "organization": {"id": 184}, "project": {"owner": {"id": 794}, "assignee": {"id": 871}, "organization": {"id": 965}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 460}, "assignee": {"id": 555}, "organization": {"id": 639}, "project": {"owner": {"id": 774}, "assignee": {"id": 878}, "organization": {"id": 917}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 130, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 328, "owner": {"id": 498}, "assignee": {"id": 63}, "organization": {"id": 645}, "project": {"owner": {"id": 722}, "assignee": {"id": 870}, "organization": {"id": 984}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 463}, "assignee": {"id": 536}, "organization": {"id": 626}, "project": {"owner": {"id": 748}, "assignee": {"id": 860}, "organization": {"id": 932}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 464}, "assignee": {"id": 36}, "organization": {"id": 196}, "project": {"owner": {"id": 755}, "assignee": {"id": 880}, "organization": {"id": 972}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 480}, "assignee": {"id": 597}, "organization": {"id": 104}, "project": {"owner": {"id": 709}, "assignee": {"id": 859}, "organization": {"id": 991}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 307, "owner": {"id": 434}, "assignee": {"id": 74}, "organization": {"id": 660}, "project": {"owner": {"id": 749}, "assignee": {"id": 850}, "organization": {"id": 973}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 541}, "organization": {"id": 144}, "project": {"owner": {"id": 739}, "assignee": {"id": 814}, "organization": {"id": 922}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 45, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 409}, "assignee": {"id": 45}, "organization": {"id": 114}, "project": {"owner": {"id": 750}, "assignee": {"id": 886}, "organization": {"id": 916}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 577}, "organization": {"id": 117}, "project": {"owner": {"id": 717}, "assignee": {"id": 836}, "organization": {"id": 942}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 303, "owner": {"id": 403}, "assignee": {"id": 17}, "organization": {"id": 658}, "project": {"owner": {"id": 743}, "assignee": {"id": 838}, "organization": {"id": 900}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 461}, "assignee": {"id": 569}, "organization": {"id": 660}, "project": {"owner": {"id": 737}, "assignee": {"id": 864}, "organization": {"id": 969}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": {"id": 174, "owner": {"id": 277}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 442}, "assignee": {"id": 7}, "organization": {"id": 174}, "project": {"owner": {"id": 785}, "assignee": {"id": 804}, "organization": {"id": 916}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 150, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 557}, "organization": {"id": 647}, "project": {"owner": {"id": 726}, "assignee": {"id": 820}, "organization": {"id": 956}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 323, "owner": {"id": 443}, "assignee": {"id": 16}, "organization": {"id": 668}, "project": {"owner": {"id": 730}, "assignee": {"id": 896}, "organization": {"id": 998}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 492}, "assignee": {"id": 522}, "organization": {"id": 625}, "project": {"owner": {"id": 717}, "assignee": {"id": 842}, "organization": {"id": 999}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"id": 334, "owner": {"id": 426}, "assignee": {"id": 71}, "organization": {"id": 125}, "project": {"owner": {"id": 765}, "assignee": {"id": 853}, "organization": {"id": 966}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 581}, "organization": {"id": 138}, "project": {"owner": {"id": 798}, "assignee": {"id": 852}, "organization": {"id": 969}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 430}, "assignee": {"id": 26}, "organization": {"id": 640}, "project": {"owner": {"id": 790}, "assignee": {"id": 873}, "organization": {"id": 972}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 584}, "organization": {"id": 126}, "project": {"owner": {"id": 756}, "assignee": {"id": 871}, "organization": {"id": 998}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": {"id": 131, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 309, "owner": {"id": 498}, "assignee": {"id": 98}, "organization": {"id": 131}, "project": {"owner": {"id": 757}, "assignee": {"id": 809}, "organization": {"id": 977}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 546}, "organization": {"id": 128}, "project": {"owner": {"id": 794}, "assignee": {"id": 872}, "organization": {"id": 946}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 417}, "assignee": {"id": 23}, "organization": {"id": 670}, "project": {"owner": {"id": 713}, "assignee": {"id": 828}, "organization": {"id": 981}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 282}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 424}, "assignee": {"id": 595}, "organization": {"id": 633}, "project": {"owner": {"id": 780}, "assignee": {"id": 824}, "organization": {"id": 937}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 435}, "assignee": {"id": 86}, "organization": {"id": 163}, "project": {"owner": {"id": 711}, "assignee": {"id": 814}, "organization": {"id": 990}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 424}, "assignee": {"id": 510}, "organization": {"id": 681}, "project": {"owner": {"id": 775}, "assignee": {"id": 817}, "organization": {"id": 928}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 433}, "assignee": {"id": 94}, "organization": {"id": 687}, "project": {"owner": {"id": 742}, "assignee": {"id": 869}, "organization": {"id": 964}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 590}, "organization": {"id": 629}, "project": {"owner": {"id": 735}, "assignee": {"id": 845}, "organization": {"id": 944}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 498}, "assignee": {"id": 71}, "organization": {"id": 167}, "project": {"owner": {"id": 738}, "assignee": {"id": 829}, "organization": {"id": 951}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 492}, "assignee": {"id": 541}, "organization": {"id": 112}, "project": {"owner": {"id": 766}, "assignee": {"id": 847}, "organization": {"id": 924}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 323, "owner": {"id": 424}, "assignee": {"id": 93}, "organization": {"id": 634}, "project": {"owner": {"id": 749}, "assignee": {"id": 819}, "organization": {"id": 955}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 536}, "organization": {"id": 144}, "project": {"owner": {"id": 764}, "assignee": {"id": 898}, "organization": {"id": 955}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 301, "owner": {"id": 430}, "assignee": {"id": 27}, "organization": {"id": 197}, "project": {"owner": {"id": 740}, "assignee": {"id": 865}, "organization": {"id": 945}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 547}, "organization": {"id": 125}, "project": {"owner": {"id": 728}, "assignee": {"id": 880}, "organization": {"id": 996}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 242}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 408}, "assignee": {"id": 57}, "organization": {"id": 662}, "project": {"owner": {"id": 797}, "assignee": {"id": 898}, "organization": {"id": 993}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 516}, "organization": {"id": 610}, "project": {"owner": {"id": 726}, "assignee": {"id": 832}, "organization": {"id": 946}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 442}, "assignee": {"id": 19}, "organization": {"id": 127}, "project": {"owner": {"id": 777}, "assignee": {"id": 854}, "organization": {"id": 997}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 542}, "organization": {"id": 644}, "project": {"owner": {"id": 728}, "assignee": {"id": 818}, "organization": {"id": 973}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 150, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 452}, "assignee": {"id": 74}, "organization": {"id": 628}, "project": {"owner": {"id": 792}, "assignee": {"id": 862}, "organization": {"id": 980}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 452}, "assignee": {"id": 506}, "organization": {"id": 634}, "project": {"owner": {"id": 702}, "assignee": {"id": 853}, "organization": {"id": 998}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 436}, "assignee": {"id": 97}, "organization": {"id": 140}, "project": {"owner": {"id": 781}, "assignee": {"id": 844}, "organization": {"id": 944}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 553}, "organization": {"id": 108}, "project": {"owner": {"id": 791}, "assignee": {"id": 892}, "organization": {"id": 924}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 319, "owner": {"id": 452}, "assignee": {"id": 70}, "organization": {"id": 635}, "project": {"owner": {"id": 786}, "assignee": {"id": 871}, "organization": {"id": 975}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 560}, "organization": {"id": 106}, "project": {"owner": {"id": 719}, "assignee": {"id": 812}, "organization": {"id": 904}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 458}, "assignee": {"id": 21}, "organization": {"id": 179}, "project": {"owner": {"id": 785}, "assignee": {"id": 845}, "organization": {"id": 922}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 534}, "organization": {"id": 103}, "project": {"owner": {"id": 777}, "assignee": {"id": 881}, "organization": {"id": 991}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 404}, "assignee": {"id": 27}, "organization": {"id": 604}, "project": {"owner": {"id": 717}, "assignee": {"id": 817}, "organization": {"id": 991}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"owner": {"id": 404}, "assignee": {"id": 552}, "organization": {"id": 683}, "project": {"owner": {"id": 774}, "assignee": {"id": 877}, "organization": {"id": 960}}, "user": {"num_resources": 0}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 403}, "assignee": {"id": 67}, "organization": {"id": 143}, "project": {"owner": {"id": 710}, "assignee": {"id": 894}, "organization": {"id": 965}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 566}, "organization": {"id": 612}, "project": {"owner": {"id": 746}, "assignee": {"id": 831}, "organization": {"id": 902}}, "user": {"num_resources": 3}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"id": 334, "owner": {"id": 476}, "assignee": {"id": 57}, "organization": {"id": 661}, "project": {"owner": {"id": 758}, "assignee": {"id": 827}, "organization": {"id": 900}}}} } -test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { - not allow with input as {"scope": "create@project", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"owner": {"id": 483}, "assignee": {"id": 532}, "organization": {"id": 607}, "project": {"owner": {"id": 777}, "assignee": {"id": 887}, "organization": {"id": 938}}, "user": {"num_resources": 10}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 436}, "assignee": {"id": 44}, "organization": {"id": 189}, "project": {"owner": {"id": 763}, "assignee": {"id": 817}, "organization": {"id": 995}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": null}, "resource": {"id": 303, "owner": {"id": 466}, "assignee": {"id": 506}, "organization": {"id": 644}, "project": {"owner": {"id": 39}, "assignee": {"id": 881}, "organization": {"id": 981}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 452}, "assignee": {"id": 61}, "organization": {"id": 601}, "project": {"owner": {"id": 710}, "assignee": {"id": 820}, "organization": {"id": 954}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": null}, "resource": {"id": 382, "owner": {"id": 439}, "assignee": {"id": 532}, "organization": {"id": 628}, "project": {"owner": {"id": 54}, "assignee": {"id": 845}, "organization": {"id": 920}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 353, "owner": {"id": 446}, "assignee": {"id": 42}, "organization": {"id": 170}, "project": {"owner": {"id": 732}, "assignee": {"id": 819}, "organization": {"id": 932}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": null}, "resource": {"id": 318, "owner": {"id": 488}, "assignee": {"id": 532}, "organization": {"id": 647}, "project": {"owner": {"id": 12}, "assignee": {"id": 883}, "organization": {"id": 919}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 445}, "assignee": {"id": 14}, "organization": {"id": 651}, "project": {"owner": {"id": 738}, "assignee": {"id": 819}, "organization": {"id": 981}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": null}, "resource": {"id": 319, "owner": {"id": 418}, "assignee": {"id": 503}, "organization": {"id": 674}, "project": {"owner": {"id": 14}, "assignee": {"id": 893}, "organization": {"id": 901}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 463}, "assignee": {"id": 30}, "organization": {"id": 169}, "project": {"owner": {"id": 701}, "assignee": {"id": 804}, "organization": {"id": 961}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": null}, "resource": {"id": 366, "owner": {"id": 401}, "assignee": {"id": 592}, "organization": {"id": 644}, "project": {"owner": {"id": 10}, "assignee": {"id": 811}, "organization": {"id": 961}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 333, "owner": {"id": 413}, "assignee": {"id": 52}, "organization": {"id": 632}, "project": {"owner": {"id": 772}, "assignee": {"id": 860}, "organization": {"id": 977}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": null}, "resource": {"id": 393, "owner": {"id": 456}, "assignee": {"id": 524}, "organization": {"id": 619}, "project": {"owner": {"id": 789}, "assignee": {"id": 87}, "organization": {"id": 945}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 197, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 454}, "assignee": {"id": 567}, "organization": {"id": 197}, "project": {"owner": {"id": 701}, "assignee": {"id": 810}, "organization": {"id": 932}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 91, "privilege": "business"}, "organization": null}, "resource": {"id": 353, "owner": {"id": 401}, "assignee": {"id": 565}, "organization": {"id": 622}, "project": {"owner": {"id": 755}, "assignee": {"id": 91}, "organization": {"id": 951}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 103, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"id": 345, "owner": {"id": 423}, "assignee": {"id": 590}, "organization": {"id": 661}, "project": {"owner": {"id": 737}, "assignee": {"id": 893}, "organization": {"id": 965}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": null}, "resource": {"id": 304, "owner": {"id": 485}, "assignee": {"id": 590}, "organization": {"id": 693}, "project": {"owner": {"id": 723}, "assignee": {"id": 72}, "organization": {"id": 967}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 418}, "assignee": {"id": 565}, "organization": {"id": 125}, "project": {"owner": {"id": 794}, "assignee": {"id": 866}, "organization": {"id": 906}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": null}, "resource": {"id": 350, "owner": {"id": 416}, "assignee": {"id": 595}, "organization": {"id": 657}, "project": {"owner": {"id": 759}, "assignee": {"id": 90}, "organization": {"id": 999}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 407}, "assignee": {"id": 581}, "organization": {"id": 658}, "project": {"owner": {"id": 717}, "assignee": {"id": 832}, "organization": {"id": 900}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": null}, "resource": {"id": 373, "owner": {"id": 460}, "assignee": {"id": 590}, "organization": {"id": 603}, "project": {"owner": {"id": 740}, "assignee": {"id": 13}, "organization": {"id": 948}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 295}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 491}, "assignee": {"id": 561}, "organization": {"id": 165}, "project": {"owner": {"id": 783}, "assignee": {"id": 861}, "organization": {"id": 964}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": null}, "resource": {"id": 359, "owner": {"id": 31}, "assignee": {"id": 594}, "organization": {"id": 692}, "project": {"owner": {"id": 736}, "assignee": {"id": 844}, "organization": {"id": 983}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 343, "owner": {"id": 494}, "assignee": {"id": 539}, "organization": {"id": 619}, "project": {"owner": {"id": 705}, "assignee": {"id": 827}, "organization": {"id": 995}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": null}, "resource": {"id": 388, "owner": {"id": 3}, "assignee": {"id": 517}, "organization": {"id": 609}, "project": {"owner": {"id": 796}, "assignee": {"id": 806}, "organization": {"id": 904}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 466}, "assignee": {"id": 568}, "organization": {"id": 166}, "project": {"owner": {"id": 703}, "assignee": {"id": 815}, "organization": {"id": 949}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": null}, "resource": {"id": 397, "owner": {"id": 27}, "assignee": {"id": 540}, "organization": {"id": 624}, "project": {"owner": {"id": 774}, "assignee": {"id": 839}, "organization": {"id": 994}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"id": 355, "owner": {"id": 493}, "assignee": {"id": 585}, "organization": {"id": 651}, "project": {"owner": {"id": 797}, "assignee": {"id": 819}, "organization": {"id": 913}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 12, "privilege": "worker"}, "organization": null}, "resource": {"id": 326, "owner": {"id": 12}, "assignee": {"id": 585}, "organization": {"id": 635}, "project": {"owner": {"id": 753}, "assignee": {"id": 864}, "organization": {"id": 916}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 396, "owner": {"id": 408}, "assignee": {"id": 582}, "organization": {"id": 138}, "project": {"owner": {"id": 748}, "assignee": {"id": 814}, "organization": {"id": 914}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": null}, "resource": {"id": 312, "owner": {"id": 6}, "assignee": {"id": 532}, "organization": {"id": 628}, "project": {"owner": {"id": 742}, "assignee": {"id": 862}, "organization": {"id": 966}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 210}, "user": {"role": null}}}, "resource": {"id": 373, "owner": {"id": 423}, "assignee": {"id": 571}, "organization": {"id": 620}, "project": {"owner": {"id": 758}, "assignee": {"id": 808}, "organization": {"id": 958}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": null}, "resource": {"id": 327, "owner": {"id": 426}, "assignee": {"id": 0}, "organization": {"id": 617}, "project": {"owner": {"id": 761}, "assignee": {"id": 803}, "organization": {"id": 978}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 383, "owner": {"id": 400}, "assignee": {"id": 530}, "organization": {"id": 128}, "project": {"owner": {"id": 780}, "assignee": {"id": 853}, "organization": {"id": 990}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": null}, "resource": {"id": 392, "owner": {"id": 403}, "assignee": {"id": 74}, "organization": {"id": 631}, "project": {"owner": {"id": 730}, "assignee": {"id": 805}, "organization": {"id": 973}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 376, "owner": {"id": 480}, "assignee": {"id": 532}, "organization": {"id": 668}, "project": {"owner": {"id": 755}, "assignee": {"id": 812}, "organization": {"id": 909}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": null}, "resource": {"id": 309, "owner": {"id": 464}, "assignee": {"id": 40}, "organization": {"id": 680}, "project": {"owner": {"id": 752}, "assignee": {"id": 866}, "organization": {"id": 926}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 429}, "assignee": {"id": 594}, "organization": {"id": 106}, "project": {"owner": {"id": 772}, "assignee": {"id": 884}, "organization": {"id": 947}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": null}, "resource": {"id": 306, "owner": {"id": 444}, "assignee": {"id": 58}, "organization": {"id": 639}, "project": {"owner": {"id": 750}, "assignee": {"id": 891}, "organization": {"id": 909}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 355, "owner": {"id": 425}, "assignee": {"id": 503}, "organization": {"id": 621}, "project": {"owner": {"id": 718}, "assignee": {"id": 859}, "organization": {"id": 972}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": null}, "resource": {"id": 373, "owner": {"id": 463}, "assignee": {"id": 26}, "organization": {"id": 661}, "project": {"owner": {"id": 782}, "assignee": {"id": 857}, "organization": {"id": 900}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 481}, "assignee": {"id": 588}, "organization": {"id": 128}, "project": {"owner": {"id": 779}, "assignee": {"id": 856}, "organization": {"id": 975}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 71, "privilege": "admin"}, "organization": null}, "resource": {"id": 351, "owner": {"id": 416}, "assignee": {"id": 570}, "organization": {"id": 663}, "project": {"owner": {"id": 722}, "assignee": {"id": 814}, "organization": {"id": 962}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"id": 357, "owner": {"id": 447}, "assignee": {"id": 551}, "organization": {"id": 685}, "project": {"owner": {"id": 727}, "assignee": {"id": 848}, "organization": {"id": 910}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": null}, "resource": {"id": 370, "owner": {"id": 480}, "assignee": {"id": 561}, "organization": {"id": 674}, "project": {"owner": {"id": 799}, "assignee": {"id": 859}, "organization": {"id": 912}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 159, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 327, "owner": {"id": 418}, "assignee": {"id": 565}, "organization": {"id": 159}, "project": {"owner": {"id": 760}, "assignee": {"id": 849}, "organization": {"id": 969}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": null}, "resource": {"id": 320, "owner": {"id": 445}, "assignee": {"id": 508}, "organization": {"id": 646}, "project": {"owner": {"id": 716}, "assignee": {"id": 801}, "organization": {"id": 933}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 482}, "assignee": {"id": 579}, "organization": {"id": 673}, "project": {"owner": {"id": 770}, "assignee": {"id": 873}, "organization": {"id": 932}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": null}, "resource": {"id": 360, "owner": {"id": 478}, "assignee": {"id": 581}, "organization": {"id": 660}, "project": {"owner": {"id": 716}, "assignee": {"id": 893}, "organization": {"id": 996}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 364, "owner": {"id": 472}, "assignee": {"id": 586}, "organization": {"id": 179}, "project": {"owner": {"id": 704}, "assignee": {"id": 809}, "organization": {"id": 957}}}} } -test_scope_DELETE_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": null}, "resource": {"id": 302, "owner": {"id": 492}, "assignee": {"id": 570}, "organization": {"id": 698}, "project": {"owner": {"id": 705}, "assignee": {"id": 877}, "organization": {"id": 940}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"id": 332, "owner": {"id": 411}, "assignee": {"id": 597}, "organization": {"id": 697}, "project": {"owner": {"id": 789}, "assignee": {"id": 827}, "organization": {"id": 948}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 443}, "assignee": {"id": 562}, "organization": {"id": 174}, "project": {"owner": {"id": 55}, "assignee": {"id": 886}, "organization": {"id": 938}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 452}, "assignee": {"id": 581}, "organization": {"id": 125}, "project": {"owner": {"id": 730}, "assignee": {"id": 862}, "organization": {"id": 916}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"id": 386, "owner": {"id": 400}, "assignee": {"id": 588}, "organization": {"id": 664}, "project": {"owner": {"id": 22}, "assignee": {"id": 861}, "organization": {"id": 972}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 306, "owner": {"id": 481}, "assignee": {"id": 598}, "organization": {"id": 640}, "project": {"owner": {"id": 706}, "assignee": {"id": 879}, "organization": {"id": 966}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 443}, "assignee": {"id": 553}, "organization": {"id": 126}, "project": {"owner": {"id": 18}, "assignee": {"id": 834}, "organization": {"id": 960}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "upload:data", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 282}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 429}, "assignee": {"id": 598}, "organization": {"id": 161}, "project": {"owner": {"id": 727}, "assignee": {"id": 849}, "organization": {"id": 984}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 223}, "user": {"role": "maintainer"}}}, "resource": {"id": 362, "owner": {"id": 450}, "assignee": {"id": 538}, "organization": {"id": 629}, "project": {"owner": {"id": 56}, "assignee": {"id": 898}, "organization": {"id": 979}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"id": 321, "owner": {"id": 480}, "assignee": {"id": 505}, "organization": {"id": 679}, "project": {"owner": {"id": 798}, "assignee": {"id": 834}, "organization": {"id": 910}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 283}, "user": {"role": "supervisor"}}}, "resource": {"id": 372, "owner": {"id": 435}, "assignee": {"id": 594}, "organization": {"id": 187}, "project": {"owner": {"id": 73}, "assignee": {"id": 873}, "organization": {"id": 912}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"id": 320, "owner": {"id": 480}, "assignee": {"id": 580}, "organization": {"id": 173}, "project": {"owner": {"id": 728}, "assignee": {"id": 826}, "organization": {"id": 969}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 293}, "user": {"role": "supervisor"}}}, "resource": {"id": 303, "owner": {"id": 473}, "assignee": {"id": 533}, "organization": {"id": 641}, "project": {"owner": {"id": 1}, "assignee": {"id": 894}, "organization": {"id": 961}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"id": 374, "owner": {"id": 403}, "assignee": {"id": 570}, "organization": {"id": 609}, "project": {"owner": {"id": 787}, "assignee": {"id": 857}, "organization": {"id": 956}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 466}, "assignee": {"id": 531}, "organization": {"id": 126}, "project": {"owner": {"id": 93}, "assignee": {"id": 891}, "organization": {"id": 918}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 192, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"id": 338, "owner": {"id": 485}, "assignee": {"id": 500}, "organization": {"id": 192}, "project": {"owner": {"id": 716}, "assignee": {"id": 849}, "organization": {"id": 940}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 202}, "user": {"role": "worker"}}}, "resource": {"id": 314, "owner": {"id": 444}, "assignee": {"id": 532}, "organization": {"id": 691}, "project": {"owner": {"id": 53}, "assignee": {"id": 842}, "organization": {"id": 991}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 45, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 224}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 443}, "assignee": {"id": 589}, "organization": {"id": 697}, "project": {"owner": {"id": 744}, "assignee": {"id": 850}, "organization": {"id": 978}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 383, "owner": {"id": 477}, "assignee": {"id": 543}, "organization": {"id": 100}, "project": {"owner": {"id": 90}, "assignee": {"id": 846}, "organization": {"id": 946}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"id": 390, "owner": {"id": 430}, "assignee": {"id": 577}, "organization": {"id": 134}, "project": {"owner": {"id": 710}, "assignee": {"id": 817}, "organization": {"id": 982}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 405}, "assignee": {"id": 530}, "organization": {"id": 636}, "project": {"owner": {"id": 11}, "assignee": {"id": 894}, "organization": {"id": 975}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 354, "owner": {"id": 445}, "assignee": {"id": 590}, "organization": {"id": 622}, "project": {"owner": {"id": 783}, "assignee": {"id": 893}, "organization": {"id": 972}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"id": 333, "owner": {"id": 489}, "assignee": {"id": 587}, "organization": {"id": 121}, "project": {"owner": {"id": 26}, "assignee": {"id": 843}, "organization": {"id": 955}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 408}, "assignee": {"id": 522}, "organization": {"id": 197}, "project": {"owner": {"id": 767}, "assignee": {"id": 804}, "organization": {"id": 954}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 340, "owner": {"id": 456}, "assignee": {"id": 595}, "organization": {"id": 639}, "project": {"owner": {"id": 40}, "assignee": {"id": 822}, "organization": {"id": 929}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 3, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 413}, "assignee": {"id": 598}, "organization": {"id": 691}, "project": {"owner": {"id": 792}, "assignee": {"id": 851}, "organization": {"id": 919}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 300, "owner": {"id": 426}, "assignee": {"id": 596}, "organization": {"id": 178}, "project": {"owner": {"id": 84}, "assignee": {"id": 877}, "organization": {"id": 935}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 387, "owner": {"id": 404}, "assignee": {"id": 547}, "organization": {"id": 145}, "project": {"owner": {"id": 769}, "assignee": {"id": 812}, "organization": {"id": 936}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 317, "owner": {"id": 466}, "assignee": {"id": 546}, "organization": {"id": 692}, "project": {"owner": {"id": 6}, "assignee": {"id": 843}, "organization": {"id": 985}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 367, "owner": {"id": 405}, "assignee": {"id": 569}, "organization": {"id": 655}, "project": {"owner": {"id": 710}, "assignee": {"id": 886}, "organization": {"id": 915}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 64, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 331, "owner": {"id": 416}, "assignee": {"id": 520}, "organization": {"id": 183}, "project": {"owner": {"id": 64}, "assignee": {"id": 865}, "organization": {"id": 903}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 195, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"id": 307, "owner": {"id": 466}, "assignee": {"id": 587}, "organization": {"id": 195}, "project": {"owner": {"id": 729}, "assignee": {"id": 896}, "organization": {"id": 953}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 216}, "user": {"role": "supervisor"}}}, "resource": {"id": 399, "owner": {"id": 484}, "assignee": {"id": 501}, "organization": {"id": 679}, "project": {"owner": {"id": 96}, "assignee": {"id": 841}, "organization": {"id": 968}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 30, "privilege": "worker"}, "organization": {"id": 152, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 390, "owner": {"id": 464}, "assignee": {"id": 587}, "organization": {"id": 636}, "project": {"owner": {"id": 778}, "assignee": {"id": 890}, "organization": {"id": 943}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 217}, "user": {"role": "worker"}}}, "resource": {"id": 358, "owner": {"id": 406}, "assignee": {"id": 537}, "organization": {"id": 144}, "project": {"owner": {"id": 85}, "assignee": {"id": 861}, "organization": {"id": 980}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 214}, "user": {"role": "worker"}}}, "resource": {"id": 330, "owner": {"id": 439}, "assignee": {"id": 582}, "organization": {"id": 124}, "project": {"owner": {"id": 775}, "assignee": {"id": 802}, "organization": {"id": 904}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 64, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 416}, "assignee": {"id": 536}, "organization": {"id": 657}, "project": {"owner": {"id": 64}, "assignee": {"id": 827}, "organization": {"id": 988}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 367, "owner": {"id": 442}, "assignee": {"id": 571}, "organization": {"id": 643}, "project": {"owner": {"id": 721}, "assignee": {"id": 846}, "organization": {"id": 976}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"id": 386, "owner": {"id": 422}, "assignee": {"id": 503}, "organization": {"id": 100}, "project": {"owner": {"id": 18}, "assignee": {"id": 891}, "organization": {"id": 952}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 371, "owner": {"id": 408}, "assignee": {"id": 579}, "organization": {"id": 167}, "project": {"owner": {"id": 740}, "assignee": {"id": 844}, "organization": {"id": 940}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 225}, "user": {"role": null}}}, "resource": {"id": 313, "owner": {"id": 472}, "assignee": {"id": 529}, "organization": {"id": 656}, "project": {"owner": {"id": 89}, "assignee": {"id": 829}, "organization": {"id": 980}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 487}, "assignee": {"id": 566}, "organization": {"id": 643}, "project": {"owner": {"id": 751}, "assignee": {"id": 878}, "organization": {"id": 940}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"id": 391, "owner": {"id": 492}, "assignee": {"id": 565}, "organization": {"id": 117}, "project": {"owner": {"id": 52}, "assignee": {"id": 828}, "organization": {"id": 937}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 15}, "user": {"role": "owner"}}}, "resource": {"id": 371, "owner": {"id": 468}, "assignee": {"id": 583}, "organization": {"id": 121}, "project": {"owner": {"id": 703}, "assignee": {"id": 806}, "organization": {"id": 924}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 340, "owner": {"id": 463}, "assignee": {"id": 580}, "organization": {"id": 676}, "project": {"owner": {"id": 67}, "assignee": {"id": 877}, "organization": {"id": 924}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 345, "owner": {"id": 456}, "assignee": {"id": 529}, "organization": {"id": 640}, "project": {"owner": {"id": 724}, "assignee": {"id": 863}, "organization": {"id": 946}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"id": 350, "owner": {"id": 471}, "assignee": {"id": 569}, "organization": {"id": 127}, "project": {"owner": {"id": 48}, "assignee": {"id": 818}, "organization": {"id": 958}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"id": 398, "owner": {"id": 400}, "assignee": {"id": 510}, "organization": {"id": 108}, "project": {"owner": {"id": 744}, "assignee": {"id": 864}, "organization": {"id": 931}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 332, "owner": {"id": 420}, "assignee": {"id": 505}, "organization": {"id": 696}, "project": {"owner": {"id": 47}, "assignee": {"id": 867}, "organization": {"id": 908}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 41, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 449}, "assignee": {"id": 543}, "organization": {"id": 608}, "project": {"owner": {"id": 724}, "assignee": {"id": 806}, "organization": {"id": 935}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 411}, "assignee": {"id": 596}, "organization": {"id": 187}, "project": {"owner": {"id": 52}, "assignee": {"id": 847}, "organization": {"id": 953}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 205}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 415}, "assignee": {"id": 552}, "organization": {"id": 141}, "project": {"owner": {"id": 765}, "assignee": {"id": 861}, "organization": {"id": 906}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 283}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 426}, "assignee": {"id": 586}, "organization": {"id": 662}, "project": {"owner": {"id": 34}, "assignee": {"id": 870}, "organization": {"id": 977}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 142, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"id": 361, "owner": {"id": 428}, "assignee": {"id": 581}, "organization": {"id": 619}, "project": {"owner": {"id": 736}, "assignee": {"id": 814}, "organization": {"id": 911}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 480}, "assignee": {"id": 509}, "organization": {"id": 112}, "project": {"owner": {"id": 80}, "assignee": {"id": 860}, "organization": {"id": 950}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 245}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 454}, "assignee": {"id": 547}, "organization": {"id": 125}, "project": {"owner": {"id": 773}, "assignee": {"id": 833}, "organization": {"id": 946}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 336, "owner": {"id": 492}, "assignee": {"id": 528}, "organization": {"id": 695}, "project": {"owner": {"id": 52}, "assignee": {"id": 805}, "organization": {"id": 918}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 367, "owner": {"id": 468}, "assignee": {"id": 507}, "organization": {"id": 667}, "project": {"owner": {"id": 707}, "assignee": {"id": 825}, "organization": {"id": 932}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 481}, "assignee": {"id": 571}, "organization": {"id": 197}, "project": {"owner": {"id": 43}, "assignee": {"id": 891}, "organization": {"id": 938}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 475}, "assignee": {"id": 504}, "organization": {"id": 180}, "project": {"owner": {"id": 755}, "assignee": {"id": 878}, "organization": {"id": 988}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 424}, "assignee": {"id": 595}, "organization": {"id": 638}, "project": {"owner": {"id": 42}, "assignee": {"id": 872}, "organization": {"id": 922}}}} +test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 277}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 470}, "assignee": {"id": 509}, "organization": {"id": 641}, "project": {"owner": {"id": 710}, "assignee": {"id": 888}, "organization": {"id": 953}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 373, "owner": {"id": 444}, "assignee": {"id": 597}, "organization": {"id": 101}, "project": {"owner": {"id": 54}, "assignee": {"id": 853}, "organization": {"id": 951}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": null}, "resource": {"id": 374, "owner": {"id": 417}, "assignee": {"id": 534}, "organization": {"id": 674}, "project": {"owner": {"id": 16}, "assignee": {"id": 877}, "organization": {"id": 925}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 405}, "assignee": {"id": 536}, "organization": {"id": 686}, "project": {"owner": {"id": 90}, "assignee": {"id": 856}, "organization": {"id": 917}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": null}, "resource": {"id": 305, "owner": {"id": 476}, "assignee": {"id": 568}, "organization": {"id": 623}, "project": {"owner": {"id": 78}, "assignee": {"id": 876}, "organization": {"id": 962}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 408}, "assignee": {"id": 511}, "organization": {"id": 170}, "project": {"owner": {"id": 18}, "assignee": {"id": 833}, "organization": {"id": 952}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": null}, "resource": {"id": 374, "owner": {"id": 409}, "assignee": {"id": 503}, "organization": {"id": 655}, "project": {"owner": {"id": 28}, "assignee": {"id": 873}, "organization": {"id": 979}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 474}, "assignee": {"id": 584}, "organization": {"id": 638}, "project": {"owner": {"id": 19}, "assignee": {"id": 801}, "organization": {"id": 937}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": null}, "resource": {"id": 338, "owner": {"id": 471}, "assignee": {"id": 507}, "organization": {"id": 623}, "project": {"owner": {"id": 80}, "assignee": {"id": 829}, "organization": {"id": 999}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 48, "privilege": "worker"}, "organization": {"id": 141, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 423}, "assignee": {"id": 539}, "organization": {"id": 141}, "project": {"owner": {"id": 48}, "assignee": {"id": 849}, "organization": {"id": 953}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 41, "privilege": "none"}, "organization": null}, "resource": {"id": 368, "owner": {"id": 464}, "assignee": {"id": 562}, "organization": {"id": 689}, "project": {"owner": {"id": 41}, "assignee": {"id": 876}, "organization": {"id": 991}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 325, "owner": {"id": 468}, "assignee": {"id": 572}, "organization": {"id": 644}, "project": {"owner": {"id": 61}, "assignee": {"id": 846}, "organization": {"id": 959}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": null}, "resource": {"id": 313, "owner": {"id": 461}, "assignee": {"id": 578}, "organization": {"id": 628}, "project": {"owner": {"id": 708}, "assignee": {"id": 8}, "organization": {"id": 971}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 368, "owner": {"id": 436}, "assignee": {"id": 524}, "organization": {"id": 189}, "project": {"owner": {"id": 38}, "assignee": {"id": 862}, "organization": {"id": 966}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": null}, "resource": {"id": 345, "owner": {"id": 436}, "assignee": {"id": 541}, "organization": {"id": 689}, "project": {"owner": {"id": 757}, "assignee": {"id": 68}, "organization": {"id": 985}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"id": 330, "owner": {"id": 463}, "assignee": {"id": 591}, "organization": {"id": 604}, "project": {"owner": {"id": 23}, "assignee": {"id": 829}, "organization": {"id": 961}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": null}, "resource": {"id": 356, "owner": {"id": 496}, "assignee": {"id": 527}, "organization": {"id": 672}, "project": {"owner": {"id": 779}, "assignee": {"id": 39}, "organization": {"id": 928}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 432}, "assignee": {"id": 553}, "organization": {"id": 139}, "project": {"owner": {"id": 58}, "assignee": {"id": 854}, "organization": {"id": 992}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": null}, "resource": {"id": 374, "owner": {"id": 431}, "assignee": {"id": 592}, "organization": {"id": 638}, "project": {"owner": {"id": 736}, "assignee": {"id": 50}, "organization": {"id": 920}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 286}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 477}, "assignee": {"id": 558}, "organization": {"id": 681}, "project": {"owner": {"id": 80}, "assignee": {"id": 800}, "organization": {"id": 942}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 59, "privilege": "none"}, "organization": null}, "resource": {"id": 369, "owner": {"id": 424}, "assignee": {"id": 515}, "organization": {"id": 611}, "project": {"owner": {"id": 738}, "assignee": {"id": 59}, "organization": {"id": 990}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 410}, "assignee": {"id": 522}, "organization": {"id": 162}, "project": {"owner": {"id": 81}, "assignee": {"id": 838}, "organization": {"id": 991}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": null}, "resource": {"id": 348, "owner": {"id": 25}, "assignee": {"id": 533}, "organization": {"id": 644}, "project": {"owner": {"id": 769}, "assignee": {"id": 853}, "organization": {"id": 922}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"id": 319, "owner": {"id": 425}, "assignee": {"id": 541}, "organization": {"id": 634}, "project": {"owner": {"id": 50}, "assignee": {"id": 840}, "organization": {"id": 938}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": null}, "resource": {"id": 313, "owner": {"id": 72}, "assignee": {"id": 587}, "organization": {"id": 627}, "project": {"owner": {"id": 798}, "assignee": {"id": 878}, "organization": {"id": 925}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 393, "owner": {"id": 455}, "assignee": {"id": 536}, "organization": {"id": 171}, "project": {"owner": {"id": 80}, "assignee": {"id": 881}, "organization": {"id": 967}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": null}, "resource": {"id": 370, "owner": {"id": 4}, "assignee": {"id": 521}, "organization": {"id": 672}, "project": {"owner": {"id": 749}, "assignee": {"id": 887}, "organization": {"id": 960}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"id": 334, "owner": {"id": 478}, "assignee": {"id": 540}, "organization": {"id": 661}, "project": {"owner": {"id": 39}, "assignee": {"id": 814}, "organization": {"id": 911}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": null}, "resource": {"id": 396, "owner": {"id": 71}, "assignee": {"id": 572}, "organization": {"id": 632}, "project": {"owner": {"id": 728}, "assignee": {"id": 843}, "organization": {"id": 900}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"id": 319, "owner": {"id": 440}, "assignee": {"id": 585}, "organization": {"id": 187}, "project": {"owner": {"id": 26}, "assignee": {"id": 851}, "organization": {"id": 954}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": null}, "resource": {"id": 325, "owner": {"id": 5}, "assignee": {"id": 534}, "organization": {"id": 660}, "project": {"owner": {"id": 707}, "assignee": {"id": 837}, "organization": {"id": 934}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"id": 348, "owner": {"id": 472}, "assignee": {"id": 522}, "organization": {"id": 681}, "project": {"owner": {"id": 8}, "assignee": {"id": 849}, "organization": {"id": 902}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": null}, "resource": {"id": 376, "owner": {"id": 413}, "assignee": {"id": 28}, "organization": {"id": 621}, "project": {"owner": {"id": 726}, "assignee": {"id": 820}, "organization": {"id": 945}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 416}, "assignee": {"id": 541}, "organization": {"id": 108}, "project": {"owner": {"id": 61}, "assignee": {"id": 878}, "organization": {"id": 963}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": null}, "resource": {"id": 331, "owner": {"id": 488}, "assignee": {"id": 70}, "organization": {"id": 626}, "project": {"owner": {"id": 739}, "assignee": {"id": 881}, "organization": {"id": 952}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 176, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 445}, "assignee": {"id": 545}, "organization": {"id": 613}, "project": {"owner": {"id": 61}, "assignee": {"id": 870}, "organization": {"id": 980}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": null}, "resource": {"id": 380, "owner": {"id": 469}, "assignee": {"id": 86}, "organization": {"id": 614}, "project": {"owner": {"id": 798}, "assignee": {"id": 845}, "organization": {"id": 950}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 223}, "user": {"role": null}}}, "resource": {"id": 340, "owner": {"id": 497}, "assignee": {"id": 588}, "organization": {"id": 153}, "project": {"owner": {"id": 40}, "assignee": {"id": 814}, "organization": {"id": 969}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": null}, "resource": {"id": 347, "owner": {"id": 437}, "assignee": {"id": 10}, "organization": {"id": 624}, "project": {"owner": {"id": 723}, "assignee": {"id": 897}, "organization": {"id": 952}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 326, "owner": {"id": 446}, "assignee": {"id": 594}, "organization": {"id": 623}, "project": {"owner": {"id": 77}, "assignee": {"id": 864}, "organization": {"id": 980}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": null}, "resource": {"id": 314, "owner": {"id": 492}, "assignee": {"id": 26}, "organization": {"id": 654}, "project": {"owner": {"id": 775}, "assignee": {"id": 832}, "organization": {"id": 953}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"id": 340, "owner": {"id": 473}, "assignee": {"id": 570}, "organization": {"id": 188}, "project": {"owner": {"id": 706}, "assignee": {"id": 69}, "organization": {"id": 923}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": null}, "resource": {"id": 341, "owner": {"id": 449}, "assignee": {"id": 543}, "organization": {"id": 641}, "project": {"owner": {"id": 793}, "assignee": {"id": 819}, "organization": {"id": 935}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 372, "owner": {"id": 415}, "assignee": {"id": 552}, "organization": {"id": 677}, "project": {"owner": {"id": 789}, "assignee": {"id": 63}, "organization": {"id": 947}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": null}, "resource": {"id": 363, "owner": {"id": 495}, "assignee": {"id": 505}, "organization": {"id": 692}, "project": {"owner": {"id": 730}, "assignee": {"id": 876}, "organization": {"id": 979}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 446}, "assignee": {"id": 555}, "organization": {"id": 109}, "project": {"owner": {"id": 775}, "assignee": {"id": 77}, "organization": {"id": 935}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": null}, "resource": {"id": 305, "owner": {"id": 406}, "assignee": {"id": 557}, "organization": {"id": 630}, "project": {"owner": {"id": 736}, "assignee": {"id": 870}, "organization": {"id": 919}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"id": 396, "owner": {"id": 484}, "assignee": {"id": 512}, "organization": {"id": 688}, "project": {"owner": {"id": 703}, "assignee": {"id": 24}, "organization": {"id": 913}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": null}, "resource": {"id": 310, "owner": {"id": 481}, "assignee": {"id": 555}, "organization": {"id": 614}, "project": {"owner": {"id": 722}, "assignee": {"id": 840}, "organization": {"id": 935}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"id": 319, "owner": {"id": 410}, "assignee": {"id": 532}, "organization": {"id": 175}, "project": {"owner": {"id": 770}, "assignee": {"id": 45}, "organization": {"id": 920}}}} +test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": null}, "resource": {"id": 356, "owner": {"id": 466}, "assignee": {"id": 500}, "organization": {"id": 679}, "project": {"owner": {"id": 726}, "assignee": {"id": 829}, "organization": {"id": 969}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 491}, "assignee": {"id": 541}, "organization": {"id": 610}, "project": {"owner": {"id": 799}, "assignee": {"id": 88}, "organization": {"id": 999}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 71, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 412}, "assignee": {"id": 578}, "organization": {"id": 135}, "project": {"owner": {"id": 71}, "assignee": {"id": 895}, "organization": {"id": 938}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 286}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 470}, "assignee": {"id": 510}, "organization": {"id": 183}, "project": {"owner": {"id": 790}, "assignee": {"id": 19}, "organization": {"id": 973}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 383, "owner": {"id": 424}, "assignee": {"id": 565}, "organization": {"id": 639}, "project": {"owner": {"id": 90}, "assignee": {"id": 897}, "organization": {"id": 920}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 351, "owner": {"id": 468}, "assignee": {"id": 508}, "organization": {"id": 646}, "project": {"owner": {"id": 767}, "assignee": {"id": 32}, "organization": {"id": 910}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 469}, "assignee": {"id": 530}, "organization": {"id": 158}, "project": {"owner": {"id": 93}, "assignee": {"id": 867}, "organization": {"id": 903}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 286}, "user": {"role": null}}}, "resource": {"id": 366, "owner": {"id": 495}, "assignee": {"id": 508}, "organization": {"id": 157}, "project": {"owner": {"id": 701}, "assignee": {"id": 54}, "organization": {"id": 980}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 350, "owner": {"id": 470}, "assignee": {"id": 509}, "organization": {"id": 618}, "project": {"owner": {"id": 29}, "assignee": {"id": 833}, "organization": {"id": 996}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 224}, "user": {"role": null}}}, "resource": {"id": 309, "owner": {"id": 464}, "assignee": {"id": 598}, "organization": {"id": 683}, "project": {"owner": {"id": 766}, "assignee": {"id": 98}, "organization": {"id": 985}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 366, "owner": {"id": 453}, "assignee": {"id": 505}, "organization": {"id": 144}, "project": {"owner": {"id": 18}, "assignee": {"id": 886}, "organization": {"id": 981}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"id": 391, "owner": {"id": 483}, "assignee": {"id": 526}, "organization": {"id": 124}, "project": {"owner": {"id": 713}, "assignee": {"id": 36}, "organization": {"id": 908}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"id": 351, "owner": {"id": 439}, "assignee": {"id": 545}, "organization": {"id": 644}, "project": {"owner": {"id": 22}, "assignee": {"id": 807}, "organization": {"id": 901}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 123, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 407}, "assignee": {"id": 539}, "organization": {"id": 631}, "project": {"owner": {"id": 765}, "assignee": {"id": 98}, "organization": {"id": 930}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"id": 328, "owner": {"id": 466}, "assignee": {"id": 595}, "organization": {"id": 118}, "project": {"owner": {"id": 45}, "assignee": {"id": 805}, "organization": {"id": 900}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 355, "owner": {"id": 417}, "assignee": {"id": 582}, "organization": {"id": 177}, "project": {"owner": {"id": 701}, "assignee": {"id": 14}, "organization": {"id": 941}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"id": 391, "owner": {"id": 480}, "assignee": {"id": 530}, "organization": {"id": 667}, "project": {"owner": {"id": 56}, "assignee": {"id": 817}, "organization": {"id": 942}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 426}, "assignee": {"id": 579}, "organization": {"id": 656}, "project": {"owner": {"id": 773}, "assignee": {"id": 85}, "organization": {"id": 915}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"id": 357, "owner": {"id": 471}, "assignee": {"id": 563}, "organization": {"id": 175}, "project": {"owner": {"id": 12}, "assignee": {"id": 825}, "organization": {"id": 959}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 166, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 405}, "assignee": {"id": 571}, "organization": {"id": 166}, "project": {"owner": {"id": 720}, "assignee": {"id": 69}, "organization": {"id": 960}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"id": 393, "owner": {"id": 486}, "assignee": {"id": 584}, "organization": {"id": 657}, "project": {"owner": {"id": 43}, "assignee": {"id": 895}, "organization": {"id": 920}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"id": 395, "owner": {"id": 424}, "assignee": {"id": 514}, "organization": {"id": 611}, "project": {"owner": {"id": 700}, "assignee": {"id": 85}, "organization": {"id": 967}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 383, "owner": {"id": 421}, "assignee": {"id": 517}, "organization": {"id": 168}, "project": {"owner": {"id": 53}, "assignee": {"id": 860}, "organization": {"id": 947}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 420}, "assignee": {"id": 575}, "organization": {"id": 141}, "project": {"owner": {"id": 720}, "assignee": {"id": 71}, "organization": {"id": 958}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"id": 324, "owner": {"id": 403}, "assignee": {"id": 547}, "organization": {"id": 638}, "project": {"owner": {"id": 1}, "assignee": {"id": 889}, "organization": {"id": 990}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 325, "owner": {"id": 446}, "assignee": {"id": 519}, "organization": {"id": 612}, "project": {"owner": {"id": 769}, "assignee": {"id": 31}, "organization": {"id": 907}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 381, "owner": {"id": 418}, "assignee": {"id": 531}, "organization": {"id": 154}, "project": {"owner": {"id": 69}, "assignee": {"id": 849}, "organization": {"id": 957}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"id": 359, "owner": {"id": 454}, "assignee": {"id": 523}, "organization": {"id": 156}, "project": {"owner": {"id": 735}, "assignee": {"id": 22}, "organization": {"id": 950}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 448}, "assignee": {"id": 542}, "organization": {"id": 696}, "project": {"owner": {"id": 28}, "assignee": {"id": 851}, "organization": {"id": 913}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 334, "owner": {"id": 410}, "assignee": {"id": 577}, "organization": {"id": 699}, "project": {"owner": {"id": 737}, "assignee": {"id": 6}, "organization": {"id": 939}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 265}, "user": {"role": "supervisor"}}}, "resource": {"id": 336, "owner": {"id": 450}, "assignee": {"id": 599}, "organization": {"id": 173}, "project": {"owner": {"id": 32}, "assignee": {"id": 805}, "organization": {"id": 950}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 139, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 437}, "assignee": {"id": 580}, "organization": {"id": 139}, "project": {"owner": {"id": 781}, "assignee": {"id": 58}, "organization": {"id": 989}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"id": 303, "owner": {"id": 425}, "assignee": {"id": 543}, "organization": {"id": 634}, "project": {"owner": {"id": 70}, "assignee": {"id": 816}, "organization": {"id": 969}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 322, "owner": {"id": 443}, "assignee": {"id": 580}, "organization": {"id": 632}, "project": {"owner": {"id": 712}, "assignee": {"id": 34}, "organization": {"id": 956}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 444}, "assignee": {"id": 556}, "organization": {"id": 160}, "project": {"owner": {"id": 36}, "assignee": {"id": 854}, "organization": {"id": 928}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 416}, "assignee": {"id": 534}, "organization": {"id": 108}, "project": {"owner": {"id": 786}, "assignee": {"id": 13}, "organization": {"id": 955}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"id": 370, "owner": {"id": 456}, "assignee": {"id": 552}, "organization": {"id": 649}, "project": {"owner": {"id": 11}, "assignee": {"id": 883}, "organization": {"id": 933}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"id": 379, "owner": {"id": 449}, "assignee": {"id": 561}, "organization": {"id": 678}, "project": {"owner": {"id": 700}, "assignee": {"id": 69}, "organization": {"id": 950}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 149, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 436}, "assignee": {"id": 529}, "organization": {"id": 149}, "project": {"owner": {"id": 36}, "assignee": {"id": 875}, "organization": {"id": 996}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 210}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 454}, "assignee": {"id": 510}, "organization": {"id": 124}, "project": {"owner": {"id": 727}, "assignee": {"id": 3}, "organization": {"id": 907}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 454}, "assignee": {"id": 515}, "organization": {"id": 600}, "project": {"owner": {"id": 27}, "assignee": {"id": 830}, "organization": {"id": 962}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 68, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 484}, "assignee": {"id": 596}, "organization": {"id": 661}, "project": {"owner": {"id": 715}, "assignee": {"id": 68}, "organization": {"id": 926}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 453}, "assignee": {"id": 534}, "organization": {"id": 177}, "project": {"owner": {"id": 46}, "assignee": {"id": 897}, "organization": {"id": 950}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 481}, "assignee": {"id": 511}, "organization": {"id": 198}, "project": {"owner": {"id": 728}, "assignee": {"id": 32}, "organization": {"id": 958}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 313, "owner": {"id": 408}, "assignee": {"id": 567}, "organization": {"id": 658}, "project": {"owner": {"id": 99}, "assignee": {"id": 816}, "organization": {"id": 950}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 401}, "assignee": {"id": 552}, "organization": {"id": 690}, "project": {"owner": {"id": 736}, "assignee": {"id": 47}, "organization": {"id": 975}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"id": 323, "owner": {"id": 419}, "assignee": {"id": 523}, "organization": {"id": 101}, "project": {"owner": {"id": 74}, "assignee": {"id": 867}, "organization": {"id": 975}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 470}, "assignee": {"id": 547}, "organization": {"id": 118}, "project": {"owner": {"id": 739}, "assignee": {"id": 75}, "organization": {"id": 958}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 491}, "assignee": {"id": 500}, "organization": {"id": 646}, "project": {"owner": {"id": 87}, "assignee": {"id": 824}, "organization": {"id": 976}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"id": 367, "owner": {"id": 481}, "assignee": {"id": 545}, "organization": {"id": 620}, "project": {"owner": {"id": 789}, "assignee": {"id": 97}, "organization": {"id": 962}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 193, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 323, "owner": {"id": 486}, "assignee": {"id": 589}, "organization": {"id": 193}, "project": {"owner": {"id": 34}, "assignee": {"id": 894}, "organization": {"id": 927}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 301, "owner": {"id": 447}, "assignee": {"id": 514}, "organization": {"id": 182}, "project": {"owner": {"id": 709}, "assignee": {"id": 86}, "organization": {"id": 993}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 218}, "user": {"role": "supervisor"}}}, "resource": {"id": 394, "owner": {"id": 488}, "assignee": {"id": 544}, "organization": {"id": 694}, "project": {"owner": {"id": 4}, "assignee": {"id": 856}, "organization": {"id": 979}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 38}, "user": {"role": "owner"}}}, "resource": {"id": 374, "owner": {"id": 492}, "assignee": {"id": 583}, "organization": {"id": 647}, "project": {"owner": {"id": 774}, "assignee": {"id": 38}, "organization": {"id": 982}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 396, "owner": {"id": 439}, "assignee": {"id": 533}, "organization": {"id": 140}, "project": {"owner": {"id": 2}, "assignee": {"id": 852}, "organization": {"id": 993}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 466}, "assignee": {"id": 597}, "organization": {"id": 117}, "project": {"owner": {"id": 788}, "assignee": {"id": 58}, "organization": {"id": 914}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 412}, "assignee": {"id": 597}, "organization": {"id": 607}, "project": {"owner": {"id": 61}, "assignee": {"id": 877}, "organization": {"id": 973}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 424}, "assignee": {"id": 592}, "organization": {"id": 696}, "project": {"owner": {"id": 746}, "assignee": {"id": 31}, "organization": {"id": 917}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 322, "owner": {"id": 467}, "assignee": {"id": 512}, "organization": {"id": 178}, "project": {"owner": {"id": 5}, "assignee": {"id": 836}, "organization": {"id": 994}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 96, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 300, "owner": {"id": 402}, "assignee": {"id": 563}, "organization": {"id": 121}, "project": {"owner": {"id": 785}, "assignee": {"id": 96}, "organization": {"id": 997}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 93, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"id": 396, "owner": {"id": 484}, "assignee": {"id": 584}, "organization": {"id": 681}, "project": {"owner": {"id": 93}, "assignee": {"id": 896}, "organization": {"id": 993}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 265}, "user": {"role": "supervisor"}}}, "resource": {"id": 339, "owner": {"id": 407}, "assignee": {"id": 570}, "organization": {"id": 608}, "project": {"owner": {"id": 725}, "assignee": {"id": 56}, "organization": {"id": 952}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 480}, "assignee": {"id": 512}, "organization": {"id": 137}, "project": {"owner": {"id": 98}, "assignee": {"id": 885}, "organization": {"id": 917}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 322, "owner": {"id": 419}, "assignee": {"id": 554}, "organization": {"id": 155}, "project": {"owner": {"id": 712}, "assignee": {"id": 79}, "organization": {"id": 989}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 396, "owner": {"id": 427}, "assignee": {"id": 552}, "organization": {"id": 643}, "project": {"owner": {"id": 19}, "assignee": {"id": 895}, "organization": {"id": 928}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 199, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"id": 301, "owner": {"id": 414}, "assignee": {"id": 566}, "organization": {"id": 612}, "project": {"owner": {"id": 728}, "assignee": {"id": 49}, "organization": {"id": 900}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 476}, "assignee": {"id": 588}, "organization": {"id": 122}, "project": {"owner": {"id": 57}, "assignee": {"id": 849}, "organization": {"id": 938}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 112, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 363, "owner": {"id": 403}, "assignee": {"id": 587}, "organization": {"id": 112}, "project": {"owner": {"id": 762}, "assignee": {"id": 5}, "organization": {"id": 943}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"id": 312, "owner": {"id": 463}, "assignee": {"id": 546}, "organization": {"id": 659}, "project": {"owner": {"id": 6}, "assignee": {"id": 881}, "organization": {"id": 995}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 271}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 457}, "assignee": {"id": 570}, "organization": {"id": 692}, "project": {"owner": {"id": 795}, "assignee": {"id": 28}, "organization": {"id": 934}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 329, "owner": {"id": 427}, "assignee": {"id": 571}, "organization": {"id": 171}, "project": {"owner": {"id": 58}, "assignee": {"id": 835}, "organization": {"id": 949}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"id": 326, "owner": {"id": 416}, "assignee": {"id": 589}, "organization": {"id": 114}, "project": {"owner": {"id": 749}, "assignee": {"id": 42}, "organization": {"id": 919}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 150, "owner": {"id": 295}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 447}, "assignee": {"id": 549}, "organization": {"id": 630}, "project": {"owner": {"id": 9}, "assignee": {"id": 870}, "organization": {"id": 924}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 474}, "assignee": {"id": 590}, "organization": {"id": 689}, "project": {"owner": {"id": 762}, "assignee": {"id": 39}, "organization": {"id": 977}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 453}, "assignee": {"id": 518}, "organization": {"id": 181}, "project": {"owner": {"id": 80}, "assignee": {"id": 806}, "organization": {"id": 975}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"id": 361, "owner": {"id": 414}, "assignee": {"id": 520}, "organization": {"id": 153}, "project": {"owner": {"id": 737}, "assignee": {"id": 43}, "organization": {"id": 949}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 456}, "assignee": {"id": 513}, "organization": {"id": 614}, "project": {"owner": {"id": 62}, "assignee": {"id": 843}, "organization": {"id": 976}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 412}, "assignee": {"id": 509}, "organization": {"id": 658}, "project": {"owner": {"id": 703}, "assignee": {"id": 63}, "organization": {"id": 983}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 446}, "assignee": {"id": 531}, "organization": {"id": 146}, "project": {"owner": {"id": 73}, "assignee": {"id": 802}, "organization": {"id": 935}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 156, "owner": {"id": 283}, "user": {"role": "supervisor"}}}, "resource": {"id": 390, "owner": {"id": 494}, "assignee": {"id": 500}, "organization": {"id": 156}, "project": {"owner": {"id": 704}, "assignee": {"id": 63}, "organization": {"id": 982}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"id": 340, "owner": {"id": 422}, "assignee": {"id": 587}, "organization": {"id": 695}, "project": {"owner": {"id": 94}, "assignee": {"id": 813}, "organization": {"id": 980}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 322, "owner": {"id": 444}, "assignee": {"id": 570}, "organization": {"id": 643}, "project": {"owner": {"id": 715}, "assignee": {"id": 4}, "organization": {"id": 926}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 405}, "assignee": {"id": 586}, "organization": {"id": 164}, "project": {"owner": {"id": 32}, "assignee": {"id": 811}, "organization": {"id": 908}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"id": 324, "owner": {"id": 484}, "assignee": {"id": 568}, "organization": {"id": 170}, "project": {"owner": {"id": 708}, "assignee": {"id": 42}, "organization": {"id": 920}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"id": 320, "owner": {"id": 416}, "assignee": {"id": 595}, "organization": {"id": 659}, "project": {"owner": {"id": 26}, "assignee": {"id": 845}, "organization": {"id": 905}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 178, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"id": 367, "owner": {"id": 456}, "assignee": {"id": 539}, "organization": {"id": 604}, "project": {"owner": {"id": 770}, "assignee": {"id": 37}, "organization": {"id": 988}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 116, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 390, "owner": {"id": 420}, "assignee": {"id": 573}, "organization": {"id": 116}, "project": {"owner": {"id": 70}, "assignee": {"id": 807}, "organization": {"id": 962}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 224}, "user": {"role": null}}}, "resource": {"id": 395, "owner": {"id": 427}, "assignee": {"id": 599}, "organization": {"id": 181}, "project": {"owner": {"id": 754}, "assignee": {"id": 87}, "organization": {"id": 924}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 178, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"id": 349, "owner": {"id": 473}, "assignee": {"id": 567}, "organization": {"id": 636}, "project": {"owner": {"id": 5}, "assignee": {"id": 852}, "organization": {"id": 994}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 436}, "assignee": {"id": 553}, "organization": {"id": 604}, "project": {"owner": {"id": 779}, "assignee": {"id": 79}, "organization": {"id": 968}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 464}, "assignee": {"id": 509}, "organization": {"id": 192}, "project": {"owner": {"id": 92}, "assignee": {"id": 841}, "organization": {"id": 933}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 79}, "assignee": {"id": 558}, "organization": {"id": 180}, "project": {"owner": {"id": 760}, "assignee": {"id": 888}, "organization": {"id": 916}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 453}, "assignee": {"id": 597}, "organization": {"id": 660}, "project": {"owner": {"id": 96}, "assignee": {"id": 842}, "organization": {"id": 915}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 47}, "assignee": {"id": 559}, "organization": {"id": 680}, "project": {"owner": {"id": 782}, "assignee": {"id": 849}, "organization": {"id": 927}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": {"id": 116, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 443}, "assignee": {"id": 574}, "organization": {"id": 116}, "project": {"owner": {"id": 51}, "assignee": {"id": 837}, "organization": {"id": 942}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 4}, "assignee": {"id": 581}, "organization": {"id": 147}, "project": {"owner": {"id": 781}, "assignee": {"id": 805}, "organization": {"id": 968}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"id": 347, "owner": {"id": 428}, "assignee": {"id": 510}, "organization": {"id": 605}, "project": {"owner": {"id": 96}, "assignee": {"id": 816}, "organization": {"id": 900}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 314, "owner": {"id": 60}, "assignee": {"id": 564}, "organization": {"id": 611}, "project": {"owner": {"id": 792}, "assignee": {"id": 831}, "organization": {"id": 957}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 233}, "user": {"role": null}}}, "resource": {"id": 320, "owner": {"id": 465}, "assignee": {"id": 582}, "organization": {"id": 133}, "project": {"owner": {"id": 67}, "assignee": {"id": 869}, "organization": {"id": 901}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 371, "owner": {"id": 33}, "assignee": {"id": 502}, "organization": {"id": 126}, "project": {"owner": {"id": 706}, "assignee": {"id": 839}, "organization": {"id": 999}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 225}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 425}, "assignee": {"id": 557}, "organization": {"id": 695}, "project": {"owner": {"id": 81}, "assignee": {"id": 836}, "organization": {"id": 966}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 379, "owner": {"id": 54}, "assignee": {"id": 570}, "organization": {"id": 681}, "project": {"owner": {"id": 777}, "assignee": {"id": 816}, "organization": {"id": 913}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 10}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 414}, "assignee": {"id": 575}, "organization": {"id": 115}, "project": {"owner": {"id": 745}, "assignee": {"id": 10}, "organization": {"id": 942}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 15, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 373, "owner": {"id": 15}, "assignee": {"id": 523}, "organization": {"id": 147}, "project": {"owner": {"id": 761}, "assignee": {"id": 824}, "organization": {"id": 976}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 81, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 376, "owner": {"id": 410}, "assignee": {"id": 541}, "organization": {"id": 606}, "project": {"owner": {"id": 776}, "assignee": {"id": 81}, "organization": {"id": 927}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 5}, "assignee": {"id": 500}, "organization": {"id": 633}, "project": {"owner": {"id": 793}, "assignee": {"id": 889}, "organization": {"id": 991}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 227}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 495}, "assignee": {"id": 559}, "organization": {"id": 105}, "project": {"owner": {"id": 754}, "assignee": {"id": 39}, "organization": {"id": 996}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 123, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 43}, "assignee": {"id": 512}, "organization": {"id": 123}, "project": {"owner": {"id": 738}, "assignee": {"id": 838}, "organization": {"id": 903}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 170, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 484}, "assignee": {"id": 542}, "organization": {"id": 602}, "project": {"owner": {"id": 749}, "assignee": {"id": 90}, "organization": {"id": 943}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 331, "owner": {"id": 73}, "assignee": {"id": 524}, "organization": {"id": 697}, "project": {"owner": {"id": 766}, "assignee": {"id": 859}, "organization": {"id": 949}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 208}, "user": {"role": "supervisor"}}}, "resource": {"id": 399, "owner": {"id": 497}, "assignee": {"id": 503}, "organization": {"id": 174}, "project": {"owner": {"id": 784}, "assignee": {"id": 17}, "organization": {"id": 990}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 51}, "assignee": {"id": 523}, "organization": {"id": 197}, "project": {"owner": {"id": 790}, "assignee": {"id": 874}, "organization": {"id": 914}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 210}, "user": {"role": "supervisor"}}}, "resource": {"id": 385, "owner": {"id": 476}, "assignee": {"id": 503}, "organization": {"id": 623}, "project": {"owner": {"id": 773}, "assignee": {"id": 60}, "organization": {"id": 905}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 399, "owner": {"id": 24}, "assignee": {"id": 588}, "organization": {"id": 658}, "project": {"owner": {"id": 786}, "assignee": {"id": 839}, "organization": {"id": 926}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 473}, "assignee": {"id": 582}, "organization": {"id": 120}, "project": {"owner": {"id": 747}, "assignee": {"id": 74}, "organization": {"id": 975}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 2}, "assignee": {"id": 583}, "organization": {"id": 108}, "project": {"owner": {"id": 793}, "assignee": {"id": 814}, "organization": {"id": 984}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 228}, "user": {"role": "worker"}}}, "resource": {"id": 328, "owner": {"id": 465}, "assignee": {"id": 594}, "organization": {"id": 601}, "project": {"owner": {"id": 774}, "assignee": {"id": 53}, "organization": {"id": 951}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 255}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 9}, "assignee": {"id": 524}, "organization": {"id": 601}, "project": {"owner": {"id": 768}, "assignee": {"id": 886}, "organization": {"id": 972}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"id": 399, "owner": {"id": 476}, "assignee": {"id": 563}, "organization": {"id": 193}, "project": {"owner": {"id": 720}, "assignee": {"id": 91}, "organization": {"id": 942}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"id": 350, "owner": {"id": 80}, "assignee": {"id": 512}, "organization": {"id": 180}, "project": {"owner": {"id": 760}, "assignee": {"id": 828}, "organization": {"id": 965}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"id": 393, "owner": {"id": 470}, "assignee": {"id": 503}, "organization": {"id": 685}, "project": {"owner": {"id": 744}, "assignee": {"id": 22}, "organization": {"id": 938}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 123, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 52}, "assignee": {"id": 576}, "organization": {"id": 612}, "project": {"owner": {"id": 789}, "assignee": {"id": 880}, "organization": {"id": 939}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 432}, "assignee": {"id": 513}, "organization": {"id": 128}, "project": {"owner": {"id": 736}, "assignee": {"id": 85}, "organization": {"id": 906}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 30}, "assignee": {"id": 516}, "organization": {"id": 180}, "project": {"owner": {"id": 781}, "assignee": {"id": 835}, "organization": {"id": 922}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"id": 376, "owner": {"id": 486}, "assignee": {"id": 595}, "organization": {"id": 677}, "project": {"owner": {"id": 789}, "assignee": {"id": 94}, "organization": {"id": 910}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"id": 380, "owner": {"id": 2}, "assignee": {"id": 596}, "organization": {"id": 645}, "project": {"owner": {"id": 796}, "assignee": {"id": 828}, "organization": {"id": 959}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 290}, "user": {"role": "maintainer"}}}, "resource": {"id": 362, "owner": {"id": 491}, "assignee": {"id": 533}, "organization": {"id": 191}, "project": {"owner": {"id": 760}, "assignee": {"id": 53}, "organization": {"id": 937}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 357, "owner": {"id": 13}, "assignee": {"id": 594}, "organization": {"id": 108}, "project": {"owner": {"id": 758}, "assignee": {"id": 857}, "organization": {"id": 995}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"id": 366, "owner": {"id": 415}, "assignee": {"id": 542}, "organization": {"id": 680}, "project": {"owner": {"id": 757}, "assignee": {"id": 6}, "organization": {"id": 912}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 41}, "assignee": {"id": 515}, "organization": {"id": 696}, "project": {"owner": {"id": 731}, "assignee": {"id": 856}, "organization": {"id": 933}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 468}, "assignee": {"id": 584}, "organization": {"id": 150}, "project": {"owner": {"id": 792}, "assignee": {"id": 8}, "organization": {"id": 997}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 350, "owner": {"id": 41}, "assignee": {"id": 546}, "organization": {"id": 175}, "project": {"owner": {"id": 703}, "assignee": {"id": 801}, "organization": {"id": 919}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 411}, "assignee": {"id": 548}, "organization": {"id": 693}, "project": {"owner": {"id": 735}, "assignee": {"id": 80}, "organization": {"id": 948}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 396, "owner": {"id": 30}, "assignee": {"id": 551}, "organization": {"id": 631}, "project": {"owner": {"id": 746}, "assignee": {"id": 868}, "organization": {"id": 922}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 408}, "assignee": {"id": 505}, "organization": {"id": 177}, "project": {"owner": {"id": 791}, "assignee": {"id": 63}, "organization": {"id": 955}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 348, "owner": {"id": 32}, "assignee": {"id": 577}, "organization": {"id": 151}, "project": {"owner": {"id": 787}, "assignee": {"id": 897}, "organization": {"id": 993}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 139, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"id": 309, "owner": {"id": 409}, "assignee": {"id": 544}, "organization": {"id": 621}, "project": {"owner": {"id": 724}, "assignee": {"id": 11}, "organization": {"id": 922}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 330, "owner": {"id": 86}, "assignee": {"id": 545}, "organization": {"id": 687}, "project": {"owner": {"id": 721}, "assignee": {"id": 816}, "organization": {"id": 907}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"id": 356, "owner": {"id": 485}, "assignee": {"id": 577}, "organization": {"id": 147}, "project": {"owner": {"id": 782}, "assignee": {"id": 34}, "organization": {"id": 973}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 295}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 84}, "assignee": {"id": 572}, "organization": {"id": 130}, "project": {"owner": {"id": 701}, "assignee": {"id": 883}, "organization": {"id": 965}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"id": 399, "owner": {"id": 406}, "assignee": {"id": 588}, "organization": {"id": 678}, "project": {"owner": {"id": 701}, "assignee": {"id": 73}, "organization": {"id": 908}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 303, "owner": {"id": 24}, "assignee": {"id": 525}, "organization": {"id": 627}, "project": {"owner": {"id": 795}, "assignee": {"id": 829}, "organization": {"id": 990}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 350, "owner": {"id": 427}, "assignee": {"id": 569}, "organization": {"id": 176}, "project": {"owner": {"id": 776}, "assignee": {"id": 62}, "organization": {"id": 954}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 90, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"id": 322, "owner": {"id": 90}, "assignee": {"id": 599}, "organization": {"id": 151}, "project": {"owner": {"id": 787}, "assignee": {"id": 813}, "organization": {"id": 923}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 150, "owner": {"id": 28}, "user": {"role": "owner"}}}, "resource": {"id": 319, "owner": {"id": 445}, "assignee": {"id": 570}, "organization": {"id": 654}, "project": {"owner": {"id": 718}, "assignee": {"id": 28}, "organization": {"id": 937}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 11, "privilege": "user"}, "organization": {"id": 192, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 11}, "assignee": {"id": 593}, "organization": {"id": 678}, "project": {"owner": {"id": 733}, "assignee": {"id": 831}, "organization": {"id": 942}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 11, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"id": 346, "owner": {"id": 403}, "assignee": {"id": 584}, "organization": {"id": 109}, "project": {"owner": {"id": 761}, "assignee": {"id": 11}, "organization": {"id": 932}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 4}, "assignee": {"id": 576}, "organization": {"id": 129}, "project": {"owner": {"id": 786}, "assignee": {"id": 811}, "organization": {"id": 941}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 481}, "assignee": {"id": 510}, "organization": {"id": 615}, "project": {"owner": {"id": 728}, "assignee": {"id": 60}, "organization": {"id": 914}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 123, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"id": 399, "owner": {"id": 73}, "assignee": {"id": 522}, "organization": {"id": 679}, "project": {"owner": {"id": 789}, "assignee": {"id": 807}, "organization": {"id": 933}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 172, "owner": {"id": 216}, "user": {"role": "supervisor"}}}, "resource": {"id": 371, "owner": {"id": 431}, "assignee": {"id": 584}, "organization": {"id": 172}, "project": {"owner": {"id": 749}, "assignee": {"id": 50}, "organization": {"id": 944}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 44}, "assignee": {"id": 564}, "organization": {"id": 190}, "project": {"owner": {"id": 702}, "assignee": {"id": 871}, "organization": {"id": 940}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 282}, "user": {"role": "supervisor"}}}, "resource": {"id": 351, "owner": {"id": 433}, "assignee": {"id": 525}, "organization": {"id": 695}, "project": {"owner": {"id": 778}, "assignee": {"id": 1}, "organization": {"id": 983}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 45}, "user": {"role": "owner"}}}, "resource": {"id": 361, "owner": {"id": 45}, "assignee": {"id": 568}, "organization": {"id": 648}, "project": {"owner": {"id": 717}, "assignee": {"id": 843}, "organization": {"id": 919}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 334, "owner": {"id": 441}, "assignee": {"id": 507}, "organization": {"id": 185}, "project": {"owner": {"id": 741}, "assignee": {"id": 77}, "organization": {"id": 900}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"id": 393, "owner": {"id": 55}, "assignee": {"id": 542}, "organization": {"id": 154}, "project": {"owner": {"id": 738}, "assignee": {"id": 892}, "organization": {"id": 977}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 328, "owner": {"id": 444}, "assignee": {"id": 588}, "organization": {"id": 627}, "project": {"owner": {"id": 755}, "assignee": {"id": 77}, "organization": {"id": 994}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"id": 355, "owner": {"id": 24}, "assignee": {"id": 578}, "organization": {"id": 624}, "project": {"owner": {"id": 763}, "assignee": {"id": 879}, "organization": {"id": 921}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"id": 390, "owner": {"id": 448}, "assignee": {"id": 595}, "organization": {"id": 135}, "project": {"owner": {"id": 728}, "assignee": {"id": 13}, "organization": {"id": 903}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 63}, "assignee": {"id": 566}, "organization": {"id": 149}, "project": {"owner": {"id": 733}, "assignee": {"id": 842}, "organization": {"id": 963}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 360, "owner": {"id": 499}, "assignee": {"id": 556}, "organization": {"id": 649}, "project": {"owner": {"id": 735}, "assignee": {"id": 6}, "organization": {"id": 967}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 303, "owner": {"id": 0}, "assignee": {"id": 507}, "organization": {"id": 668}, "project": {"owner": {"id": 718}, "assignee": {"id": 851}, "organization": {"id": 969}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 64}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 409}, "assignee": {"id": 529}, "organization": {"id": 180}, "project": {"owner": {"id": 770}, "assignee": {"id": 64}, "organization": {"id": 905}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 3, "privilege": "worker"}, "organization": {"id": 112, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 3}, "assignee": {"id": 540}, "organization": {"id": 112}, "project": {"owner": {"id": 736}, "assignee": {"id": 810}, "organization": {"id": 940}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 467}, "assignee": {"id": 548}, "organization": {"id": 620}, "project": {"owner": {"id": 779}, "assignee": {"id": 44}, "organization": {"id": 978}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 317, "owner": {"id": 19}, "assignee": {"id": 581}, "organization": {"id": 696}, "project": {"owner": {"id": 774}, "assignee": {"id": 855}, "organization": {"id": 998}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 490}, "assignee": {"id": 563}, "organization": {"id": 163}, "project": {"owner": {"id": 765}, "assignee": {"id": 15}, "organization": {"id": 995}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"id": 341, "owner": {"id": 42}, "assignee": {"id": 537}, "organization": {"id": 162}, "project": {"owner": {"id": 762}, "assignee": {"id": 881}, "organization": {"id": 906}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 494}, "assignee": {"id": 542}, "organization": {"id": 633}, "project": {"owner": {"id": 783}, "assignee": {"id": 53}, "organization": {"id": 946}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 199, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 2}, "assignee": {"id": 597}, "organization": {"id": 641}, "project": {"owner": {"id": 711}, "assignee": {"id": 896}, "organization": {"id": 950}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"id": 309, "owner": {"id": 488}, "assignee": {"id": 500}, "organization": {"id": 130}, "project": {"owner": {"id": 717}, "assignee": {"id": 75}, "organization": {"id": 965}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"id": 321, "owner": {"id": 79}, "assignee": {"id": 555}, "organization": {"id": 109}, "project": {"owner": {"id": 711}, "assignee": {"id": 862}, "organization": {"id": 944}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 473}, "assignee": {"id": 515}, "organization": {"id": 649}, "project": {"owner": {"id": 729}, "assignee": {"id": 39}, "organization": {"id": 977}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 363, "owner": {"id": 63}, "assignee": {"id": 509}, "organization": {"id": 644}, "project": {"owner": {"id": 727}, "assignee": {"id": 862}, "organization": {"id": 983}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"id": 300, "owner": {"id": 493}, "assignee": {"id": 548}, "organization": {"id": 166}, "project": {"owner": {"id": 727}, "assignee": {"id": 43}, "organization": {"id": 962}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 56}, "assignee": {"id": 594}, "organization": {"id": 138}, "project": {"owner": {"id": 776}, "assignee": {"id": 899}, "organization": {"id": 976}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 499}, "assignee": {"id": 585}, "organization": {"id": 667}, "project": {"owner": {"id": 749}, "assignee": {"id": 75}, "organization": {"id": 931}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 393, "owner": {"id": 34}, "assignee": {"id": 589}, "organization": {"id": 616}, "project": {"owner": {"id": 751}, "assignee": {"id": 869}, "organization": {"id": 951}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"id": 311, "owner": {"id": 426}, "assignee": {"id": 550}, "organization": {"id": 145}, "project": {"owner": {"id": 749}, "assignee": {"id": 92}, "organization": {"id": 987}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 345, "owner": {"id": 5}, "assignee": {"id": 506}, "organization": {"id": 159}, "project": {"owner": {"id": 779}, "assignee": {"id": 838}, "organization": {"id": 904}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 273}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 405}, "assignee": {"id": 592}, "organization": {"id": 626}, "project": {"owner": {"id": 769}, "assignee": {"id": 11}, "organization": {"id": 954}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 291}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 58}, "assignee": {"id": 500}, "organization": {"id": 652}, "project": {"owner": {"id": 769}, "assignee": {"id": 845}, "organization": {"id": 959}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 10}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 419}, "assignee": {"id": 519}, "organization": {"id": 187}, "project": {"owner": {"id": 791}, "assignee": {"id": 10}, "organization": {"id": 958}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"id": 368, "owner": {"id": 46}, "assignee": {"id": 555}, "organization": {"id": 115}, "project": {"owner": {"id": 729}, "assignee": {"id": 838}, "organization": {"id": 925}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 391, "owner": {"id": 477}, "assignee": {"id": 597}, "organization": {"id": 656}, "project": {"owner": {"id": 733}, "assignee": {"id": 37}, "organization": {"id": 960}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 380, "owner": {"id": 5}, "assignee": {"id": 513}, "organization": {"id": 626}, "project": {"owner": {"id": 715}, "assignee": {"id": 851}, "organization": {"id": 910}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": {"id": 150, "owner": {"id": 220}, "user": {"role": "maintainer"}}}, "resource": {"id": 382, "owner": {"id": 428}, "assignee": {"id": 598}, "organization": {"id": 150}, "project": {"owner": {"id": 708}, "assignee": {"id": 20}, "organization": {"id": 903}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 18}, "assignee": {"id": 554}, "organization": {"id": 172}, "project": {"owner": {"id": 725}, "assignee": {"id": 899}, "organization": {"id": 961}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 364, "owner": {"id": 457}, "assignee": {"id": 561}, "organization": {"id": 677}, "project": {"owner": {"id": 702}, "assignee": {"id": 64}, "organization": {"id": 963}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 16}, "assignee": {"id": 585}, "organization": {"id": 631}, "project": {"owner": {"id": 700}, "assignee": {"id": 881}, "organization": {"id": 901}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 304, "owner": {"id": 470}, "assignee": {"id": 548}, "organization": {"id": 114}, "project": {"owner": {"id": 752}, "assignee": {"id": 17}, "organization": {"id": 970}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"id": 325, "owner": {"id": 488}, "assignee": {"id": 23}, "organization": {"id": 104}, "project": {"owner": {"id": 718}, "assignee": {"id": 898}, "organization": {"id": 986}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 483}, "assignee": {"id": 549}, "organization": {"id": 697}, "project": {"owner": {"id": 755}, "assignee": {"id": 40}, "organization": {"id": 912}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 336, "owner": {"id": 458}, "assignee": {"id": 24}, "organization": {"id": 677}, "project": {"owner": {"id": 717}, "assignee": {"id": 810}, "organization": {"id": 941}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 343, "owner": {"id": 459}, "assignee": {"id": 520}, "organization": {"id": 123}, "project": {"owner": {"id": 719}, "assignee": {"id": 34}, "organization": {"id": 927}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 469}, "assignee": {"id": 66}, "organization": {"id": 186}, "project": {"owner": {"id": 707}, "assignee": {"id": 819}, "organization": {"id": 961}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 465}, "assignee": {"id": 543}, "organization": {"id": 643}, "project": {"owner": {"id": 785}, "assignee": {"id": 28}, "organization": {"id": 919}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 434}, "assignee": {"id": 63}, "organization": {"id": 612}, "project": {"owner": {"id": 789}, "assignee": {"id": 824}, "organization": {"id": 902}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"id": 399, "owner": {"id": 487}, "assignee": {"id": 557}, "organization": {"id": 144}, "project": {"owner": {"id": 787}, "assignee": {"id": 9}, "organization": {"id": 998}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 484}, "assignee": {"id": 89}, "organization": {"id": 143}, "project": {"owner": {"id": 718}, "assignee": {"id": 811}, "organization": {"id": 916}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 407}, "assignee": {"id": 526}, "organization": {"id": 657}, "project": {"owner": {"id": 725}, "assignee": {"id": 86}, "organization": {"id": 997}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 455}, "assignee": {"id": 96}, "organization": {"id": 652}, "project": {"owner": {"id": 707}, "assignee": {"id": 863}, "organization": {"id": 975}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 367, "owner": {"id": 32}, "assignee": {"id": 566}, "organization": {"id": 110}, "project": {"owner": {"id": 714}, "assignee": {"id": 834}, "organization": {"id": 985}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 419}, "assignee": {"id": 80}, "organization": {"id": 144}, "project": {"owner": {"id": 767}, "assignee": {"id": 892}, "organization": {"id": 952}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 99, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 99}, "assignee": {"id": 522}, "organization": {"id": 653}, "project": {"owner": {"id": 716}, "assignee": {"id": 882}, "organization": {"id": 944}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 480}, "assignee": {"id": 97}, "organization": {"id": 612}, "project": {"owner": {"id": 748}, "assignee": {"id": 838}, "organization": {"id": 955}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 389, "owner": {"id": 22}, "assignee": {"id": 558}, "organization": {"id": 158}, "project": {"owner": {"id": 748}, "assignee": {"id": 814}, "organization": {"id": 979}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 50, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"id": 398, "owner": {"id": 418}, "assignee": {"id": 50}, "organization": {"id": 188}, "project": {"owner": {"id": 701}, "assignee": {"id": 825}, "organization": {"id": 948}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 76, "privilege": "admin"}, "organization": {"id": 172, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 76}, "assignee": {"id": 530}, "organization": {"id": 665}, "project": {"owner": {"id": 780}, "assignee": {"id": 804}, "organization": {"id": 976}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 233}, "user": {"role": null}}}, "resource": {"id": 313, "owner": {"id": 415}, "assignee": {"id": 33}, "organization": {"id": 678}, "project": {"owner": {"id": 787}, "assignee": {"id": 889}, "organization": {"id": 965}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"id": 385, "owner": {"id": 48}, "assignee": {"id": 505}, "organization": {"id": 147}, "project": {"owner": {"id": 744}, "assignee": {"id": 896}, "organization": {"id": 922}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 429}, "assignee": {"id": 49}, "organization": {"id": 164}, "project": {"owner": {"id": 701}, "assignee": {"id": 822}, "organization": {"id": 945}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 265}, "user": {"role": "supervisor"}}}, "resource": {"id": 303, "owner": {"id": 93}, "assignee": {"id": 599}, "organization": {"id": 672}, "project": {"owner": {"id": 753}, "assignee": {"id": 810}, "organization": {"id": 977}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 399, "owner": {"id": 476}, "assignee": {"id": 32}, "organization": {"id": 621}, "project": {"owner": {"id": 776}, "assignee": {"id": 887}, "organization": {"id": 981}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 391, "owner": {"id": 13}, "assignee": {"id": 581}, "organization": {"id": 177}, "project": {"owner": {"id": 780}, "assignee": {"id": 879}, "organization": {"id": 972}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 481}, "assignee": {"id": 98}, "organization": {"id": 192}, "project": {"owner": {"id": 771}, "assignee": {"id": 880}, "organization": {"id": 913}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"id": 355, "owner": {"id": 39}, "assignee": {"id": 553}, "organization": {"id": 623}, "project": {"owner": {"id": 736}, "assignee": {"id": 865}, "organization": {"id": 972}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"id": 397, "owner": {"id": 460}, "assignee": {"id": 52}, "organization": {"id": 611}, "project": {"owner": {"id": 757}, "assignee": {"id": 870}, "organization": {"id": 928}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 330, "owner": {"id": 85}, "assignee": {"id": 562}, "organization": {"id": 120}, "project": {"owner": {"id": 731}, "assignee": {"id": 840}, "organization": {"id": 948}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 465}, "assignee": {"id": 13}, "organization": {"id": 176}, "project": {"owner": {"id": 748}, "assignee": {"id": 821}, "organization": {"id": 987}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 68}, "assignee": {"id": 574}, "organization": {"id": 611}, "project": {"owner": {"id": 769}, "assignee": {"id": 847}, "organization": {"id": 954}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 353, "owner": {"id": 481}, "assignee": {"id": 2}, "organization": {"id": 606}, "project": {"owner": {"id": 789}, "assignee": {"id": 899}, "organization": {"id": 902}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 303, "owner": {"id": 74}, "assignee": {"id": 543}, "organization": {"id": 153}, "project": {"owner": {"id": 767}, "assignee": {"id": 877}, "organization": {"id": 947}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"id": 383, "owner": {"id": 453}, "assignee": {"id": 67}, "organization": {"id": 163}, "project": {"owner": {"id": 752}, "assignee": {"id": 846}, "organization": {"id": 927}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"id": 375, "owner": {"id": 57}, "assignee": {"id": 513}, "organization": {"id": 675}, "project": {"owner": {"id": 753}, "assignee": {"id": 803}, "organization": {"id": 975}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 463}, "assignee": {"id": 3}, "organization": {"id": 611}, "project": {"owner": {"id": 723}, "assignee": {"id": 871}, "organization": {"id": 934}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"id": 387, "owner": {"id": 4}, "assignee": {"id": 592}, "organization": {"id": 137}, "project": {"owner": {"id": 704}, "assignee": {"id": 892}, "organization": {"id": 938}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 166, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 423}, "assignee": {"id": 96}, "organization": {"id": 166}, "project": {"owner": {"id": 759}, "assignee": {"id": 810}, "organization": {"id": 948}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"id": 314, "owner": {"id": 36}, "assignee": {"id": 536}, "organization": {"id": 669}, "project": {"owner": {"id": 794}, "assignee": {"id": 863}, "organization": {"id": 949}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 243}, "user": {"role": null}}}, "resource": {"id": 394, "owner": {"id": 439}, "assignee": {"id": 34}, "organization": {"id": 687}, "project": {"owner": {"id": 762}, "assignee": {"id": 836}, "organization": {"id": 919}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 75}, "assignee": {"id": 573}, "organization": {"id": 169}, "project": {"owner": {"id": 780}, "assignee": {"id": 899}, "organization": {"id": 903}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 33}, "user": {"role": "owner"}}}, "resource": {"id": 374, "owner": {"id": 430}, "assignee": {"id": 33}, "organization": {"id": 184}, "project": {"owner": {"id": 717}, "assignee": {"id": 881}, "organization": {"id": 911}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 17}, "assignee": {"id": 529}, "organization": {"id": 634}, "project": {"owner": {"id": 794}, "assignee": {"id": 811}, "organization": {"id": 979}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 372, "owner": {"id": 416}, "assignee": {"id": 19}, "organization": {"id": 683}, "project": {"owner": {"id": 733}, "assignee": {"id": 884}, "organization": {"id": 981}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 58}, "assignee": {"id": 571}, "organization": {"id": 114}, "project": {"owner": {"id": 753}, "assignee": {"id": 879}, "organization": {"id": 991}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 463}, "assignee": {"id": 3}, "organization": {"id": 112}, "project": {"owner": {"id": 768}, "assignee": {"id": 821}, "organization": {"id": 941}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 224}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 38}, "assignee": {"id": 551}, "organization": {"id": 661}, "project": {"owner": {"id": 788}, "assignee": {"id": 889}, "organization": {"id": 979}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 497}, "assignee": {"id": 32}, "organization": {"id": 655}, "project": {"owner": {"id": 706}, "assignee": {"id": 868}, "organization": {"id": 974}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 196, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 45}, "assignee": {"id": 560}, "organization": {"id": 196}, "project": {"owner": {"id": 721}, "assignee": {"id": 893}, "organization": {"id": 964}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 283}, "user": {"role": "supervisor"}}}, "resource": {"id": 323, "owner": {"id": 405}, "assignee": {"id": 97}, "organization": {"id": 127}, "project": {"owner": {"id": 780}, "assignee": {"id": 896}, "organization": {"id": 917}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 226}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 95}, "assignee": {"id": 557}, "organization": {"id": 639}, "project": {"owner": {"id": 781}, "assignee": {"id": 851}, "organization": {"id": 974}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"id": 399, "owner": {"id": 452}, "assignee": {"id": 10}, "organization": {"id": 659}, "project": {"owner": {"id": 708}, "assignee": {"id": 891}, "organization": {"id": 917}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 97}, "assignee": {"id": 524}, "organization": {"id": 158}, "project": {"owner": {"id": 788}, "assignee": {"id": 817}, "organization": {"id": 935}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 412}, "assignee": {"id": 77}, "organization": {"id": 190}, "project": {"owner": {"id": 730}, "assignee": {"id": 858}, "organization": {"id": 928}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 21}, "assignee": {"id": 510}, "organization": {"id": 642}, "project": {"owner": {"id": 732}, "assignee": {"id": 835}, "organization": {"id": 972}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 303, "owner": {"id": 479}, "assignee": {"id": 44}, "organization": {"id": 604}, "project": {"owner": {"id": 746}, "assignee": {"id": 892}, "organization": {"id": 916}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 345, "owner": {"id": 87}, "assignee": {"id": 568}, "organization": {"id": 173}, "project": {"owner": {"id": 778}, "assignee": {"id": 862}, "organization": {"id": 906}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"id": 395, "owner": {"id": 457}, "assignee": {"id": 52}, "organization": {"id": 115}, "project": {"owner": {"id": 778}, "assignee": {"id": 857}, "organization": {"id": 955}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 303, "owner": {"id": 29}, "assignee": {"id": 515}, "organization": {"id": 615}, "project": {"owner": {"id": 768}, "assignee": {"id": 835}, "organization": {"id": 963}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 122, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 491}, "assignee": {"id": 34}, "organization": {"id": 636}, "project": {"owner": {"id": 745}, "assignee": {"id": 848}, "organization": {"id": 927}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 390, "owner": {"id": 75}, "assignee": {"id": 511}, "organization": {"id": 135}, "project": {"owner": {"id": 791}, "assignee": {"id": 851}, "organization": {"id": 952}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 469}, "assignee": {"id": 99}, "organization": {"id": 122}, "project": {"owner": {"id": 708}, "assignee": {"id": 870}, "organization": {"id": 912}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 97}, "assignee": {"id": 596}, "organization": {"id": 641}, "project": {"owner": {"id": 750}, "assignee": {"id": 805}, "organization": {"id": 990}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 499}, "assignee": {"id": 22}, "organization": {"id": 690}, "project": {"owner": {"id": 719}, "assignee": {"id": 811}, "organization": {"id": 920}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 321, "owner": {"id": 39}, "assignee": {"id": 556}, "organization": {"id": 144}, "project": {"owner": {"id": 765}, "assignee": {"id": 852}, "organization": {"id": 971}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 25, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 349, "owner": {"id": 448}, "assignee": {"id": 25}, "organization": {"id": 116}, "project": {"owner": {"id": 792}, "assignee": {"id": 897}, "organization": {"id": 902}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 33}, "assignee": {"id": 583}, "organization": {"id": 686}, "project": {"owner": {"id": 775}, "assignee": {"id": 877}, "organization": {"id": 924}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 303, "owner": {"id": 496}, "assignee": {"id": 67}, "organization": {"id": 656}, "project": {"owner": {"id": 708}, "assignee": {"id": 875}, "organization": {"id": 998}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 45, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 340, "owner": {"id": 45}, "assignee": {"id": 592}, "organization": {"id": 109}, "project": {"owner": {"id": 744}, "assignee": {"id": 880}, "organization": {"id": 989}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"id": 334, "owner": {"id": 444}, "assignee": {"id": 82}, "organization": {"id": 180}, "project": {"owner": {"id": 733}, "assignee": {"id": 899}, "organization": {"id": 988}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 31}, "assignee": {"id": 550}, "organization": {"id": 685}, "project": {"owner": {"id": 706}, "assignee": {"id": 805}, "organization": {"id": 966}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 409}, "assignee": {"id": 69}, "organization": {"id": 628}, "project": {"owner": {"id": 751}, "assignee": {"id": 873}, "organization": {"id": 909}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 37}, "assignee": {"id": 508}, "organization": {"id": 146}, "project": {"owner": {"id": 716}, "assignee": {"id": 875}, "organization": {"id": 912}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"id": 374, "owner": {"id": 407}, "assignee": {"id": 0}, "organization": {"id": 192}, "project": {"owner": {"id": 796}, "assignee": {"id": 893}, "organization": {"id": 963}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 193, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 29}, "assignee": {"id": 586}, "organization": {"id": 632}, "project": {"owner": {"id": 769}, "assignee": {"id": 848}, "organization": {"id": 909}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 456}, "assignee": {"id": 45}, "organization": {"id": 671}, "project": {"owner": {"id": 767}, "assignee": {"id": 877}, "organization": {"id": 918}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"id": 333, "owner": {"id": 93}, "assignee": {"id": 549}, "organization": {"id": 138}, "project": {"owner": {"id": 706}, "assignee": {"id": 879}, "organization": {"id": 983}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 48, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 399, "owner": {"id": 427}, "assignee": {"id": 48}, "organization": {"id": 142}, "project": {"owner": {"id": 701}, "assignee": {"id": 878}, "organization": {"id": 900}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 384, "owner": {"id": 18}, "assignee": {"id": 523}, "organization": {"id": 665}, "project": {"owner": {"id": 725}, "assignee": {"id": 810}, "organization": {"id": 946}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 199, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 427}, "assignee": {"id": 50}, "organization": {"id": 641}, "project": {"owner": {"id": 734}, "assignee": {"id": 866}, "organization": {"id": 994}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 335, "owner": {"id": 87}, "assignee": {"id": 544}, "organization": {"id": 159}, "project": {"owner": {"id": 799}, "assignee": {"id": 855}, "organization": {"id": 929}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 401}, "assignee": {"id": 67}, "organization": {"id": 120}, "project": {"owner": {"id": 703}, "assignee": {"id": 867}, "organization": {"id": 998}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 362, "owner": {"id": 15}, "assignee": {"id": 551}, "organization": {"id": 697}, "project": {"owner": {"id": 779}, "assignee": {"id": 815}, "organization": {"id": 940}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 439}, "assignee": {"id": 68}, "organization": {"id": 604}, "project": {"owner": {"id": 726}, "assignee": {"id": 863}, "organization": {"id": 955}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 328, "owner": {"id": 10}, "assignee": {"id": 558}, "organization": {"id": 184}, "project": {"owner": {"id": 790}, "assignee": {"id": 822}, "organization": {"id": 960}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"id": 327, "owner": {"id": 491}, "assignee": {"id": 49}, "organization": {"id": 134}, "project": {"owner": {"id": 795}, "assignee": {"id": 824}, "organization": {"id": 932}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"id": 382, "owner": {"id": 27}, "assignee": {"id": 511}, "organization": {"id": 680}, "project": {"owner": {"id": 799}, "assignee": {"id": 881}, "organization": {"id": 944}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"id": 329, "owner": {"id": 408}, "assignee": {"id": 46}, "organization": {"id": 601}, "project": {"owner": {"id": 748}, "assignee": {"id": 854}, "organization": {"id": 971}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 60}, "assignee": {"id": 517}, "organization": {"id": 109}, "project": {"owner": {"id": 749}, "assignee": {"id": 898}, "organization": {"id": 960}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 277}, "user": {"role": "supervisor"}}}, "resource": {"id": 339, "owner": {"id": 491}, "assignee": {"id": 44}, "organization": {"id": 129}, "project": {"owner": {"id": 770}, "assignee": {"id": 879}, "organization": {"id": 919}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 249}, "user": {"role": null}}}, "resource": {"id": 334, "owner": {"id": 67}, "assignee": {"id": 565}, "organization": {"id": 621}, "project": {"owner": {"id": 702}, "assignee": {"id": 897}, "organization": {"id": 931}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 154, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"id": 389, "owner": {"id": 412}, "assignee": {"id": 61}, "organization": {"id": 640}, "project": {"owner": {"id": 715}, "assignee": {"id": 865}, "organization": {"id": 987}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 323, "owner": {"id": 99}, "assignee": {"id": 527}, "organization": {"id": 124}, "project": {"owner": {"id": 748}, "assignee": {"id": 861}, "organization": {"id": 909}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 330, "owner": {"id": 487}, "assignee": {"id": 94}, "organization": {"id": 155}, "project": {"owner": {"id": 703}, "assignee": {"id": 814}, "organization": {"id": 920}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 19}, "assignee": {"id": 590}, "organization": {"id": 609}, "project": {"owner": {"id": 769}, "assignee": {"id": 821}, "organization": {"id": 944}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 434}, "assignee": {"id": 82}, "organization": {"id": 634}, "project": {"owner": {"id": 730}, "assignee": {"id": 878}, "organization": {"id": 932}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 149, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"id": 389, "owner": {"id": 70}, "assignee": {"id": 560}, "organization": {"id": 149}, "project": {"owner": {"id": 781}, "assignee": {"id": 832}, "organization": {"id": 990}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 207}, "user": {"role": null}}}, "resource": {"id": 364, "owner": {"id": 410}, "assignee": {"id": 66}, "organization": {"id": 124}, "project": {"owner": {"id": 764}, "assignee": {"id": 850}, "organization": {"id": 946}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 69}, "assignee": {"id": 559}, "organization": {"id": 658}, "project": {"owner": {"id": 782}, "assignee": {"id": 865}, "organization": {"id": 934}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 486}, "assignee": {"id": 56}, "organization": {"id": 602}, "project": {"owner": {"id": 745}, "assignee": {"id": 855}, "organization": {"id": 940}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 33}, "assignee": {"id": 541}, "organization": {"id": 108}, "project": {"owner": {"id": 783}, "assignee": {"id": 857}, "organization": {"id": 943}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 320, "owner": {"id": 427}, "assignee": {"id": 550}, "organization": {"id": 168}, "project": {"owner": {"id": 716}, "assignee": {"id": 895}, "organization": {"id": 938}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 149, "owner": {"id": 282}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 46}, "assignee": {"id": 566}, "organization": {"id": 668}, "project": {"owner": {"id": 794}, "assignee": {"id": 892}, "organization": {"id": 947}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"id": 393, "owner": {"id": 461}, "assignee": {"id": 551}, "organization": {"id": 612}, "project": {"owner": {"id": 794}, "assignee": {"id": 882}, "organization": {"id": 979}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 25}, "assignee": {"id": 539}, "organization": {"id": 166}, "project": {"owner": {"id": 756}, "assignee": {"id": 821}, "organization": {"id": 911}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 346, "owner": {"id": 483}, "assignee": {"id": 574}, "organization": {"id": 168}, "project": {"owner": {"id": 708}, "assignee": {"id": 818}, "organization": {"id": 911}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 373, "owner": {"id": 21}, "assignee": {"id": 506}, "organization": {"id": 663}, "project": {"owner": {"id": 702}, "assignee": {"id": 808}, "organization": {"id": 933}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 489}, "assignee": {"id": 593}, "organization": {"id": 686}, "project": {"owner": {"id": 710}, "assignee": {"id": 808}, "organization": {"id": 969}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"id": 363, "owner": {"id": 1}, "assignee": {"id": 594}, "organization": {"id": 177}, "project": {"owner": {"id": 742}, "assignee": {"id": 813}, "organization": {"id": 986}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"id": 393, "owner": {"id": 414}, "assignee": {"id": 597}, "organization": {"id": 146}, "project": {"owner": {"id": 717}, "assignee": {"id": 820}, "organization": {"id": 999}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 10}, "assignee": {"id": 543}, "organization": {"id": 637}, "project": {"owner": {"id": 733}, "assignee": {"id": 856}, "organization": {"id": 925}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 295}, "user": {"role": "supervisor"}}}, "resource": {"id": 393, "owner": {"id": 463}, "assignee": {"id": 575}, "organization": {"id": 674}, "project": {"owner": {"id": 711}, "assignee": {"id": 864}, "organization": {"id": 988}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 307, "owner": {"id": 422}, "assignee": {"id": 55}, "organization": {"id": 167}, "project": {"owner": {"id": 728}, "assignee": {"id": 891}, "organization": {"id": 955}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 446}, "assignee": {"id": 567}, "organization": {"id": 152}, "project": {"owner": {"id": 756}, "assignee": {"id": 813}, "organization": {"id": 908}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 301, "owner": {"id": 422}, "assignee": {"id": 96}, "organization": {"id": 688}, "project": {"owner": {"id": 704}, "assignee": {"id": 867}, "organization": {"id": 902}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 197, "owner": {"id": 258}, "user": {"role": "worker"}}}, "resource": {"id": 321, "owner": {"id": 494}, "assignee": {"id": 545}, "organization": {"id": 663}, "project": {"owner": {"id": 791}, "assignee": {"id": 898}, "organization": {"id": 974}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 81, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 282}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 422}, "assignee": {"id": 81}, "organization": {"id": 150}, "project": {"owner": {"id": 781}, "assignee": {"id": 841}, "organization": {"id": 965}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 244}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 492}, "assignee": {"id": 596}, "organization": {"id": 141}, "project": {"owner": {"id": 748}, "assignee": {"id": 874}, "organization": {"id": 910}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 449}, "assignee": {"id": 53}, "organization": {"id": 698}, "project": {"owner": {"id": 737}, "assignee": {"id": 819}, "organization": {"id": 983}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 470}, "assignee": {"id": 555}, "organization": {"id": 644}, "project": {"owner": {"id": 703}, "assignee": {"id": 880}, "organization": {"id": 981}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"id": 321, "owner": {"id": 451}, "assignee": {"id": 21}, "organization": {"id": 120}, "project": {"owner": {"id": 785}, "assignee": {"id": 896}, "organization": {"id": 938}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 10}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 453}, "assignee": {"id": 502}, "organization": {"id": 161}, "project": {"owner": {"id": 726}, "assignee": {"id": 893}, "organization": {"id": 998}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 429}, "assignee": {"id": 35}, "organization": {"id": 613}, "project": {"owner": {"id": 774}, "assignee": {"id": 893}, "organization": {"id": 907}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"id": 309, "owner": {"id": 499}, "assignee": {"id": 502}, "organization": {"id": 656}, "project": {"owner": {"id": 756}, "assignee": {"id": 838}, "organization": {"id": 997}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 258}, "user": {"role": "worker"}}}, "resource": {"id": 316, "owner": {"id": 485}, "assignee": {"id": 4}, "organization": {"id": 186}, "project": {"owner": {"id": 707}, "assignee": {"id": 893}, "organization": {"id": 993}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 488}, "assignee": {"id": 597}, "organization": {"id": 145}, "project": {"owner": {"id": 766}, "assignee": {"id": 866}, "organization": {"id": 991}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 50, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"id": 390, "owner": {"id": 460}, "assignee": {"id": 50}, "organization": {"id": 691}, "project": {"owner": {"id": 710}, "assignee": {"id": 859}, "organization": {"id": 906}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 388, "owner": {"id": 496}, "assignee": {"id": 520}, "organization": {"id": 645}, "project": {"owner": {"id": 703}, "assignee": {"id": 858}, "organization": {"id": 983}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 490}, "assignee": {"id": 36}, "organization": {"id": 114}, "project": {"owner": {"id": 781}, "assignee": {"id": 876}, "organization": {"id": 987}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 394, "owner": {"id": 447}, "assignee": {"id": 511}, "organization": {"id": 125}, "project": {"owner": {"id": 779}, "assignee": {"id": 808}, "organization": {"id": 979}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 270}, "user": {"role": null}}}, "resource": {"id": 309, "owner": {"id": 433}, "assignee": {"id": 41}, "organization": {"id": 698}, "project": {"owner": {"id": 773}, "assignee": {"id": 856}, "organization": {"id": 981}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"id": 395, "owner": {"id": 471}, "assignee": {"id": 500}, "organization": {"id": 685}, "project": {"owner": {"id": 702}, "assignee": {"id": 809}, "organization": {"id": 976}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 403}, "assignee": {"id": 81}, "organization": {"id": 158}, "project": {"owner": {"id": 766}, "assignee": {"id": 891}, "organization": {"id": 904}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 321, "owner": {"id": 469}, "assignee": {"id": 591}, "organization": {"id": 132}, "project": {"owner": {"id": 730}, "assignee": {"id": 807}, "organization": {"id": 944}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 8}, "user": {"role": "owner"}}}, "resource": {"id": 343, "owner": {"id": 420}, "assignee": {"id": 8}, "organization": {"id": 607}, "project": {"owner": {"id": 711}, "assignee": {"id": 894}, "organization": {"id": 962}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"id": 328, "owner": {"id": 467}, "assignee": {"id": 541}, "organization": {"id": 652}, "project": {"owner": {"id": 704}, "assignee": {"id": 858}, "organization": {"id": 963}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 452}, "assignee": {"id": 12}, "organization": {"id": 125}, "project": {"owner": {"id": 715}, "assignee": {"id": 827}, "organization": {"id": 977}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 307, "owner": {"id": 448}, "assignee": {"id": 582}, "organization": {"id": 131}, "project": {"owner": {"id": 746}, "assignee": {"id": 835}, "organization": {"id": 908}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 270}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 468}, "assignee": {"id": 54}, "organization": {"id": 666}, "project": {"owner": {"id": 746}, "assignee": {"id": 818}, "organization": {"id": 909}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 317, "owner": {"id": 466}, "assignee": {"id": 510}, "organization": {"id": 633}, "project": {"owner": {"id": 782}, "assignee": {"id": 830}, "organization": {"id": 953}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 436}, "assignee": {"id": 31}, "organization": {"id": 129}, "project": {"owner": {"id": 763}, "assignee": {"id": 812}, "organization": {"id": 909}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"id": 317, "owner": {"id": 402}, "assignee": {"id": 552}, "organization": {"id": 134}, "project": {"owner": {"id": 742}, "assignee": {"id": 847}, "organization": {"id": 912}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 127, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 482}, "assignee": {"id": 61}, "organization": {"id": 621}, "project": {"owner": {"id": 779}, "assignee": {"id": 835}, "organization": {"id": 906}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 81, "privilege": "user"}, "organization": {"id": 174, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 460}, "assignee": {"id": 584}, "organization": {"id": 640}, "project": {"owner": {"id": 773}, "assignee": {"id": 842}, "organization": {"id": 960}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 446}, "assignee": {"id": 71}, "organization": {"id": 108}, "project": {"owner": {"id": 777}, "assignee": {"id": 826}, "organization": {"id": 933}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 270}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 458}, "assignee": {"id": 585}, "organization": {"id": 129}, "project": {"owner": {"id": 745}, "assignee": {"id": 800}, "organization": {"id": 979}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 462}, "assignee": {"id": 51}, "organization": {"id": 684}, "project": {"owner": {"id": 793}, "assignee": {"id": 896}, "organization": {"id": 982}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"id": 346, "owner": {"id": 463}, "assignee": {"id": 576}, "organization": {"id": 611}, "project": {"owner": {"id": 726}, "assignee": {"id": 822}, "organization": {"id": 914}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 225}, "user": {"role": null}}}, "resource": {"id": 388, "owner": {"id": 465}, "assignee": {"id": 17}, "organization": {"id": 155}, "project": {"owner": {"id": 782}, "assignee": {"id": 831}, "organization": {"id": 959}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 150, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 439}, "assignee": {"id": 507}, "organization": {"id": 150}, "project": {"owner": {"id": 799}, "assignee": {"id": 887}, "organization": {"id": 971}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 460}, "assignee": {"id": 34}, "organization": {"id": 666}, "project": {"owner": {"id": 755}, "assignee": {"id": 891}, "organization": {"id": 904}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"id": 351, "owner": {"id": 420}, "assignee": {"id": 551}, "organization": {"id": 656}, "project": {"owner": {"id": 764}, "assignee": {"id": 853}, "organization": {"id": 963}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 22, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"id": 349, "owner": {"id": 415}, "assignee": {"id": 22}, "organization": {"id": 133}, "project": {"owner": {"id": 754}, "assignee": {"id": 818}, "organization": {"id": 969}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 451}, "assignee": {"id": 526}, "organization": {"id": 109}, "project": {"owner": {"id": 770}, "assignee": {"id": 880}, "organization": {"id": 937}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 424}, "assignee": {"id": 27}, "organization": {"id": 631}, "project": {"owner": {"id": 701}, "assignee": {"id": 827}, "organization": {"id": 988}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"id": 339, "owner": {"id": 449}, "assignee": {"id": 501}, "organization": {"id": 617}, "project": {"owner": {"id": 745}, "assignee": {"id": 885}, "organization": {"id": 990}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 172, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 356, "owner": {"id": 479}, "assignee": {"id": 76}, "organization": {"id": 172}, "project": {"owner": {"id": 757}, "assignee": {"id": 849}, "organization": {"id": 902}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 270}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 465}, "assignee": {"id": 555}, "organization": {"id": 159}, "project": {"owner": {"id": 779}, "assignee": {"id": 869}, "organization": {"id": 925}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 348, "owner": {"id": 466}, "assignee": {"id": 58}, "organization": {"id": 679}, "project": {"owner": {"id": 770}, "assignee": {"id": 853}, "organization": {"id": 978}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": {"id": 193, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 399, "owner": {"id": 491}, "assignee": {"id": 568}, "organization": {"id": 648}, "project": {"owner": {"id": 742}, "assignee": {"id": 815}, "organization": {"id": 935}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 485}, "assignee": {"id": 46}, "organization": {"id": 160}, "project": {"owner": {"id": 735}, "assignee": {"id": 887}, "organization": {"id": 984}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 432}, "assignee": {"id": 558}, "organization": {"id": 143}, "project": {"owner": {"id": 700}, "assignee": {"id": 837}, "organization": {"id": 917}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"id": 337, "owner": {"id": 491}, "assignee": {"id": 75}, "organization": {"id": 649}, "project": {"owner": {"id": 750}, "assignee": {"id": 869}, "organization": {"id": 918}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 14}, "user": {"role": "owner"}}}, "resource": {"id": 348, "owner": {"id": 432}, "assignee": {"id": 536}, "organization": {"id": 658}, "project": {"owner": {"id": 753}, "assignee": {"id": 851}, "organization": {"id": 919}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 347, "owner": {"id": 401}, "assignee": {"id": 69}, "organization": {"id": 196}, "project": {"owner": {"id": 754}, "assignee": {"id": 846}, "organization": {"id": 966}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 479}, "assignee": {"id": 532}, "organization": {"id": 113}, "project": {"owner": {"id": 764}, "assignee": {"id": 895}, "organization": {"id": 983}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"id": 331, "owner": {"id": 493}, "assignee": {"id": 35}, "organization": {"id": 684}, "project": {"owner": {"id": 760}, "assignee": {"id": 855}, "organization": {"id": 932}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 323, "owner": {"id": 404}, "assignee": {"id": 565}, "organization": {"id": 681}, "project": {"owner": {"id": 772}, "assignee": {"id": 803}, "organization": {"id": 927}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"id": 356, "owner": {"id": 416}, "assignee": {"id": 72}, "organization": {"id": 144}, "project": {"owner": {"id": 712}, "assignee": {"id": 806}, "organization": {"id": 975}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 389, "owner": {"id": 488}, "assignee": {"id": 512}, "organization": {"id": 111}, "project": {"owner": {"id": 721}, "assignee": {"id": 854}, "organization": {"id": 935}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 239}, "user": {"role": null}}}, "resource": {"id": 313, "owner": {"id": 404}, "assignee": {"id": 19}, "organization": {"id": 624}, "project": {"owner": {"id": 777}, "assignee": {"id": 867}, "organization": {"id": 921}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 421}, "assignee": {"id": 519}, "organization": {"id": 620}, "project": {"owner": {"id": 795}, "assignee": {"id": 884}, "organization": {"id": 943}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 321, "owner": {"id": 447}, "assignee": {"id": 99}, "organization": {"id": 192}, "project": {"owner": {"id": 713}, "assignee": {"id": 822}, "organization": {"id": 911}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"id": 324, "owner": {"id": 455}, "assignee": {"id": 564}, "organization": {"id": 142}, "project": {"owner": {"id": 774}, "assignee": {"id": 892}, "organization": {"id": 990}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"id": 325, "owner": {"id": 427}, "assignee": {"id": 18}, "organization": {"id": 661}, "project": {"owner": {"id": 738}, "assignee": {"id": 824}, "organization": {"id": 946}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"id": 327, "owner": {"id": 493}, "assignee": {"id": 556}, "organization": {"id": 689}, "project": {"owner": {"id": 759}, "assignee": {"id": 867}, "organization": {"id": 949}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 419}, "assignee": {"id": 13}, "organization": {"id": 122}, "project": {"owner": {"id": 755}, "assignee": {"id": 858}, "organization": {"id": 972}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": {"id": 186, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 332, "owner": {"id": 425}, "assignee": {"id": 508}, "organization": {"id": 186}, "project": {"owner": {"id": 705}, "assignee": {"id": 833}, "organization": {"id": 952}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"id": 325, "owner": {"id": 482}, "assignee": {"id": 63}, "organization": {"id": 628}, "project": {"owner": {"id": 744}, "assignee": {"id": 805}, "organization": {"id": 922}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 224}, "user": {"role": null}}}, "resource": {"id": 388, "owner": {"id": 495}, "assignee": {"id": 559}, "organization": {"id": 628}, "project": {"owner": {"id": 723}, "assignee": {"id": 832}, "organization": {"id": 928}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 438}, "assignee": {"id": 70}, "organization": {"id": 149}, "project": {"owner": {"id": 709}, "assignee": {"id": 813}, "organization": {"id": 910}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 327, "owner": {"id": 476}, "assignee": {"id": 578}, "organization": {"id": 191}, "project": {"owner": {"id": 703}, "assignee": {"id": 882}, "organization": {"id": 911}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"id": 359, "owner": {"id": 499}, "assignee": {"id": 65}, "organization": {"id": 681}, "project": {"owner": {"id": 782}, "assignee": {"id": 829}, "organization": {"id": 931}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 395, "owner": {"id": 434}, "assignee": {"id": 545}, "organization": {"id": 696}, "project": {"owner": {"id": 739}, "assignee": {"id": 898}, "organization": {"id": 932}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 341, "owner": {"id": 468}, "assignee": {"id": 91}, "organization": {"id": 187}, "project": {"owner": {"id": 726}, "assignee": {"id": 874}, "organization": {"id": 950}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 267}, "user": {"role": "maintainer"}}}, "resource": {"id": 310, "owner": {"id": 426}, "assignee": {"id": 520}, "organization": {"id": 124}, "project": {"owner": {"id": 716}, "assignee": {"id": 809}, "organization": {"id": 935}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 458}, "assignee": {"id": 90}, "organization": {"id": 696}, "project": {"owner": {"id": 709}, "assignee": {"id": 875}, "organization": {"id": 945}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 289}, "user": {"role": "maintainer"}}}, "resource": {"id": 379, "owner": {"id": 481}, "assignee": {"id": 533}, "organization": {"id": 616}, "project": {"owner": {"id": 769}, "assignee": {"id": 869}, "organization": {"id": 921}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"id": 312, "owner": {"id": 477}, "assignee": {"id": 11}, "organization": {"id": 138}, "project": {"owner": {"id": 719}, "assignee": {"id": 898}, "organization": {"id": 907}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 316, "owner": {"id": 415}, "assignee": {"id": 538}, "organization": {"id": 112}, "project": {"owner": {"id": 741}, "assignee": {"id": 837}, "organization": {"id": 973}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 454}, "assignee": {"id": 20}, "organization": {"id": 686}, "project": {"owner": {"id": 718}, "assignee": {"id": 852}, "organization": {"id": 991}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": {"id": 150, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 421}, "assignee": {"id": 518}, "organization": {"id": 664}, "project": {"owner": {"id": 734}, "assignee": {"id": 898}, "organization": {"id": 922}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 435}, "assignee": {"id": 68}, "organization": {"id": 122}, "project": {"owner": {"id": 772}, "assignee": {"id": 873}, "organization": {"id": 967}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 492}, "assignee": {"id": 512}, "organization": {"id": 175}, "project": {"owner": {"id": 777}, "assignee": {"id": 819}, "organization": {"id": 926}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"id": 395, "owner": {"id": 418}, "assignee": {"id": 79}, "organization": {"id": 640}, "project": {"owner": {"id": 741}, "assignee": {"id": 837}, "organization": {"id": 973}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 445}, "assignee": {"id": 504}, "organization": {"id": 669}, "project": {"owner": {"id": 781}, "assignee": {"id": 812}, "organization": {"id": 971}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 478}, "assignee": {"id": 40}, "organization": {"id": 122}, "project": {"owner": {"id": 711}, "assignee": {"id": 850}, "organization": {"id": 922}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": {"id": 190, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 472}, "assignee": {"id": 551}, "organization": {"id": 190}, "project": {"owner": {"id": 761}, "assignee": {"id": 852}, "organization": {"id": 977}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 41, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 304, "owner": {"id": 451}, "assignee": {"id": 41}, "organization": {"id": 683}, "project": {"owner": {"id": 791}, "assignee": {"id": 821}, "organization": {"id": 946}}}} } -test_scope_DELETE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "delete:annotations", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"id": 313, "owner": {"id": 495}, "assignee": {"id": 572}, "organization": {"id": 640}, "project": {"owner": {"id": 733}, "assignee": {"id": 860}, "organization": {"id": 953}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 348, "owner": {"id": 472}, "assignee": {"id": 51}, "organization": {"id": 163}, "project": {"owner": {"id": 731}, "assignee": {"id": 814}, "organization": {"id": 925}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": null}, "resource": {"id": 355, "owner": {"id": 450}, "assignee": {"id": 569}, "organization": {"id": 635}, "project": {"owner": {"id": 56}, "assignee": {"id": 872}, "organization": {"id": 979}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"id": 327, "owner": {"id": 462}, "assignee": {"id": 64}, "organization": {"id": 633}, "project": {"owner": {"id": 797}, "assignee": {"id": 813}, "organization": {"id": 932}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": null}, "resource": {"id": 389, "owner": {"id": 481}, "assignee": {"id": 520}, "organization": {"id": 601}, "project": {"owner": {"id": 46}, "assignee": {"id": 829}, "organization": {"id": 961}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 336, "owner": {"id": 485}, "assignee": {"id": 92}, "organization": {"id": 114}, "project": {"owner": {"id": 711}, "assignee": {"id": 845}, "organization": {"id": 923}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": null}, "resource": {"id": 371, "owner": {"id": 471}, "assignee": {"id": 598}, "organization": {"id": 630}, "project": {"owner": {"id": 28}, "assignee": {"id": 891}, "organization": {"id": 990}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 178, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 343, "owner": {"id": 481}, "assignee": {"id": 10}, "organization": {"id": 694}, "project": {"owner": {"id": 785}, "assignee": {"id": 855}, "organization": {"id": 953}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": null}, "resource": {"id": 328, "owner": {"id": 451}, "assignee": {"id": 561}, "organization": {"id": 610}, "project": {"owner": {"id": 82}, "assignee": {"id": 875}, "organization": {"id": 953}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 424}, "assignee": {"id": 12}, "organization": {"id": 110}, "project": {"owner": {"id": 794}, "assignee": {"id": 832}, "organization": {"id": 992}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": null}, "resource": {"id": 343, "owner": {"id": 493}, "assignee": {"id": 515}, "organization": {"id": 613}, "project": {"owner": {"id": 56}, "assignee": {"id": 840}, "organization": {"id": 926}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 331, "owner": {"id": 439}, "assignee": {"id": 27}, "organization": {"id": 697}, "project": {"owner": {"id": 707}, "assignee": {"id": 831}, "organization": {"id": 902}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": null}, "resource": {"id": 333, "owner": {"id": 436}, "assignee": {"id": 564}, "organization": {"id": 633}, "project": {"owner": {"id": 776}, "assignee": {"id": 61}, "organization": {"id": 909}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 421}, "assignee": {"id": 599}, "organization": {"id": 121}, "project": {"owner": {"id": 761}, "assignee": {"id": 840}, "organization": {"id": 946}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": null}, "resource": {"id": 354, "owner": {"id": 416}, "assignee": {"id": 598}, "organization": {"id": 674}, "project": {"owner": {"id": 736}, "assignee": {"id": 27}, "organization": {"id": 992}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 76, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 76}, "user": {"role": "owner"}}}, "resource": {"id": 384, "owner": {"id": 427}, "assignee": {"id": 562}, "organization": {"id": 626}, "project": {"owner": {"id": 716}, "assignee": {"id": 821}, "organization": {"id": 967}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": null}, "resource": {"id": 388, "owner": {"id": 490}, "assignee": {"id": 536}, "organization": {"id": 693}, "project": {"owner": {"id": 760}, "assignee": {"id": 55}, "organization": {"id": 975}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 163, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 310, "owner": {"id": 402}, "assignee": {"id": 544}, "organization": {"id": 163}, "project": {"owner": {"id": 775}, "assignee": {"id": 855}, "organization": {"id": 973}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": null}, "resource": {"id": 312, "owner": {"id": 498}, "assignee": {"id": 506}, "organization": {"id": 677}, "project": {"owner": {"id": 735}, "assignee": {"id": 79}, "organization": {"id": 980}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 317, "owner": {"id": 486}, "assignee": {"id": 534}, "organization": {"id": 614}, "project": {"owner": {"id": 723}, "assignee": {"id": 861}, "organization": {"id": 931}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": null}, "resource": {"id": 361, "owner": {"id": 499}, "assignee": {"id": 531}, "organization": {"id": 631}, "project": {"owner": {"id": 780}, "assignee": {"id": 57}, "organization": {"id": 925}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 291}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 447}, "assignee": {"id": 570}, "organization": {"id": 121}, "project": {"owner": {"id": 797}, "assignee": {"id": 822}, "organization": {"id": 909}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": null}, "resource": {"id": 337, "owner": {"id": 26}, "assignee": {"id": 549}, "organization": {"id": 668}, "project": {"owner": {"id": 776}, "assignee": {"id": 849}, "organization": {"id": 913}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"id": 327, "owner": {"id": 450}, "assignee": {"id": 543}, "organization": {"id": 613}, "project": {"owner": {"id": 750}, "assignee": {"id": 871}, "organization": {"id": 906}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": null}, "resource": {"id": 384, "owner": {"id": 53}, "assignee": {"id": 546}, "organization": {"id": 639}, "project": {"owner": {"id": 798}, "assignee": {"id": 865}, "organization": {"id": 904}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 451}, "assignee": {"id": 503}, "organization": {"id": 192}, "project": {"owner": {"id": 713}, "assignee": {"id": 863}, "organization": {"id": 971}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": null}, "resource": {"id": 308, "owner": {"id": 85}, "assignee": {"id": 546}, "organization": {"id": 624}, "project": {"owner": {"id": 716}, "assignee": {"id": 841}, "organization": {"id": 955}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 490}, "assignee": {"id": 536}, "organization": {"id": 660}, "project": {"owner": {"id": 795}, "assignee": {"id": 821}, "organization": {"id": 936}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": null}, "resource": {"id": 366, "owner": {"id": 82}, "assignee": {"id": 558}, "organization": {"id": 666}, "project": {"owner": {"id": 727}, "assignee": {"id": 843}, "organization": {"id": 900}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"id": 361, "owner": {"id": 454}, "assignee": {"id": 560}, "organization": {"id": 151}, "project": {"owner": {"id": 798}, "assignee": {"id": 855}, "organization": {"id": 908}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": null}, "resource": {"id": 340, "owner": {"id": 96}, "assignee": {"id": 519}, "organization": {"id": 645}, "project": {"owner": {"id": 775}, "assignee": {"id": 890}, "organization": {"id": 988}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 76, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"id": 366, "owner": {"id": 430}, "assignee": {"id": 545}, "organization": {"id": 685}, "project": {"owner": {"id": 738}, "assignee": {"id": 894}, "organization": {"id": 954}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": null}, "resource": {"id": 341, "owner": {"id": 408}, "assignee": {"id": 18}, "organization": {"id": 689}, "project": {"owner": {"id": 704}, "assignee": {"id": 812}, "organization": {"id": 996}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 491}, "assignee": {"id": 510}, "organization": {"id": 101}, "project": {"owner": {"id": 742}, "assignee": {"id": 806}, "organization": {"id": 922}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": null}, "resource": {"id": 318, "owner": {"id": 489}, "assignee": {"id": 71}, "organization": {"id": 678}, "project": {"owner": {"id": 722}, "assignee": {"id": 884}, "organization": {"id": 913}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 91, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 467}, "assignee": {"id": 560}, "organization": {"id": 656}, "project": {"owner": {"id": 743}, "assignee": {"id": 818}, "organization": {"id": 993}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": null}, "resource": {"id": 384, "owner": {"id": 480}, "assignee": {"id": 98}, "organization": {"id": 665}, "project": {"owner": {"id": 718}, "assignee": {"id": 850}, "organization": {"id": 957}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 358, "owner": {"id": 462}, "assignee": {"id": 514}, "organization": {"id": 145}, "project": {"owner": {"id": 719}, "assignee": {"id": 851}, "organization": {"id": 954}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": null}, "resource": {"id": 339, "owner": {"id": 425}, "assignee": {"id": 24}, "organization": {"id": 607}, "project": {"owner": {"id": 728}, "assignee": {"id": 876}, "organization": {"id": 968}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 323, "owner": {"id": 467}, "assignee": {"id": 538}, "organization": {"id": 616}, "project": {"owner": {"id": 721}, "assignee": {"id": 806}, "organization": {"id": 968}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": null}, "resource": {"id": 321, "owner": {"id": 490}, "assignee": {"id": 94}, "organization": {"id": 648}, "project": {"owner": {"id": 731}, "assignee": {"id": 832}, "organization": {"id": 964}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 199, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"id": 339, "owner": {"id": 410}, "assignee": {"id": 513}, "organization": {"id": 199}, "project": {"owner": {"id": 791}, "assignee": {"id": 888}, "organization": {"id": 988}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": null}, "resource": {"id": 305, "owner": {"id": 417}, "assignee": {"id": 577}, "organization": {"id": 644}, "project": {"owner": {"id": 710}, "assignee": {"id": 862}, "organization": {"id": 997}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 494}, "assignee": {"id": 572}, "organization": {"id": 681}, "project": {"owner": {"id": 709}, "assignee": {"id": 806}, "organization": {"id": 971}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": null}, "resource": {"id": 325, "owner": {"id": 402}, "assignee": {"id": 590}, "organization": {"id": 638}, "project": {"owner": {"id": 732}, "assignee": {"id": 844}, "organization": {"id": 908}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 494}, "assignee": {"id": 522}, "organization": {"id": 154}, "project": {"owner": {"id": 705}, "assignee": {"id": 836}, "organization": {"id": 998}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": null}, "resource": {"id": 320, "owner": {"id": 478}, "assignee": {"id": 587}, "organization": {"id": 686}, "project": {"owner": {"id": 769}, "assignee": {"id": 822}, "organization": {"id": 921}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 283}, "user": {"role": "worker"}}}, "resource": {"id": 381, "owner": {"id": 411}, "assignee": {"id": 597}, "organization": {"id": 639}, "project": {"owner": {"id": 731}, "assignee": {"id": 824}, "organization": {"id": 988}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": null}, "resource": {"id": 395, "owner": {"id": 481}, "assignee": {"id": 516}, "organization": {"id": 601}, "project": {"owner": {"id": 795}, "assignee": {"id": 858}, "organization": {"id": 927}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"id": 336, "owner": {"id": 465}, "assignee": {"id": 555}, "organization": {"id": 141}, "project": {"owner": {"id": 775}, "assignee": {"id": 874}, "organization": {"id": 924}}}} } -test_scope_UPDATE_DESC_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": null}, "resource": {"id": 338, "owner": {"id": 400}, "assignee": {"id": 522}, "organization": {"id": 642}, "project": {"owner": {"id": 744}, "assignee": {"id": 870}, "organization": {"id": 930}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"id": 332, "owner": {"id": 461}, "assignee": {"id": 564}, "organization": {"id": 607}, "project": {"owner": {"id": 745}, "assignee": {"id": 899}, "organization": {"id": 997}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 491}, "assignee": {"id": 567}, "organization": {"id": 154}, "project": {"owner": {"id": 48}, "assignee": {"id": 867}, "organization": {"id": 933}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"id": 353, "owner": {"id": 449}, "assignee": {"id": 575}, "organization": {"id": 137}, "project": {"owner": {"id": 761}, "assignee": {"id": 821}, "organization": {"id": 991}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 117, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"id": 386, "owner": {"id": 451}, "assignee": {"id": 574}, "organization": {"id": 617}, "project": {"owner": {"id": 22}, "assignee": {"id": 877}, "organization": {"id": 962}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 326, "owner": {"id": 459}, "assignee": {"id": 575}, "organization": {"id": 687}, "project": {"owner": {"id": 749}, "assignee": {"id": 886}, "organization": {"id": 946}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 438}, "assignee": {"id": 570}, "organization": {"id": 158}, "project": {"owner": {"id": 43}, "assignee": {"id": 873}, "organization": {"id": 981}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:organization", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 333, "owner": {"id": 474}, "assignee": {"id": 573}, "organization": {"id": 170}, "project": {"owner": {"id": 707}, "assignee": {"id": 850}, "organization": {"id": 913}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"id": 383, "owner": {"id": 496}, "assignee": {"id": 599}, "organization": {"id": 612}, "project": {"owner": {"id": 26}, "assignee": {"id": 826}, "organization": {"id": 926}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 11, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 330, "owner": {"id": 417}, "assignee": {"id": 521}, "organization": {"id": 619}, "project": {"owner": {"id": 768}, "assignee": {"id": 815}, "organization": {"id": 986}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 327, "owner": {"id": 405}, "assignee": {"id": 565}, "organization": {"id": 138}, "project": {"owner": {"id": 64}, "assignee": {"id": 813}, "organization": {"id": 962}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 492}, "assignee": {"id": 573}, "organization": {"id": 199}, "project": {"owner": {"id": 785}, "assignee": {"id": 874}, "organization": {"id": 928}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 277}, "user": {"role": "supervisor"}}}, "resource": {"id": 330, "owner": {"id": 469}, "assignee": {"id": 517}, "organization": {"id": 688}, "project": {"owner": {"id": 36}, "assignee": {"id": 822}, "organization": {"id": 920}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 353, "owner": {"id": 411}, "assignee": {"id": 513}, "organization": {"id": 697}, "project": {"owner": {"id": 727}, "assignee": {"id": 849}, "organization": {"id": 909}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"id": 367, "owner": {"id": 411}, "assignee": {"id": 525}, "organization": {"id": 168}, "project": {"owner": {"id": 82}, "assignee": {"id": 887}, "organization": {"id": 928}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 483}, "assignee": {"id": 531}, "organization": {"id": 114}, "project": {"owner": {"id": 787}, "assignee": {"id": 843}, "organization": {"id": 982}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 447}, "assignee": {"id": 527}, "organization": {"id": 688}, "project": {"owner": {"id": 10}, "assignee": {"id": 890}, "organization": {"id": 980}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 292}, "user": {"role": "worker"}}}, "resource": {"id": 356, "owner": {"id": 470}, "assignee": {"id": 588}, "organization": {"id": 670}, "project": {"owner": {"id": 722}, "assignee": {"id": 874}, "organization": {"id": 999}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 414}, "assignee": {"id": 580}, "organization": {"id": 122}, "project": {"owner": {"id": 69}, "assignee": {"id": 854}, "organization": {"id": 995}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 312, "owner": {"id": 400}, "assignee": {"id": 549}, "organization": {"id": 175}, "project": {"owner": {"id": 752}, "assignee": {"id": 892}, "organization": {"id": 915}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 442}, "assignee": {"id": 519}, "organization": {"id": 608}, "project": {"owner": {"id": 67}, "assignee": {"id": 889}, "organization": {"id": 955}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"id": 386, "owner": {"id": 428}, "assignee": {"id": 587}, "organization": {"id": 669}, "project": {"owner": {"id": 726}, "assignee": {"id": 830}, "organization": {"id": 942}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 76}, "user": {"role": "owner"}}}, "resource": {"id": 343, "owner": {"id": 473}, "assignee": {"id": 582}, "organization": {"id": 116}, "project": {"owner": {"id": 76}, "assignee": {"id": 804}, "organization": {"id": 923}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 403}, "assignee": {"id": 535}, "organization": {"id": 133}, "project": {"owner": {"id": 777}, "assignee": {"id": 827}, "organization": {"id": 960}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 320, "owner": {"id": 433}, "assignee": {"id": 518}, "organization": {"id": 677}, "project": {"owner": {"id": 0}, "assignee": {"id": 801}, "organization": {"id": 957}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 419}, "assignee": {"id": 580}, "organization": {"id": 665}, "project": {"owner": {"id": 785}, "assignee": {"id": 893}, "organization": {"id": 985}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 318, "owner": {"id": 414}, "assignee": {"id": 546}, "organization": {"id": 140}, "project": {"owner": {"id": 2}, "assignee": {"id": 844}, "organization": {"id": 974}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 401}, "assignee": {"id": 524}, "organization": {"id": 189}, "project": {"owner": {"id": 727}, "assignee": {"id": 803}, "organization": {"id": 999}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 447}, "assignee": {"id": 562}, "organization": {"id": 624}, "project": {"owner": {"id": 49}, "assignee": {"id": 884}, "organization": {"id": 941}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"id": 300, "owner": {"id": 430}, "assignee": {"id": 541}, "organization": {"id": 656}, "project": {"owner": {"id": 779}, "assignee": {"id": 873}, "organization": {"id": 949}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"id": 314, "owner": {"id": 491}, "assignee": {"id": 559}, "organization": {"id": 183}, "project": {"owner": {"id": 20}, "assignee": {"id": 888}, "organization": {"id": 997}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 399, "owner": {"id": 431}, "assignee": {"id": 598}, "organization": {"id": 105}, "project": {"owner": {"id": 730}, "assignee": {"id": 894}, "organization": {"id": 916}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 333, "owner": {"id": 464}, "assignee": {"id": 535}, "organization": {"id": 678}, "project": {"owner": {"id": 23}, "assignee": {"id": 839}, "organization": {"id": 933}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 394, "owner": {"id": 430}, "assignee": {"id": 553}, "organization": {"id": 644}, "project": {"owner": {"id": 788}, "assignee": {"id": 854}, "organization": {"id": 900}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"id": 343, "owner": {"id": 440}, "assignee": {"id": 521}, "organization": {"id": 186}, "project": {"owner": {"id": 22}, "assignee": {"id": 856}, "organization": {"id": 987}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 186, "owner": {"id": 288}, "user": {"role": "worker"}}}, "resource": {"id": 370, "owner": {"id": 437}, "assignee": {"id": 574}, "organization": {"id": 186}, "project": {"owner": {"id": 784}, "assignee": {"id": 807}, "organization": {"id": 920}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 318, "owner": {"id": 456}, "assignee": {"id": 546}, "organization": {"id": 636}, "project": {"owner": {"id": 24}, "assignee": {"id": 851}, "organization": {"id": 969}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 195, "owner": {"id": 228}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 480}, "assignee": {"id": 569}, "organization": {"id": 654}, "project": {"owner": {"id": 706}, "assignee": {"id": 891}, "organization": {"id": 980}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 382, "owner": {"id": 493}, "assignee": {"id": 516}, "organization": {"id": 160}, "project": {"owner": {"id": 87}, "assignee": {"id": 824}, "organization": {"id": 946}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"id": 395, "owner": {"id": 410}, "assignee": {"id": 590}, "organization": {"id": 104}, "project": {"owner": {"id": 736}, "assignee": {"id": 820}, "organization": {"id": 958}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 490}, "assignee": {"id": 578}, "organization": {"id": 612}, "project": {"owner": {"id": 54}, "assignee": {"id": 864}, "organization": {"id": 974}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 103, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 328, "owner": {"id": 425}, "assignee": {"id": 518}, "organization": {"id": 637}, "project": {"owner": {"id": 745}, "assignee": {"id": 882}, "organization": {"id": 922}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 485}, "assignee": {"id": 526}, "organization": {"id": 152}, "project": {"owner": {"id": 79}, "assignee": {"id": 851}, "organization": {"id": 903}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"id": 381, "owner": {"id": 454}, "assignee": {"id": 570}, "organization": {"id": 105}, "project": {"owner": {"id": 780}, "assignee": {"id": 833}, "organization": {"id": 999}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 22, "privilege": "user"}, "organization": {"id": 110, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 444}, "assignee": {"id": 541}, "organization": {"id": 683}, "project": {"owner": {"id": 22}, "assignee": {"id": 822}, "organization": {"id": 919}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 300, "owner": {"id": 408}, "assignee": {"id": 513}, "organization": {"id": 603}, "project": {"owner": {"id": 757}, "assignee": {"id": 875}, "organization": {"id": 938}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 324, "owner": {"id": 468}, "assignee": {"id": 539}, "organization": {"id": 100}, "project": {"owner": {"id": 50}, "assignee": {"id": 875}, "organization": {"id": 986}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 364, "owner": {"id": 404}, "assignee": {"id": 518}, "organization": {"id": 187}, "project": {"owner": {"id": 718}, "assignee": {"id": 869}, "organization": {"id": 923}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 217}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 414}, "assignee": {"id": 587}, "organization": {"id": 626}, "project": {"owner": {"id": 60}, "assignee": {"id": 879}, "organization": {"id": 993}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 486}, "assignee": {"id": 532}, "organization": {"id": 648}, "project": {"owner": {"id": 745}, "assignee": {"id": 888}, "organization": {"id": 987}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 163, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"id": 362, "owner": {"id": 444}, "assignee": {"id": 555}, "organization": {"id": 163}, "project": {"owner": {"id": 92}, "assignee": {"id": 860}, "organization": {"id": 929}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 320, "owner": {"id": 444}, "assignee": {"id": 503}, "organization": {"id": 102}, "project": {"owner": {"id": 712}, "assignee": {"id": 840}, "organization": {"id": 956}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 446}, "assignee": {"id": 583}, "organization": {"id": 603}, "project": {"owner": {"id": 87}, "assignee": {"id": 830}, "organization": {"id": 919}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 481}, "assignee": {"id": 517}, "organization": {"id": 648}, "project": {"owner": {"id": 708}, "assignee": {"id": 884}, "organization": {"id": 916}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 193, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"id": 341, "owner": {"id": 482}, "assignee": {"id": 572}, "organization": {"id": 193}, "project": {"owner": {"id": 66}, "assignee": {"id": 825}, "organization": {"id": 995}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 421}, "assignee": {"id": 550}, "organization": {"id": 155}, "project": {"owner": {"id": 793}, "assignee": {"id": 855}, "organization": {"id": 993}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"id": 383, "owner": {"id": 456}, "assignee": {"id": 519}, "organization": {"id": 646}, "project": {"owner": {"id": 18}, "assignee": {"id": 868}, "organization": {"id": 906}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 444}, "assignee": {"id": 517}, "organization": {"id": 669}, "project": {"owner": {"id": 734}, "assignee": {"id": 892}, "organization": {"id": 905}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 9, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 271}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 403}, "assignee": {"id": 510}, "organization": {"id": 160}, "project": {"owner": {"id": 9}, "assignee": {"id": 826}, "organization": {"id": 995}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 243}, "user": {"role": null}}}, "resource": {"id": 333, "owner": {"id": 428}, "assignee": {"id": 512}, "organization": {"id": 112}, "project": {"owner": {"id": 704}, "assignee": {"id": 833}, "organization": {"id": 974}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 499}, "assignee": {"id": 554}, "organization": {"id": 618}, "project": {"owner": {"id": 12}, "assignee": {"id": 868}, "organization": {"id": 945}}}} +test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:organization", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 302, "owner": {"id": 495}, "assignee": {"id": 523}, "organization": {"id": 607}, "project": {"owner": {"id": 762}, "assignee": {"id": 849}, "organization": {"id": 963}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 336, "owner": {"id": 424}, "assignee": {"id": 596}, "organization": {"id": 191}, "project": {"owner": {"id": 86}, "assignee": {"id": 801}, "organization": {"id": 956}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": null}, "resource": {"id": 364, "owner": {"id": 442}, "assignee": {"id": 547}, "organization": {"id": 660}, "project": {"owner": {"id": 26}, "assignee": {"id": 896}, "organization": {"id": 947}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 48, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 429}, "assignee": {"id": 558}, "organization": {"id": 699}, "project": {"owner": {"id": 48}, "assignee": {"id": 897}, "organization": {"id": 904}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": null}, "resource": {"id": 366, "owner": {"id": 491}, "assignee": {"id": 543}, "organization": {"id": 662}, "project": {"owner": {"id": 81}, "assignee": {"id": 882}, "organization": {"id": 996}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"id": 377, "owner": {"id": 476}, "assignee": {"id": 575}, "organization": {"id": 194}, "project": {"owner": {"id": 29}, "assignee": {"id": 856}, "organization": {"id": 922}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": null}, "resource": {"id": 336, "owner": {"id": 462}, "assignee": {"id": 509}, "organization": {"id": 664}, "project": {"owner": {"id": 75}, "assignee": {"id": 880}, "organization": {"id": 964}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 152, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"id": 343, "owner": {"id": 404}, "assignee": {"id": 549}, "organization": {"id": 627}, "project": {"owner": {"id": 38}, "assignee": {"id": 832}, "organization": {"id": 923}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": null}, "resource": {"id": 386, "owner": {"id": 489}, "assignee": {"id": 585}, "organization": {"id": 600}, "project": {"owner": {"id": 7}, "assignee": {"id": 818}, "organization": {"id": 966}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"id": 370, "owner": {"id": 485}, "assignee": {"id": 581}, "organization": {"id": 170}, "project": {"owner": {"id": 49}, "assignee": {"id": 892}, "organization": {"id": 999}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": null}, "resource": {"id": 315, "owner": {"id": 437}, "assignee": {"id": 567}, "organization": {"id": 604}, "project": {"owner": {"id": 39}, "assignee": {"id": 820}, "organization": {"id": 969}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 406}, "assignee": {"id": 528}, "organization": {"id": 670}, "project": {"owner": {"id": 94}, "assignee": {"id": 880}, "organization": {"id": 908}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 76, "privilege": "admin"}, "organization": null}, "resource": {"id": 376, "owner": {"id": 463}, "assignee": {"id": 563}, "organization": {"id": 632}, "project": {"owner": {"id": 757}, "assignee": {"id": 76}, "organization": {"id": 970}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 400}, "assignee": {"id": 518}, "organization": {"id": 140}, "project": {"owner": {"id": 24}, "assignee": {"id": 862}, "organization": {"id": 938}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": null}, "resource": {"id": 334, "owner": {"id": 495}, "assignee": {"id": 523}, "organization": {"id": 622}, "project": {"owner": {"id": 734}, "assignee": {"id": 26}, "organization": {"id": 919}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 423}, "assignee": {"id": 578}, "organization": {"id": 630}, "project": {"owner": {"id": 99}, "assignee": {"id": 832}, "organization": {"id": 904}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": null}, "resource": {"id": 326, "owner": {"id": 416}, "assignee": {"id": 525}, "organization": {"id": 605}, "project": {"owner": {"id": 733}, "assignee": {"id": 51}, "organization": {"id": 937}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 196, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"id": 362, "owner": {"id": 458}, "assignee": {"id": 529}, "organization": {"id": 196}, "project": {"owner": {"id": 1}, "assignee": {"id": 855}, "organization": {"id": 964}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": null}, "resource": {"id": 316, "owner": {"id": 437}, "assignee": {"id": 573}, "organization": {"id": 687}, "project": {"owner": {"id": 780}, "assignee": {"id": 41}, "organization": {"id": 995}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"id": 361, "owner": {"id": 435}, "assignee": {"id": 577}, "organization": {"id": 679}, "project": {"owner": {"id": 47}, "assignee": {"id": 896}, "organization": {"id": 943}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": null}, "resource": {"id": 326, "owner": {"id": 480}, "assignee": {"id": 581}, "organization": {"id": 649}, "project": {"owner": {"id": 748}, "assignee": {"id": 35}, "organization": {"id": 902}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 430}, "assignee": {"id": 537}, "organization": {"id": 147}, "project": {"owner": {"id": 55}, "assignee": {"id": 859}, "organization": {"id": 976}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": null}, "resource": {"id": 317, "owner": {"id": 98}, "assignee": {"id": 594}, "organization": {"id": 619}, "project": {"owner": {"id": 753}, "assignee": {"id": 800}, "organization": {"id": 970}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 59, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 59}, "user": {"role": "owner"}}}, "resource": {"id": 363, "owner": {"id": 405}, "assignee": {"id": 572}, "organization": {"id": 699}, "project": {"owner": {"id": 59}, "assignee": {"id": 846}, "organization": {"id": 978}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": null}, "resource": {"id": 309, "owner": {"id": 13}, "assignee": {"id": 523}, "organization": {"id": 611}, "project": {"owner": {"id": 727}, "assignee": {"id": 801}, "organization": {"id": 909}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"id": 303, "owner": {"id": 449}, "assignee": {"id": 539}, "organization": {"id": 145}, "project": {"owner": {"id": 61}, "assignee": {"id": 846}, "organization": {"id": 965}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": null}, "resource": {"id": 349, "owner": {"id": 49}, "assignee": {"id": 563}, "organization": {"id": 617}, "project": {"owner": {"id": 758}, "assignee": {"id": 886}, "organization": {"id": 911}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 490}, "assignee": {"id": 549}, "organization": {"id": 678}, "project": {"owner": {"id": 69}, "assignee": {"id": 812}, "organization": {"id": 934}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": null}, "resource": {"id": 326, "owner": {"id": 80}, "assignee": {"id": 518}, "organization": {"id": 677}, "project": {"owner": {"id": 736}, "assignee": {"id": 837}, "organization": {"id": 928}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 478}, "assignee": {"id": 532}, "organization": {"id": 165}, "project": {"owner": {"id": 38}, "assignee": {"id": 852}, "organization": {"id": 949}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": null}, "resource": {"id": 374, "owner": {"id": 45}, "assignee": {"id": 588}, "organization": {"id": 656}, "project": {"owner": {"id": 731}, "assignee": {"id": 800}, "organization": {"id": 972}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": {"id": 150, "owner": {"id": 283}, "user": {"role": "supervisor"}}}, "resource": {"id": 354, "owner": {"id": 484}, "assignee": {"id": 576}, "organization": {"id": 603}, "project": {"owner": {"id": 62}, "assignee": {"id": 874}, "organization": {"id": 996}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": null}, "resource": {"id": 302, "owner": {"id": 429}, "assignee": {"id": 93}, "organization": {"id": 638}, "project": {"owner": {"id": 790}, "assignee": {"id": 802}, "organization": {"id": 975}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 464}, "assignee": {"id": 577}, "organization": {"id": 109}, "project": {"owner": {"id": 45}, "assignee": {"id": 879}, "organization": {"id": 943}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": null}, "resource": {"id": 395, "owner": {"id": 435}, "assignee": {"id": 5}, "organization": {"id": 634}, "project": {"owner": {"id": 710}, "assignee": {"id": 814}, "organization": {"id": 995}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 243}, "user": {"role": "worker"}}}, "resource": {"id": 351, "owner": {"id": 402}, "assignee": {"id": 573}, "organization": {"id": 655}, "project": {"owner": {"id": 40}, "assignee": {"id": 885}, "organization": {"id": 941}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": null}, "resource": {"id": 394, "owner": {"id": 482}, "assignee": {"id": 75}, "organization": {"id": 695}, "project": {"owner": {"id": 714}, "assignee": {"id": 886}, "organization": {"id": 972}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"id": 395, "owner": {"id": 430}, "assignee": {"id": 565}, "organization": {"id": 177}, "project": {"owner": {"id": 95}, "assignee": {"id": 873}, "organization": {"id": 947}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": null}, "resource": {"id": 376, "owner": {"id": 411}, "assignee": {"id": 84}, "organization": {"id": 690}, "project": {"owner": {"id": 740}, "assignee": {"id": 886}, "organization": {"id": 961}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 178, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 359, "owner": {"id": 486}, "assignee": {"id": 589}, "organization": {"id": 632}, "project": {"owner": {"id": 85}, "assignee": {"id": 888}, "organization": {"id": 994}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": null}, "resource": {"id": 370, "owner": {"id": 405}, "assignee": {"id": 61}, "organization": {"id": 699}, "project": {"owner": {"id": 717}, "assignee": {"id": 869}, "organization": {"id": 970}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"id": 330, "owner": {"id": 434}, "assignee": {"id": 513}, "organization": {"id": 125}, "project": {"owner": {"id": 774}, "assignee": {"id": 42}, "organization": {"id": 981}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": null}, "resource": {"id": 336, "owner": {"id": 433}, "assignee": {"id": 581}, "organization": {"id": 648}, "project": {"owner": {"id": 769}, "assignee": {"id": 862}, "organization": {"id": 911}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 474}, "assignee": {"id": 500}, "organization": {"id": 623}, "project": {"owner": {"id": 742}, "assignee": {"id": 13}, "organization": {"id": 989}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": null}, "resource": {"id": 343, "owner": {"id": 456}, "assignee": {"id": 574}, "organization": {"id": 680}, "project": {"owner": {"id": 798}, "assignee": {"id": 888}, "organization": {"id": 950}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 127, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 364, "owner": {"id": 499}, "assignee": {"id": 509}, "organization": {"id": 127}, "project": {"owner": {"id": 770}, "assignee": {"id": 49}, "organization": {"id": 902}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": null}, "resource": {"id": 365, "owner": {"id": 490}, "assignee": {"id": 598}, "organization": {"id": 627}, "project": {"owner": {"id": 749}, "assignee": {"id": 848}, "organization": {"id": 904}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 331, "owner": {"id": 473}, "assignee": {"id": 506}, "organization": {"id": 644}, "project": {"owner": {"id": 741}, "assignee": {"id": 57}, "organization": {"id": 974}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": null}, "resource": {"id": 382, "owner": {"id": 401}, "assignee": {"id": 525}, "organization": {"id": 605}, "project": {"owner": {"id": 776}, "assignee": {"id": 819}, "organization": {"id": 998}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 172, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 469}, "assignee": {"id": 578}, "organization": {"id": 172}, "project": {"owner": {"id": 737}, "assignee": {"id": 96}, "organization": {"id": 914}}}} +test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": null}, "resource": {"id": 337, "owner": {"id": 496}, "assignee": {"id": 513}, "organization": {"id": 627}, "project": {"owner": {"id": 786}, "assignee": {"id": 824}, "organization": {"id": 912}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 427}, "assignee": {"id": 578}, "organization": {"id": 697}, "project": {"owner": {"id": 780}, "assignee": {"id": 70}, "organization": {"id": 902}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 446}, "assignee": {"id": 511}, "organization": {"id": 100}, "project": {"owner": {"id": 56}, "assignee": {"id": 812}, "organization": {"id": 987}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"id": 334, "owner": {"id": 489}, "assignee": {"id": 527}, "organization": {"id": 114}, "project": {"owner": {"id": 738}, "assignee": {"id": 65}, "organization": {"id": 905}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 59}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 446}, "assignee": {"id": 598}, "organization": {"id": 690}, "project": {"owner": {"id": 59}, "assignee": {"id": 860}, "organization": {"id": 949}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 425}, "assignee": {"id": 508}, "organization": {"id": 669}, "project": {"owner": {"id": 727}, "assignee": {"id": 26}, "organization": {"id": 990}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 328, "owner": {"id": 454}, "assignee": {"id": 530}, "organization": {"id": 174}, "project": {"owner": {"id": 17}, "assignee": {"id": 873}, "organization": {"id": 969}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 491}, "assignee": {"id": 528}, "organization": {"id": 178}, "project": {"owner": {"id": 701}, "assignee": {"id": 27}, "organization": {"id": 965}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 282}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 498}, "assignee": {"id": 550}, "organization": {"id": 687}, "project": {"owner": {"id": 56}, "assignee": {"id": 826}, "organization": {"id": 944}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 149, "owner": {"id": 226}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 470}, "assignee": {"id": 587}, "organization": {"id": 673}, "project": {"owner": {"id": 746}, "assignee": {"id": 17}, "organization": {"id": 991}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 197, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"id": 361, "owner": {"id": 465}, "assignee": {"id": 565}, "organization": {"id": 197}, "project": {"owner": {"id": 32}, "assignee": {"id": 855}, "organization": {"id": 936}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 493}, "assignee": {"id": 562}, "organization": {"id": 142}, "project": {"owner": {"id": 797}, "assignee": {"id": 60}, "organization": {"id": 980}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 373, "owner": {"id": 404}, "assignee": {"id": 565}, "organization": {"id": 628}, "project": {"owner": {"id": 94}, "assignee": {"id": 803}, "organization": {"id": 916}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 469}, "assignee": {"id": 515}, "organization": {"id": 664}, "project": {"owner": {"id": 742}, "assignee": {"id": 7}, "organization": {"id": 995}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 451}, "assignee": {"id": 528}, "organization": {"id": 115}, "project": {"owner": {"id": 96}, "assignee": {"id": 803}, "organization": {"id": 977}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 320, "owner": {"id": 455}, "assignee": {"id": 533}, "organization": {"id": 120}, "project": {"owner": {"id": 791}, "assignee": {"id": 67}, "organization": {"id": 953}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 412}, "assignee": {"id": 575}, "organization": {"id": 616}, "project": {"owner": {"id": 17}, "assignee": {"id": 870}, "organization": {"id": 986}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 439}, "assignee": {"id": 535}, "organization": {"id": 637}, "project": {"owner": {"id": 789}, "assignee": {"id": 83}, "organization": {"id": 914}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 444}, "assignee": {"id": 515}, "organization": {"id": 114}, "project": {"owner": {"id": 73}, "assignee": {"id": 898}, "organization": {"id": 921}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 325, "owner": {"id": 417}, "assignee": {"id": 510}, "organization": {"id": 108}, "project": {"owner": {"id": 715}, "assignee": {"id": 82}, "organization": {"id": 990}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 334, "owner": {"id": 419}, "assignee": {"id": 545}, "organization": {"id": 673}, "project": {"owner": {"id": 36}, "assignee": {"id": 880}, "organization": {"id": 906}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"id": 314, "owner": {"id": 457}, "assignee": {"id": 592}, "organization": {"id": 637}, "project": {"owner": {"id": 769}, "assignee": {"id": 99}, "organization": {"id": 910}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"id": 303, "owner": {"id": 494}, "assignee": {"id": 575}, "organization": {"id": 114}, "project": {"owner": {"id": 35}, "assignee": {"id": 859}, "organization": {"id": 952}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 442}, "assignee": {"id": 501}, "organization": {"id": 152}, "project": {"owner": {"id": 744}, "assignee": {"id": 25}, "organization": {"id": 977}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 300, "owner": {"id": 425}, "assignee": {"id": 587}, "organization": {"id": 692}, "project": {"owner": {"id": 7}, "assignee": {"id": 847}, "organization": {"id": 917}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 196, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 338, "owner": {"id": 460}, "assignee": {"id": 593}, "organization": {"id": 623}, "project": {"owner": {"id": 791}, "assignee": {"id": 7}, "organization": {"id": 951}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 175, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 444}, "assignee": {"id": 531}, "organization": {"id": 175}, "project": {"owner": {"id": 99}, "assignee": {"id": 835}, "organization": {"id": 934}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"id": 347, "owner": {"id": 479}, "assignee": {"id": 599}, "organization": {"id": 126}, "project": {"owner": {"id": 727}, "assignee": {"id": 24}, "organization": {"id": 974}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 255}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 409}, "assignee": {"id": 565}, "organization": {"id": 683}, "project": {"owner": {"id": 55}, "assignee": {"id": 892}, "organization": {"id": 953}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 393, "owner": {"id": 401}, "assignee": {"id": 523}, "organization": {"id": 690}, "project": {"owner": {"id": 705}, "assignee": {"id": 76}, "organization": {"id": 958}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 374, "owner": {"id": 465}, "assignee": {"id": 592}, "organization": {"id": 164}, "project": {"owner": {"id": 15}, "assignee": {"id": 810}, "organization": {"id": 913}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 80}, "user": {"role": "owner"}}}, "resource": {"id": 387, "owner": {"id": 435}, "assignee": {"id": 522}, "organization": {"id": 132}, "project": {"owner": {"id": 761}, "assignee": {"id": 80}, "organization": {"id": 989}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"id": 348, "owner": {"id": 457}, "assignee": {"id": 581}, "organization": {"id": 633}, "project": {"owner": {"id": 51}, "assignee": {"id": 868}, "organization": {"id": 983}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 416}, "assignee": {"id": 591}, "organization": {"id": 633}, "project": {"owner": {"id": 769}, "assignee": {"id": 37}, "organization": {"id": 971}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 445}, "assignee": {"id": 503}, "organization": {"id": 197}, "project": {"owner": {"id": 17}, "assignee": {"id": 860}, "organization": {"id": 975}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 227}, "user": {"role": "maintainer"}}}, "resource": {"id": 390, "owner": {"id": 436}, "assignee": {"id": 535}, "organization": {"id": 141}, "project": {"owner": {"id": 772}, "assignee": {"id": 79}, "organization": {"id": 976}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 301, "owner": {"id": 423}, "assignee": {"id": 525}, "organization": {"id": 630}, "project": {"owner": {"id": 15}, "assignee": {"id": 879}, "organization": {"id": 910}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"id": 318, "owner": {"id": 476}, "assignee": {"id": 515}, "organization": {"id": 622}, "project": {"owner": {"id": 781}, "assignee": {"id": 44}, "organization": {"id": 969}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 424}, "assignee": {"id": 503}, "organization": {"id": 105}, "project": {"owner": {"id": 8}, "assignee": {"id": 871}, "organization": {"id": 985}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 438}, "assignee": {"id": 510}, "organization": {"id": 184}, "project": {"owner": {"id": 745}, "assignee": {"id": 0}, "organization": {"id": 925}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 331, "owner": {"id": 420}, "assignee": {"id": 519}, "organization": {"id": 671}, "project": {"owner": {"id": 6}, "assignee": {"id": 809}, "organization": {"id": 986}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 435}, "assignee": {"id": 502}, "organization": {"id": 690}, "project": {"owner": {"id": 784}, "assignee": {"id": 92}, "organization": {"id": 934}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 352, "owner": {"id": 480}, "assignee": {"id": 542}, "organization": {"id": 104}, "project": {"owner": {"id": 39}, "assignee": {"id": 850}, "organization": {"id": 933}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 192, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 468}, "assignee": {"id": 572}, "organization": {"id": 192}, "project": {"owner": {"id": 771}, "assignee": {"id": 23}, "organization": {"id": 930}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 365, "owner": {"id": 491}, "assignee": {"id": 542}, "organization": {"id": 631}, "project": {"owner": {"id": 74}, "assignee": {"id": 843}, "organization": {"id": 993}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 484}, "assignee": {"id": 546}, "organization": {"id": 679}, "project": {"owner": {"id": 764}, "assignee": {"id": 36}, "organization": {"id": 944}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 398, "owner": {"id": 477}, "assignee": {"id": 521}, "organization": {"id": 133}, "project": {"owner": {"id": 98}, "assignee": {"id": 851}, "organization": {"id": 986}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 469}, "assignee": {"id": 542}, "organization": {"id": 181}, "project": {"owner": {"id": 703}, "assignee": {"id": 40}, "organization": {"id": 904}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 499}, "assignee": {"id": 572}, "organization": {"id": 606}, "project": {"owner": {"id": 0}, "assignee": {"id": 819}, "organization": {"id": 914}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 110, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 342, "owner": {"id": 492}, "assignee": {"id": 549}, "organization": {"id": 697}, "project": {"owner": {"id": 711}, "assignee": {"id": 60}, "organization": {"id": 905}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 295}, "user": {"role": "supervisor"}}}, "resource": {"id": 397, "owner": {"id": 456}, "assignee": {"id": 597}, "organization": {"id": 191}, "project": {"owner": {"id": 65}, "assignee": {"id": 807}, "organization": {"id": 918}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 15}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 479}, "assignee": {"id": 513}, "organization": {"id": 176}, "project": {"owner": {"id": 742}, "assignee": {"id": 15}, "organization": {"id": 942}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"id": 353, "owner": {"id": 451}, "assignee": {"id": 592}, "organization": {"id": 662}, "project": {"owner": {"id": 2}, "assignee": {"id": 806}, "organization": {"id": 916}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 474}, "assignee": {"id": 592}, "organization": {"id": 697}, "project": {"owner": {"id": 750}, "assignee": {"id": 67}, "organization": {"id": 963}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"id": 312, "owner": {"id": 450}, "assignee": {"id": 594}, "organization": {"id": 115}, "project": {"owner": {"id": 89}, "assignee": {"id": 878}, "organization": {"id": 954}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 304, "owner": {"id": 459}, "assignee": {"id": 568}, "organization": {"id": 144}, "project": {"owner": {"id": 723}, "assignee": {"id": 13}, "organization": {"id": 919}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 468}, "assignee": {"id": 516}, "organization": {"id": 630}, "project": {"owner": {"id": 43}, "assignee": {"id": 874}, "organization": {"id": 950}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 25, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"id": 356, "owner": {"id": 426}, "assignee": {"id": 549}, "organization": {"id": 693}, "project": {"owner": {"id": 723}, "assignee": {"id": 25}, "organization": {"id": 951}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 411}, "assignee": {"id": 563}, "organization": {"id": 177}, "project": {"owner": {"id": 98}, "assignee": {"id": 827}, "organization": {"id": 981}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 491}, "assignee": {"id": 538}, "organization": {"id": 138}, "project": {"owner": {"id": 771}, "assignee": {"id": 37}, "organization": {"id": 932}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 68, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 233}, "user": {"role": null}}}, "resource": {"id": 359, "owner": {"id": 493}, "assignee": {"id": 566}, "organization": {"id": 605}, "project": {"owner": {"id": 68}, "assignee": {"id": 896}, "organization": {"id": 957}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 238}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 426}, "assignee": {"id": 558}, "organization": {"id": 670}, "project": {"owner": {"id": 793}, "assignee": {"id": 27}, "organization": {"id": 915}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 376, "owner": {"id": 451}, "assignee": {"id": 551}, "organization": {"id": 178}, "project": {"owner": {"id": 67}, "assignee": {"id": 863}, "organization": {"id": 944}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 186, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 460}, "assignee": {"id": 513}, "organization": {"id": 186}, "project": {"owner": {"id": 779}, "assignee": {"id": 6}, "organization": {"id": 932}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 363, "owner": {"id": 423}, "assignee": {"id": 549}, "organization": {"id": 675}, "project": {"owner": {"id": 90}, "assignee": {"id": 880}, "organization": {"id": 924}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 357, "owner": {"id": 413}, "assignee": {"id": 524}, "organization": {"id": 658}, "project": {"owner": {"id": 758}, "assignee": {"id": 15}, "organization": {"id": 972}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 297}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 420}, "assignee": {"id": 508}, "organization": {"id": 163}, "project": {"owner": {"id": 56}, "assignee": {"id": 833}, "organization": {"id": 906}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 387, "owner": {"id": 465}, "assignee": {"id": 565}, "organization": {"id": 136}, "project": {"owner": {"id": 785}, "assignee": {"id": 58}, "organization": {"id": 997}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 276}, "user": {"role": "maintainer"}}}, "resource": {"id": 325, "owner": {"id": 487}, "assignee": {"id": 563}, "organization": {"id": 629}, "project": {"owner": {"id": 27}, "assignee": {"id": 842}, "organization": {"id": 934}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 489}, "assignee": {"id": 517}, "organization": {"id": 637}, "project": {"owner": {"id": 781}, "assignee": {"id": 36}, "organization": {"id": 989}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 238}, "user": {"role": "supervisor"}}}, "resource": {"id": 398, "owner": {"id": 413}, "assignee": {"id": 589}, "organization": {"id": 183}, "project": {"owner": {"id": 8}, "assignee": {"id": 807}, "organization": {"id": 935}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"id": 383, "owner": {"id": 490}, "assignee": {"id": 525}, "organization": {"id": 111}, "project": {"owner": {"id": 742}, "assignee": {"id": 71}, "organization": {"id": 993}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 426}, "assignee": {"id": 541}, "organization": {"id": 693}, "project": {"owner": {"id": 68}, "assignee": {"id": 827}, "organization": {"id": 996}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 15}, "user": {"role": "owner"}}}, "resource": {"id": 398, "owner": {"id": 473}, "assignee": {"id": 558}, "organization": {"id": 610}, "project": {"owner": {"id": 766}, "assignee": {"id": 15}, "organization": {"id": 907}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 423}, "assignee": {"id": 534}, "organization": {"id": 159}, "project": {"owner": {"id": 32}, "assignee": {"id": 832}, "organization": {"id": 964}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": {"id": 199, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 442}, "assignee": {"id": 542}, "organization": {"id": 199}, "project": {"owner": {"id": 719}, "assignee": {"id": 53}, "organization": {"id": 946}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 476}, "assignee": {"id": 533}, "organization": {"id": 691}, "project": {"owner": {"id": 71}, "assignee": {"id": 895}, "organization": {"id": 982}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": {"id": 178, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 311, "owner": {"id": 404}, "assignee": {"id": 578}, "organization": {"id": 621}, "project": {"owner": {"id": 729}, "assignee": {"id": 36}, "organization": {"id": 928}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 380, "owner": {"id": 433}, "assignee": {"id": 545}, "organization": {"id": 139}, "project": {"owner": {"id": 27}, "assignee": {"id": 830}, "organization": {"id": 910}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 451}, "assignee": {"id": 579}, "organization": {"id": 171}, "project": {"owner": {"id": 700}, "assignee": {"id": 47}, "organization": {"id": 994}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": {"id": 135, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"id": 372, "owner": {"id": 412}, "assignee": {"id": 549}, "organization": {"id": 621}, "project": {"owner": {"id": 14}, "assignee": {"id": 890}, "organization": {"id": 976}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 483}, "assignee": {"id": 514}, "organization": {"id": 662}, "project": {"owner": {"id": 795}, "assignee": {"id": 99}, "organization": {"id": 924}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 149, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 464}, "assignee": {"id": 528}, "organization": {"id": 149}, "project": {"owner": {"id": 11}, "assignee": {"id": 837}, "organization": {"id": 982}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"id": 380, "owner": {"id": 458}, "assignee": {"id": 500}, "organization": {"id": 186}, "project": {"owner": {"id": 753}, "assignee": {"id": 57}, "organization": {"id": 996}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 422}, "assignee": {"id": 537}, "organization": {"id": 670}, "project": {"owner": {"id": 48}, "assignee": {"id": 877}, "organization": {"id": 989}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 495}, "assignee": {"id": 575}, "organization": {"id": 600}, "project": {"owner": {"id": 739}, "assignee": {"id": 8}, "organization": {"id": 988}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 223}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 463}, "assignee": {"id": 548}, "organization": {"id": 137}, "project": {"owner": {"id": 61}, "assignee": {"id": 874}, "organization": {"id": 911}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 343, "owner": {"id": 486}, "assignee": {"id": 539}, "organization": {"id": 111}, "project": {"owner": {"id": 717}, "assignee": {"id": 31}, "organization": {"id": 936}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 297}, "user": {"role": "maintainer"}}}, "resource": {"id": 300, "owner": {"id": 409}, "assignee": {"id": 573}, "organization": {"id": 628}, "project": {"owner": {"id": 17}, "assignee": {"id": 874}, "organization": {"id": 993}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 395, "owner": {"id": 431}, "assignee": {"id": 574}, "organization": {"id": 644}, "project": {"owner": {"id": 722}, "assignee": {"id": 71}, "organization": {"id": 925}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 369, "owner": {"id": 466}, "assignee": {"id": 585}, "organization": {"id": 179}, "project": {"owner": {"id": 9}, "assignee": {"id": 859}, "organization": {"id": 902}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 90}, "assignee": {"id": 508}, "organization": {"id": 118}, "project": {"owner": {"id": 796}, "assignee": {"id": 858}, "organization": {"id": 933}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 385, "owner": {"id": 498}, "assignee": {"id": 596}, "organization": {"id": 609}, "project": {"owner": {"id": 83}, "assignee": {"id": 886}, "organization": {"id": 945}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 68}, "assignee": {"id": 560}, "organization": {"id": 612}, "project": {"owner": {"id": 734}, "assignee": {"id": 839}, "organization": {"id": 972}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": {"id": 154, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 383, "owner": {"id": 402}, "assignee": {"id": 530}, "organization": {"id": 154}, "project": {"owner": {"id": 39}, "assignee": {"id": 890}, "organization": {"id": 982}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 70}, "assignee": {"id": 547}, "organization": {"id": 165}, "project": {"owner": {"id": 769}, "assignee": {"id": 895}, "organization": {"id": 958}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"id": 368, "owner": {"id": 443}, "assignee": {"id": 507}, "organization": {"id": 634}, "project": {"owner": {"id": 84}, "assignee": {"id": 832}, "organization": {"id": 960}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 163, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 88}, "assignee": {"id": 501}, "organization": {"id": 692}, "project": {"owner": {"id": 751}, "assignee": {"id": 840}, "organization": {"id": 923}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"id": 397, "owner": {"id": 410}, "assignee": {"id": 513}, "organization": {"id": 195}, "project": {"owner": {"id": 48}, "assignee": {"id": 894}, "organization": {"id": 991}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 101, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"id": 323, "owner": {"id": 8}, "assignee": {"id": 554}, "organization": {"id": 101}, "project": {"owner": {"id": 799}, "assignee": {"id": 809}, "organization": {"id": 980}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"id": 316, "owner": {"id": 450}, "assignee": {"id": 543}, "organization": {"id": 643}, "project": {"owner": {"id": 97}, "assignee": {"id": 881}, "organization": {"id": 909}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 102, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 325, "owner": {"id": 20}, "assignee": {"id": 515}, "organization": {"id": 672}, "project": {"owner": {"id": 710}, "assignee": {"id": 862}, "organization": {"id": 915}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 301, "owner": {"id": 494}, "assignee": {"id": 581}, "organization": {"id": 155}, "project": {"owner": {"id": 793}, "assignee": {"id": 84}, "organization": {"id": 940}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 88}, "assignee": {"id": 506}, "organization": {"id": 143}, "project": {"owner": {"id": 728}, "assignee": {"id": 844}, "organization": {"id": 918}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 419}, "assignee": {"id": 580}, "organization": {"id": 655}, "project": {"owner": {"id": 784}, "assignee": {"id": 6}, "organization": {"id": 904}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 181, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 74}, "assignee": {"id": 597}, "organization": {"id": 630}, "project": {"owner": {"id": 715}, "assignee": {"id": 863}, "organization": {"id": 902}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"id": 321, "owner": {"id": 482}, "assignee": {"id": 593}, "organization": {"id": 178}, "project": {"owner": {"id": 760}, "assignee": {"id": 66}, "organization": {"id": 935}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 356, "owner": {"id": 54}, "assignee": {"id": 502}, "organization": {"id": 180}, "project": {"owner": {"id": 724}, "assignee": {"id": 808}, "organization": {"id": 974}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 103, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 487}, "assignee": {"id": 518}, "organization": {"id": 613}, "project": {"owner": {"id": 766}, "assignee": {"id": 83}, "organization": {"id": 999}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 386, "owner": {"id": 84}, "assignee": {"id": 541}, "organization": {"id": 691}, "project": {"owner": {"id": 749}, "assignee": {"id": 821}, "organization": {"id": 928}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 372, "owner": {"id": 463}, "assignee": {"id": 593}, "organization": {"id": 129}, "project": {"owner": {"id": 757}, "assignee": {"id": 38}, "organization": {"id": 946}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 48}, "assignee": {"id": 530}, "organization": {"id": 178}, "project": {"owner": {"id": 778}, "assignee": {"id": 807}, "organization": {"id": 998}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 76, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 300, "owner": {"id": 452}, "assignee": {"id": 564}, "organization": {"id": 632}, "project": {"owner": {"id": 745}, "assignee": {"id": 76}, "organization": {"id": 970}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 9}, "assignee": {"id": 579}, "organization": {"id": 607}, "project": {"owner": {"id": 771}, "assignee": {"id": 808}, "organization": {"id": 948}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"id": 314, "owner": {"id": 406}, "assignee": {"id": 584}, "organization": {"id": 141}, "project": {"owner": {"id": 728}, "assignee": {"id": 36}, "organization": {"id": 967}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 282}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 81}, "assignee": {"id": 592}, "organization": {"id": 179}, "project": {"owner": {"id": 767}, "assignee": {"id": 815}, "organization": {"id": 917}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 465}, "assignee": {"id": 586}, "organization": {"id": 627}, "project": {"owner": {"id": 764}, "assignee": {"id": 94}, "organization": {"id": 997}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"id": 381, "owner": {"id": 76}, "assignee": {"id": 524}, "organization": {"id": 635}, "project": {"owner": {"id": 799}, "assignee": {"id": 877}, "organization": {"id": 966}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 429}, "assignee": {"id": 572}, "organization": {"id": 187}, "project": {"owner": {"id": 740}, "assignee": {"id": 55}, "organization": {"id": 992}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 350, "owner": {"id": 78}, "assignee": {"id": 538}, "organization": {"id": 133}, "project": {"owner": {"id": 721}, "assignee": {"id": 888}, "organization": {"id": 908}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 362, "owner": {"id": 442}, "assignee": {"id": 549}, "organization": {"id": 630}, "project": {"owner": {"id": 794}, "assignee": {"id": 26}, "organization": {"id": 984}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 393, "owner": {"id": 87}, "assignee": {"id": 596}, "organization": {"id": 653}, "project": {"owner": {"id": 742}, "assignee": {"id": 858}, "organization": {"id": 954}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 159, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 319, "owner": {"id": 424}, "assignee": {"id": 532}, "organization": {"id": 159}, "project": {"owner": {"id": 717}, "assignee": {"id": 89}, "organization": {"id": 941}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"id": 368, "owner": {"id": 12}, "assignee": {"id": 579}, "organization": {"id": 179}, "project": {"owner": {"id": 744}, "assignee": {"id": 808}, "organization": {"id": 964}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 418}, "assignee": {"id": 563}, "organization": {"id": 694}, "project": {"owner": {"id": 783}, "assignee": {"id": 60}, "organization": {"id": 980}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"id": 333, "owner": {"id": 96}, "assignee": {"id": 510}, "organization": {"id": 630}, "project": {"owner": {"id": 716}, "assignee": {"id": 825}, "organization": {"id": 965}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"id": 336, "owner": {"id": 499}, "assignee": {"id": 525}, "organization": {"id": 110}, "project": {"owner": {"id": 751}, "assignee": {"id": 99}, "organization": {"id": 909}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 322, "owner": {"id": 8}, "assignee": {"id": 507}, "organization": {"id": 197}, "project": {"owner": {"id": 719}, "assignee": {"id": 804}, "organization": {"id": 978}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 419}, "assignee": {"id": 518}, "organization": {"id": 662}, "project": {"owner": {"id": 706}, "assignee": {"id": 38}, "organization": {"id": 975}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 233}, "user": {"role": null}}}, "resource": {"id": 364, "owner": {"id": 18}, "assignee": {"id": 552}, "organization": {"id": 695}, "project": {"owner": {"id": 794}, "assignee": {"id": 858}, "organization": {"id": 998}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 291}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 410}, "assignee": {"id": 517}, "organization": {"id": 131}, "project": {"owner": {"id": 762}, "assignee": {"id": 76}, "organization": {"id": 962}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 21}, "assignee": {"id": 545}, "organization": {"id": 167}, "project": {"owner": {"id": 756}, "assignee": {"id": 809}, "organization": {"id": 960}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 351, "owner": {"id": 407}, "assignee": {"id": 510}, "organization": {"id": 650}, "project": {"owner": {"id": 791}, "assignee": {"id": 35}, "organization": {"id": 997}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 32}, "assignee": {"id": 541}, "organization": {"id": 693}, "project": {"owner": {"id": 766}, "assignee": {"id": 840}, "organization": {"id": 927}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 351, "owner": {"id": 422}, "assignee": {"id": 552}, "organization": {"id": 156}, "project": {"owner": {"id": 746}, "assignee": {"id": 38}, "organization": {"id": 958}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 367, "owner": {"id": 61}, "assignee": {"id": 561}, "organization": {"id": 136}, "project": {"owner": {"id": 764}, "assignee": {"id": 899}, "organization": {"id": 920}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 422}, "assignee": {"id": 513}, "organization": {"id": 678}, "project": {"owner": {"id": 779}, "assignee": {"id": 49}, "organization": {"id": 909}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 30}, "assignee": {"id": 542}, "organization": {"id": 670}, "project": {"owner": {"id": 782}, "assignee": {"id": 875}, "organization": {"id": 956}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 405}, "assignee": {"id": 584}, "organization": {"id": 191}, "project": {"owner": {"id": 737}, "assignee": {"id": 76}, "organization": {"id": 988}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"id": 397, "owner": {"id": 15}, "assignee": {"id": 531}, "organization": {"id": 135}, "project": {"owner": {"id": 752}, "assignee": {"id": 802}, "organization": {"id": 937}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 331, "owner": {"id": 440}, "assignee": {"id": 554}, "organization": {"id": 697}, "project": {"owner": {"id": 792}, "assignee": {"id": 58}, "organization": {"id": 904}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 3}, "assignee": {"id": 579}, "organization": {"id": 697}, "project": {"owner": {"id": 756}, "assignee": {"id": 841}, "organization": {"id": 974}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"id": 319, "owner": {"id": 411}, "assignee": {"id": 576}, "organization": {"id": 117}, "project": {"owner": {"id": 761}, "assignee": {"id": 23}, "organization": {"id": 903}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 138, "owner": {"id": 224}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 58}, "assignee": {"id": 570}, "organization": {"id": 138}, "project": {"owner": {"id": 769}, "assignee": {"id": 822}, "organization": {"id": 963}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 400}, "assignee": {"id": 553}, "organization": {"id": 600}, "project": {"owner": {"id": 768}, "assignee": {"id": 18}, "organization": {"id": 999}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"id": 378, "owner": {"id": 37}, "assignee": {"id": 543}, "organization": {"id": 616}, "project": {"owner": {"id": 731}, "assignee": {"id": 895}, "organization": {"id": 903}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 373, "owner": {"id": 434}, "assignee": {"id": 560}, "organization": {"id": 170}, "project": {"owner": {"id": 704}, "assignee": {"id": 24}, "organization": {"id": 949}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 380, "owner": {"id": 43}, "assignee": {"id": 506}, "organization": {"id": 168}, "project": {"owner": {"id": 709}, "assignee": {"id": 899}, "organization": {"id": 919}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"id": 393, "owner": {"id": 481}, "assignee": {"id": 562}, "organization": {"id": 601}, "project": {"owner": {"id": 709}, "assignee": {"id": 12}, "organization": {"id": 988}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 67}, "assignee": {"id": 519}, "organization": {"id": 605}, "project": {"owner": {"id": 723}, "assignee": {"id": 804}, "organization": {"id": 939}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 22, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"id": 352, "owner": {"id": 427}, "assignee": {"id": 524}, "organization": {"id": 143}, "project": {"owner": {"id": 701}, "assignee": {"id": 22}, "organization": {"id": 974}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 16}, "assignee": {"id": 566}, "organization": {"id": 174}, "project": {"owner": {"id": 715}, "assignee": {"id": 816}, "organization": {"id": 976}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 131, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 348, "owner": {"id": 464}, "assignee": {"id": 542}, "organization": {"id": 665}, "project": {"owner": {"id": 750}, "assignee": {"id": 0}, "organization": {"id": 924}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 30, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 30}, "assignee": {"id": 520}, "organization": {"id": 617}, "project": {"owner": {"id": 711}, "assignee": {"id": 865}, "organization": {"id": 903}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 327, "owner": {"id": 447}, "assignee": {"id": 557}, "organization": {"id": 134}, "project": {"owner": {"id": 736}, "assignee": {"id": 21}, "organization": {"id": 947}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"id": 317, "owner": {"id": 84}, "assignee": {"id": 578}, "organization": {"id": 118}, "project": {"owner": {"id": 735}, "assignee": {"id": 813}, "organization": {"id": 915}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 165, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 303, "owner": {"id": 410}, "assignee": {"id": 517}, "organization": {"id": 652}, "project": {"owner": {"id": 771}, "assignee": {"id": 87}, "organization": {"id": 995}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 349, "owner": {"id": 86}, "assignee": {"id": 524}, "organization": {"id": 629}, "project": {"owner": {"id": 790}, "assignee": {"id": 816}, "organization": {"id": 984}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 214}, "user": {"role": null}}}, "resource": {"id": 343, "owner": {"id": 495}, "assignee": {"id": 549}, "organization": {"id": 120}, "project": {"owner": {"id": 706}, "assignee": {"id": 28}, "organization": {"id": 998}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 97}, "assignee": {"id": 502}, "organization": {"id": 131}, "project": {"owner": {"id": 782}, "assignee": {"id": 806}, "organization": {"id": 954}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 399, "owner": {"id": 413}, "assignee": {"id": 555}, "organization": {"id": 677}, "project": {"owner": {"id": 791}, "assignee": {"id": 56}, "organization": {"id": 908}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 264}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 2}, "assignee": {"id": 537}, "organization": {"id": 697}, "project": {"owner": {"id": 761}, "assignee": {"id": 800}, "organization": {"id": 910}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 416}, "assignee": {"id": 511}, "organization": {"id": 127}, "project": {"owner": {"id": 794}, "assignee": {"id": 37}, "organization": {"id": 992}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 358, "owner": {"id": 54}, "assignee": {"id": 539}, "organization": {"id": 108}, "project": {"owner": {"id": 739}, "assignee": {"id": 853}, "organization": {"id": 928}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"id": 382, "owner": {"id": 405}, "assignee": {"id": 574}, "organization": {"id": 624}, "project": {"owner": {"id": 773}, "assignee": {"id": 17}, "organization": {"id": 980}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 316, "owner": {"id": 23}, "assignee": {"id": 571}, "organization": {"id": 662}, "project": {"owner": {"id": 729}, "assignee": {"id": 845}, "organization": {"id": 990}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 334, "owner": {"id": 485}, "assignee": {"id": 557}, "organization": {"id": 191}, "project": {"owner": {"id": 710}, "assignee": {"id": 28}, "organization": {"id": 939}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 1}, "assignee": {"id": 546}, "organization": {"id": 189}, "project": {"owner": {"id": 749}, "assignee": {"id": 827}, "organization": {"id": 917}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 199, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 381, "owner": {"id": 406}, "assignee": {"id": 576}, "organization": {"id": 653}, "project": {"owner": {"id": 716}, "assignee": {"id": 24}, "organization": {"id": 942}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 47}, "assignee": {"id": 507}, "organization": {"id": 686}, "project": {"owner": {"id": 743}, "assignee": {"id": 808}, "organization": {"id": 988}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 413}, "assignee": {"id": 567}, "organization": {"id": 168}, "project": {"owner": {"id": 728}, "assignee": {"id": 89}, "organization": {"id": 918}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"id": 375, "owner": {"id": 61}, "assignee": {"id": 512}, "organization": {"id": 184}, "project": {"owner": {"id": 737}, "assignee": {"id": 815}, "organization": {"id": 938}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 399, "owner": {"id": 414}, "assignee": {"id": 559}, "organization": {"id": 641}, "project": {"owner": {"id": 744}, "assignee": {"id": 59}, "organization": {"id": 968}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 80}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 80}, "assignee": {"id": 595}, "organization": {"id": 629}, "project": {"owner": {"id": 766}, "assignee": {"id": 808}, "organization": {"id": 967}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"id": 300, "owner": {"id": 480}, "assignee": {"id": 541}, "organization": {"id": 190}, "project": {"owner": {"id": 734}, "assignee": {"id": 37}, "organization": {"id": 950}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 48}, "assignee": {"id": 513}, "organization": {"id": 196}, "project": {"owner": {"id": 751}, "assignee": {"id": 875}, "organization": {"id": 913}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 334, "owner": {"id": 444}, "assignee": {"id": 518}, "organization": {"id": 624}, "project": {"owner": {"id": 700}, "assignee": {"id": 10}, "organization": {"id": 926}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 325, "owner": {"id": 46}, "assignee": {"id": 599}, "organization": {"id": 653}, "project": {"owner": {"id": 700}, "assignee": {"id": 824}, "organization": {"id": 942}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 326, "owner": {"id": 467}, "assignee": {"id": 515}, "organization": {"id": 121}, "project": {"owner": {"id": 760}, "assignee": {"id": 60}, "organization": {"id": 929}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 395, "owner": {"id": 27}, "assignee": {"id": 557}, "organization": {"id": 163}, "project": {"owner": {"id": 701}, "assignee": {"id": 851}, "organization": {"id": 992}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 367, "owner": {"id": 484}, "assignee": {"id": 509}, "organization": {"id": 659}, "project": {"owner": {"id": 704}, "assignee": {"id": 75}, "organization": {"id": 908}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 350, "owner": {"id": 68}, "assignee": {"id": 554}, "organization": {"id": 654}, "project": {"owner": {"id": 766}, "assignee": {"id": 815}, "organization": {"id": 968}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 188, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 349, "owner": {"id": 429}, "assignee": {"id": 533}, "organization": {"id": 188}, "project": {"owner": {"id": 799}, "assignee": {"id": 3}, "organization": {"id": 979}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 72}, "assignee": {"id": 545}, "organization": {"id": 185}, "project": {"owner": {"id": 710}, "assignee": {"id": 871}, "organization": {"id": 935}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"id": 384, "owner": {"id": 487}, "assignee": {"id": 537}, "organization": {"id": 680}, "project": {"owner": {"id": 786}, "assignee": {"id": 93}, "organization": {"id": 927}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"id": 366, "owner": {"id": 40}, "assignee": {"id": 544}, "organization": {"id": 629}, "project": {"owner": {"id": 781}, "assignee": {"id": 859}, "organization": {"id": 924}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 353, "owner": {"id": 407}, "assignee": {"id": 515}, "organization": {"id": 181}, "project": {"owner": {"id": 780}, "assignee": {"id": 24}, "organization": {"id": 996}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 330, "owner": {"id": 73}, "assignee": {"id": 548}, "organization": {"id": 128}, "project": {"owner": {"id": 767}, "assignee": {"id": 851}, "organization": {"id": 988}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 149, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"id": 366, "owner": {"id": 426}, "assignee": {"id": 535}, "organization": {"id": 642}, "project": {"owner": {"id": 719}, "assignee": {"id": 30}, "organization": {"id": 910}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 305, "owner": {"id": 82}, "assignee": {"id": 557}, "organization": {"id": 630}, "project": {"owner": {"id": 773}, "assignee": {"id": 819}, "organization": {"id": 906}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 319, "owner": {"id": 423}, "assignee": {"id": 506}, "organization": {"id": 172}, "project": {"owner": {"id": 732}, "assignee": {"id": 44}, "organization": {"id": 965}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 426}, "assignee": {"id": 19}, "organization": {"id": 177}, "project": {"owner": {"id": 758}, "assignee": {"id": 823}, "organization": {"id": 975}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 309, "owner": {"id": 418}, "assignee": {"id": 592}, "organization": {"id": 657}, "project": {"owner": {"id": 718}, "assignee": {"id": 0}, "organization": {"id": 962}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 423}, "assignee": {"id": 1}, "organization": {"id": 627}, "project": {"owner": {"id": 757}, "assignee": {"id": 869}, "organization": {"id": 981}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 395, "owner": {"id": 434}, "assignee": {"id": 588}, "organization": {"id": 161}, "project": {"owner": {"id": 784}, "assignee": {"id": 77}, "organization": {"id": 933}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 301, "owner": {"id": 472}, "assignee": {"id": 25}, "organization": {"id": 106}, "project": {"owner": {"id": 754}, "assignee": {"id": 812}, "organization": {"id": 933}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 286}, "user": {"role": "worker"}}}, "resource": {"id": 390, "owner": {"id": 461}, "assignee": {"id": 542}, "organization": {"id": 632}, "project": {"owner": {"id": 754}, "assignee": {"id": 33}, "organization": {"id": 942}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"id": 396, "owner": {"id": 437}, "assignee": {"id": 1}, "organization": {"id": 668}, "project": {"owner": {"id": 764}, "assignee": {"id": 897}, "organization": {"id": 942}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 420}, "assignee": {"id": 542}, "organization": {"id": 110}, "project": {"owner": {"id": 706}, "assignee": {"id": 42}, "organization": {"id": 921}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 431}, "assignee": {"id": 77}, "organization": {"id": 143}, "project": {"owner": {"id": 752}, "assignee": {"id": 804}, "organization": {"id": 988}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 118, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 497}, "assignee": {"id": 566}, "organization": {"id": 696}, "project": {"owner": {"id": 726}, "assignee": {"id": 49}, "organization": {"id": 986}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 321, "owner": {"id": 487}, "assignee": {"id": 48}, "organization": {"id": 677}, "project": {"owner": {"id": 747}, "assignee": {"id": 859}, "organization": {"id": 974}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 119, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"id": 379, "owner": {"id": 98}, "assignee": {"id": 576}, "organization": {"id": 119}, "project": {"owner": {"id": 713}, "assignee": {"id": 877}, "organization": {"id": 910}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 478}, "assignee": {"id": 0}, "organization": {"id": 193}, "project": {"owner": {"id": 705}, "assignee": {"id": 818}, "organization": {"id": 956}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"id": 325, "owner": {"id": 49}, "assignee": {"id": 575}, "organization": {"id": 629}, "project": {"owner": {"id": 715}, "assignee": {"id": 800}, "organization": {"id": 914}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 378, "owner": {"id": 476}, "assignee": {"id": 79}, "organization": {"id": 646}, "project": {"owner": {"id": 757}, "assignee": {"id": 828}, "organization": {"id": 907}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 312, "owner": {"id": 49}, "assignee": {"id": 548}, "organization": {"id": 188}, "project": {"owner": {"id": 715}, "assignee": {"id": 832}, "organization": {"id": 917}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 365, "owner": {"id": 402}, "assignee": {"id": 9}, "organization": {"id": 193}, "project": {"owner": {"id": 753}, "assignee": {"id": 800}, "organization": {"id": 920}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 346, "owner": {"id": 32}, "assignee": {"id": 536}, "organization": {"id": 631}, "project": {"owner": {"id": 713}, "assignee": {"id": 809}, "organization": {"id": 945}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 254}, "user": {"role": null}}}, "resource": {"id": 340, "owner": {"id": 426}, "assignee": {"id": 19}, "organization": {"id": 639}, "project": {"owner": {"id": 763}, "assignee": {"id": 873}, "organization": {"id": 940}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 28}, "assignee": {"id": 508}, "organization": {"id": 133}, "project": {"owner": {"id": 706}, "assignee": {"id": 864}, "organization": {"id": 995}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 455}, "assignee": {"id": 65}, "organization": {"id": 187}, "project": {"owner": {"id": 738}, "assignee": {"id": 885}, "organization": {"id": 986}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 64}, "assignee": {"id": 523}, "organization": {"id": 610}, "project": {"owner": {"id": 732}, "assignee": {"id": 858}, "organization": {"id": 993}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 398, "owner": {"id": 477}, "assignee": {"id": 6}, "organization": {"id": 685}, "project": {"owner": {"id": 796}, "assignee": {"id": 855}, "organization": {"id": 978}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 8}, "assignee": {"id": 574}, "organization": {"id": 100}, "project": {"owner": {"id": 722}, "assignee": {"id": 835}, "organization": {"id": 956}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 64, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"id": 340, "owner": {"id": 489}, "assignee": {"id": 64}, "organization": {"id": 105}, "project": {"owner": {"id": 715}, "assignee": {"id": 839}, "organization": {"id": 945}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 89}, "assignee": {"id": 517}, "organization": {"id": 634}, "project": {"owner": {"id": 755}, "assignee": {"id": 874}, "organization": {"id": 990}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"id": 365, "owner": {"id": 439}, "assignee": {"id": 88}, "organization": {"id": 683}, "project": {"owner": {"id": 788}, "assignee": {"id": 878}, "organization": {"id": 977}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 18}, "assignee": {"id": 526}, "organization": {"id": 152}, "project": {"owner": {"id": 709}, "assignee": {"id": 866}, "organization": {"id": 923}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 265}, "user": {"role": "supervisor"}}}, "resource": {"id": 309, "owner": {"id": 464}, "assignee": {"id": 36}, "organization": {"id": 106}, "project": {"owner": {"id": 774}, "assignee": {"id": 838}, "organization": {"id": 911}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 347, "owner": {"id": 78}, "assignee": {"id": 574}, "organization": {"id": 673}, "project": {"owner": {"id": 717}, "assignee": {"id": 812}, "organization": {"id": 910}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 401}, "assignee": {"id": 97}, "organization": {"id": 627}, "project": {"owner": {"id": 783}, "assignee": {"id": 816}, "organization": {"id": 978}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 386, "owner": {"id": 21}, "assignee": {"id": 512}, "organization": {"id": 102}, "project": {"owner": {"id": 749}, "assignee": {"id": 814}, "organization": {"id": 939}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 449}, "assignee": {"id": 33}, "organization": {"id": 157}, "project": {"owner": {"id": 742}, "assignee": {"id": 863}, "organization": {"id": 983}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 393, "owner": {"id": 9}, "assignee": {"id": 581}, "organization": {"id": 624}, "project": {"owner": {"id": 739}, "assignee": {"id": 858}, "organization": {"id": 933}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"id": 339, "owner": {"id": 451}, "assignee": {"id": 63}, "organization": {"id": 651}, "project": {"owner": {"id": 796}, "assignee": {"id": 888}, "organization": {"id": 960}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 356, "owner": {"id": 92}, "assignee": {"id": 553}, "organization": {"id": 143}, "project": {"owner": {"id": 754}, "assignee": {"id": 808}, "organization": {"id": 921}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 434}, "assignee": {"id": 86}, "organization": {"id": 143}, "project": {"owner": {"id": 747}, "assignee": {"id": 858}, "organization": {"id": 903}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 65}, "assignee": {"id": 562}, "organization": {"id": 632}, "project": {"owner": {"id": 777}, "assignee": {"id": 887}, "organization": {"id": 937}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"id": 364, "owner": {"id": 468}, "assignee": {"id": 69}, "organization": {"id": 637}, "project": {"owner": {"id": 777}, "assignee": {"id": 851}, "organization": {"id": 993}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 96}, "assignee": {"id": 578}, "organization": {"id": 128}, "project": {"owner": {"id": 725}, "assignee": {"id": 807}, "organization": {"id": 981}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 462}, "assignee": {"id": 0}, "organization": {"id": 121}, "project": {"owner": {"id": 757}, "assignee": {"id": 867}, "organization": {"id": 932}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"id": 389, "owner": {"id": 3}, "assignee": {"id": 589}, "organization": {"id": 627}, "project": {"owner": {"id": 723}, "assignee": {"id": 860}, "organization": {"id": 962}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"id": 337, "owner": {"id": 433}, "assignee": {"id": 60}, "organization": {"id": 625}, "project": {"owner": {"id": 715}, "assignee": {"id": 880}, "organization": {"id": 957}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 83}, "assignee": {"id": 521}, "organization": {"id": 163}, "project": {"owner": {"id": 786}, "assignee": {"id": 832}, "organization": {"id": 903}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"id": 353, "owner": {"id": 411}, "assignee": {"id": 88}, "organization": {"id": 166}, "project": {"owner": {"id": 704}, "assignee": {"id": 866}, "organization": {"id": 936}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"id": 334, "owner": {"id": 18}, "assignee": {"id": 570}, "organization": {"id": 633}, "project": {"owner": {"id": 749}, "assignee": {"id": 809}, "organization": {"id": 995}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"id": 374, "owner": {"id": 438}, "assignee": {"id": 17}, "organization": {"id": 662}, "project": {"owner": {"id": 703}, "assignee": {"id": 877}, "organization": {"id": 903}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 341, "owner": {"id": 94}, "assignee": {"id": 536}, "organization": {"id": 129}, "project": {"owner": {"id": 757}, "assignee": {"id": 864}, "organization": {"id": 904}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 328, "owner": {"id": 403}, "assignee": {"id": 49}, "organization": {"id": 114}, "project": {"owner": {"id": 744}, "assignee": {"id": 854}, "organization": {"id": 917}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 84}, "assignee": {"id": 511}, "organization": {"id": 661}, "project": {"owner": {"id": 771}, "assignee": {"id": 800}, "organization": {"id": 921}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 282}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 484}, "assignee": {"id": 25}, "organization": {"id": 672}, "project": {"owner": {"id": 733}, "assignee": {"id": 824}, "organization": {"id": 936}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 154, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 379, "owner": {"id": 73}, "assignee": {"id": 591}, "organization": {"id": 154}, "project": {"owner": {"id": 799}, "assignee": {"id": 879}, "organization": {"id": 911}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"id": 309, "owner": {"id": 482}, "assignee": {"id": 95}, "organization": {"id": 141}, "project": {"owner": {"id": 799}, "assignee": {"id": 831}, "organization": {"id": 956}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 25}, "assignee": {"id": 548}, "organization": {"id": 627}, "project": {"owner": {"id": 744}, "assignee": {"id": 803}, "organization": {"id": 900}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 356, "owner": {"id": 483}, "assignee": {"id": 32}, "organization": {"id": 609}, "project": {"owner": {"id": 782}, "assignee": {"id": 872}, "organization": {"id": 916}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 388, "owner": {"id": 19}, "assignee": {"id": 515}, "organization": {"id": 151}, "project": {"owner": {"id": 786}, "assignee": {"id": 831}, "organization": {"id": 949}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 464}, "assignee": {"id": 37}, "organization": {"id": 191}, "project": {"owner": {"id": 789}, "assignee": {"id": 804}, "organization": {"id": 913}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 332, "owner": {"id": 59}, "assignee": {"id": 544}, "organization": {"id": 690}, "project": {"owner": {"id": 719}, "assignee": {"id": 878}, "organization": {"id": 957}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 316, "owner": {"id": 486}, "assignee": {"id": 29}, "organization": {"id": 693}, "project": {"owner": {"id": 736}, "assignee": {"id": 848}, "organization": {"id": 943}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 305, "owner": {"id": 78}, "assignee": {"id": 524}, "organization": {"id": 129}, "project": {"owner": {"id": 707}, "assignee": {"id": 864}, "organization": {"id": 963}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"id": 361, "owner": {"id": 438}, "assignee": {"id": 4}, "organization": {"id": 117}, "project": {"owner": {"id": 722}, "assignee": {"id": 813}, "organization": {"id": 907}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 80}, "assignee": {"id": 552}, "organization": {"id": 615}, "project": {"owner": {"id": 795}, "assignee": {"id": 825}, "organization": {"id": 945}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"id": 386, "owner": {"id": 495}, "assignee": {"id": 60}, "organization": {"id": 668}, "project": {"owner": {"id": 713}, "assignee": {"id": 859}, "organization": {"id": 957}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"id": 309, "owner": {"id": 13}, "assignee": {"id": 541}, "organization": {"id": 168}, "project": {"owner": {"id": 787}, "assignee": {"id": 804}, "organization": {"id": 931}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 475}, "assignee": {"id": 71}, "organization": {"id": 192}, "project": {"owner": {"id": 786}, "assignee": {"id": 889}, "organization": {"id": 972}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 78}, "assignee": {"id": 521}, "organization": {"id": 686}, "project": {"owner": {"id": 747}, "assignee": {"id": 883}, "organization": {"id": 939}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 289}, "user": {"role": "maintainer"}}}, "resource": {"id": 334, "owner": {"id": 481}, "assignee": {"id": 6}, "organization": {"id": 658}, "project": {"owner": {"id": 700}, "assignee": {"id": 824}, "organization": {"id": 963}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 53}, "assignee": {"id": 543}, "organization": {"id": 133}, "project": {"owner": {"id": 732}, "assignee": {"id": 858}, "organization": {"id": 920}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 442}, "assignee": {"id": 64}, "organization": {"id": 162}, "project": {"owner": {"id": 747}, "assignee": {"id": 832}, "organization": {"id": 926}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 138, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"id": 356, "owner": {"id": 27}, "assignee": {"id": 552}, "organization": {"id": 601}, "project": {"owner": {"id": 793}, "assignee": {"id": 824}, "organization": {"id": 960}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 152, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"id": 373, "owner": {"id": 440}, "assignee": {"id": 86}, "organization": {"id": 640}, "project": {"owner": {"id": 789}, "assignee": {"id": 801}, "organization": {"id": 922}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 156, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"id": 396, "owner": {"id": 79}, "assignee": {"id": 594}, "organization": {"id": 156}, "project": {"owner": {"id": 744}, "assignee": {"id": 878}, "organization": {"id": 978}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 494}, "assignee": {"id": 86}, "organization": {"id": 117}, "project": {"owner": {"id": 784}, "assignee": {"id": 878}, "organization": {"id": 936}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 74}, "assignee": {"id": 585}, "organization": {"id": 690}, "project": {"owner": {"id": 745}, "assignee": {"id": 836}, "organization": {"id": 974}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 357, "owner": {"id": 407}, "assignee": {"id": 50}, "organization": {"id": 667}, "project": {"owner": {"id": 708}, "assignee": {"id": 848}, "organization": {"id": 949}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"id": 387, "owner": {"id": 27}, "assignee": {"id": 583}, "organization": {"id": 117}, "project": {"owner": {"id": 790}, "assignee": {"id": 886}, "organization": {"id": 914}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 199, "owner": {"id": 233}, "user": {"role": null}}}, "resource": {"id": 343, "owner": {"id": 497}, "assignee": {"id": 44}, "organization": {"id": 199}, "project": {"owner": {"id": 744}, "assignee": {"id": 834}, "organization": {"id": 908}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 217}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 44}, "assignee": {"id": 561}, "organization": {"id": 684}, "project": {"owner": {"id": 760}, "assignee": {"id": 842}, "organization": {"id": 988}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 135, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"id": 367, "owner": {"id": 479}, "assignee": {"id": 5}, "organization": {"id": 653}, "project": {"owner": {"id": 703}, "assignee": {"id": 808}, "organization": {"id": 927}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 293}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 1}, "assignee": {"id": 505}, "organization": {"id": 155}, "project": {"owner": {"id": 792}, "assignee": {"id": 883}, "organization": {"id": 905}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 402}, "assignee": {"id": 12}, "organization": {"id": 187}, "project": {"owner": {"id": 778}, "assignee": {"id": 861}, "organization": {"id": 926}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 390, "owner": {"id": 90}, "assignee": {"id": 538}, "organization": {"id": 674}, "project": {"owner": {"id": 768}, "assignee": {"id": 816}, "organization": {"id": 913}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 463}, "assignee": {"id": 69}, "organization": {"id": 652}, "project": {"owner": {"id": 751}, "assignee": {"id": 846}, "organization": {"id": 926}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 326, "owner": {"id": 2}, "assignee": {"id": 553}, "organization": {"id": 130}, "project": {"owner": {"id": 789}, "assignee": {"id": 894}, "organization": {"id": 941}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 383, "owner": {"id": 486}, "assignee": {"id": 0}, "organization": {"id": 161}, "project": {"owner": {"id": 791}, "assignee": {"id": 896}, "organization": {"id": 969}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"id": 316, "owner": {"id": 66}, "assignee": {"id": 535}, "organization": {"id": 618}, "project": {"owner": {"id": 784}, "assignee": {"id": 835}, "organization": {"id": 925}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 220}, "user": {"role": "maintainer"}}}, "resource": {"id": 321, "owner": {"id": 402}, "assignee": {"id": 82}, "organization": {"id": 692}, "project": {"owner": {"id": 711}, "assignee": {"id": 813}, "organization": {"id": 973}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 330, "owner": {"id": 50}, "assignee": {"id": 562}, "organization": {"id": 185}, "project": {"owner": {"id": 735}, "assignee": {"id": 815}, "organization": {"id": 927}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 238}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 427}, "assignee": {"id": 45}, "organization": {"id": 100}, "project": {"owner": {"id": 769}, "assignee": {"id": 818}, "organization": {"id": 962}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 195, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 345, "owner": {"id": 19}, "assignee": {"id": 505}, "organization": {"id": 620}, "project": {"owner": {"id": 745}, "assignee": {"id": 872}, "organization": {"id": 940}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"id": 337, "owner": {"id": 419}, "assignee": {"id": 9}, "organization": {"id": 642}, "project": {"owner": {"id": 741}, "assignee": {"id": 864}, "organization": {"id": 960}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 324, "owner": {"id": 7}, "assignee": {"id": 510}, "organization": {"id": 165}, "project": {"owner": {"id": 728}, "assignee": {"id": 847}, "organization": {"id": 945}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 455}, "assignee": {"id": 18}, "organization": {"id": 133}, "project": {"owner": {"id": 731}, "assignee": {"id": 847}, "organization": {"id": 970}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 336, "owner": {"id": 29}, "assignee": {"id": 565}, "organization": {"id": 650}, "project": {"owner": {"id": 786}, "assignee": {"id": 888}, "organization": {"id": 945}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 250}, "user": {"role": "worker"}}}, "resource": {"id": 333, "owner": {"id": 457}, "assignee": {"id": 22}, "organization": {"id": 675}, "project": {"owner": {"id": 727}, "assignee": {"id": 887}, "organization": {"id": 983}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 69}, "assignee": {"id": 576}, "organization": {"id": 128}, "project": {"owner": {"id": 739}, "assignee": {"id": 803}, "organization": {"id": 956}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 483}, "assignee": {"id": 5}, "organization": {"id": 184}, "project": {"owner": {"id": 703}, "assignee": {"id": 898}, "organization": {"id": 960}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 13}, "assignee": {"id": 522}, "organization": {"id": 692}, "project": {"owner": {"id": 741}, "assignee": {"id": 899}, "organization": {"id": 902}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 400}, "assignee": {"id": 93}, "organization": {"id": 695}, "project": {"owner": {"id": 725}, "assignee": {"id": 837}, "organization": {"id": 950}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 87}, "assignee": {"id": 501}, "organization": {"id": 194}, "project": {"owner": {"id": 704}, "assignee": {"id": 887}, "organization": {"id": 929}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 33}, "user": {"role": "owner"}}}, "resource": {"id": 399, "owner": {"id": 402}, "assignee": {"id": 566}, "organization": {"id": 192}, "project": {"owner": {"id": 711}, "assignee": {"id": 800}, "organization": {"id": 959}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 41, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 265}, "user": {"role": "supervisor"}}}, "resource": {"id": 331, "owner": {"id": 41}, "assignee": {"id": 551}, "organization": {"id": 602}, "project": {"owner": {"id": 758}, "assignee": {"id": 887}, "organization": {"id": 958}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 315, "owner": {"id": 446}, "assignee": {"id": 523}, "organization": {"id": 653}, "project": {"owner": {"id": 771}, "assignee": {"id": 803}, "organization": {"id": 965}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 47}, "assignee": {"id": 530}, "organization": {"id": 157}, "project": {"owner": {"id": 740}, "assignee": {"id": 854}, "organization": {"id": 962}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 278}, "user": {"role": "maintainer"}}}, "resource": {"id": 325, "owner": {"id": 435}, "assignee": {"id": 527}, "organization": {"id": 159}, "project": {"owner": {"id": 768}, "assignee": {"id": 820}, "organization": {"id": 931}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"id": 319, "owner": {"id": 86}, "assignee": {"id": 556}, "organization": {"id": 634}, "project": {"owner": {"id": 716}, "assignee": {"id": 807}, "organization": {"id": 939}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 217}, "user": {"role": "maintainer"}}}, "resource": {"id": 365, "owner": {"id": 429}, "assignee": {"id": 547}, "organization": {"id": 668}, "project": {"owner": {"id": 799}, "assignee": {"id": 864}, "organization": {"id": 969}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 10}, "assignee": {"id": 547}, "organization": {"id": 169}, "project": {"owner": {"id": 751}, "assignee": {"id": 802}, "organization": {"id": 958}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 117, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 444}, "assignee": {"id": 586}, "organization": {"id": 117}, "project": {"owner": {"id": 725}, "assignee": {"id": 826}, "organization": {"id": 980}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 15}, "assignee": {"id": 509}, "organization": {"id": 694}, "project": {"owner": {"id": 765}, "assignee": {"id": 847}, "organization": {"id": 903}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 323, "owner": {"id": 448}, "assignee": {"id": 566}, "organization": {"id": 693}, "project": {"owner": {"id": 788}, "assignee": {"id": 810}, "organization": {"id": 987}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 103, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"id": 319, "owner": {"id": 463}, "assignee": {"id": 17}, "organization": {"id": 103}, "project": {"owner": {"id": 739}, "assignee": {"id": 820}, "organization": {"id": 949}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"id": 368, "owner": {"id": 464}, "assignee": {"id": 540}, "organization": {"id": 191}, "project": {"owner": {"id": 706}, "assignee": {"id": 858}, "organization": {"id": 928}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 450}, "assignee": {"id": 17}, "organization": {"id": 656}, "project": {"owner": {"id": 701}, "assignee": {"id": 873}, "organization": {"id": 928}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 480}, "assignee": {"id": 549}, "organization": {"id": 632}, "project": {"owner": {"id": 715}, "assignee": {"id": 822}, "organization": {"id": 910}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 464}, "assignee": {"id": 72}, "organization": {"id": 142}, "project": {"owner": {"id": 799}, "assignee": {"id": 870}, "organization": {"id": 920}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"id": 320, "owner": {"id": 477}, "assignee": {"id": 537}, "organization": {"id": 191}, "project": {"owner": {"id": 740}, "assignee": {"id": 832}, "organization": {"id": 946}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"id": 366, "owner": {"id": 480}, "assignee": {"id": 8}, "organization": {"id": 671}, "project": {"owner": {"id": 765}, "assignee": {"id": 879}, "organization": {"id": 973}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 210}, "user": {"role": null}}}, "resource": {"id": 359, "owner": {"id": 400}, "assignee": {"id": 515}, "organization": {"id": 656}, "project": {"owner": {"id": 763}, "assignee": {"id": 890}, "organization": {"id": 903}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"id": 397, "owner": {"id": 437}, "assignee": {"id": 72}, "organization": {"id": 195}, "project": {"owner": {"id": 713}, "assignee": {"id": 820}, "organization": {"id": 959}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 431}, "assignee": {"id": 524}, "organization": {"id": 117}, "project": {"owner": {"id": 718}, "assignee": {"id": 880}, "organization": {"id": 902}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 103, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 467}, "assignee": {"id": 16}, "organization": {"id": 626}, "project": {"owner": {"id": 763}, "assignee": {"id": 812}, "organization": {"id": 987}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 350, "owner": {"id": 466}, "assignee": {"id": 581}, "organization": {"id": 693}, "project": {"owner": {"id": 776}, "assignee": {"id": 863}, "organization": {"id": 917}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 493}, "assignee": {"id": 53}, "organization": {"id": 122}, "project": {"owner": {"id": 715}, "assignee": {"id": 817}, "organization": {"id": 930}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 483}, "assignee": {"id": 597}, "organization": {"id": 190}, "project": {"owner": {"id": 763}, "assignee": {"id": 818}, "organization": {"id": 941}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 429}, "assignee": {"id": 21}, "organization": {"id": 607}, "project": {"owner": {"id": 744}, "assignee": {"id": 826}, "organization": {"id": 953}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"id": 301, "owner": {"id": 437}, "assignee": {"id": 588}, "organization": {"id": 676}, "project": {"owner": {"id": 782}, "assignee": {"id": 860}, "organization": {"id": 980}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 190, "owner": {"id": 237}, "user": {"role": null}}}, "resource": {"id": 343, "owner": {"id": 479}, "assignee": {"id": 32}, "organization": {"id": 190}, "project": {"owner": {"id": 776}, "assignee": {"id": 828}, "organization": {"id": 966}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 149, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 406}, "assignee": {"id": 526}, "organization": {"id": 149}, "project": {"owner": {"id": 788}, "assignee": {"id": 880}, "organization": {"id": 938}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 316, "owner": {"id": 468}, "assignee": {"id": 16}, "organization": {"id": 662}, "project": {"owner": {"id": 756}, "assignee": {"id": 878}, "organization": {"id": 907}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 327, "owner": {"id": 440}, "assignee": {"id": 564}, "organization": {"id": 608}, "project": {"owner": {"id": 780}, "assignee": {"id": 893}, "organization": {"id": 962}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 336, "owner": {"id": 454}, "assignee": {"id": 65}, "organization": {"id": 162}, "project": {"owner": {"id": 743}, "assignee": {"id": 827}, "organization": {"id": 933}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 175, "owner": {"id": 245}, "user": {"role": "worker"}}}, "resource": {"id": 380, "owner": {"id": 465}, "assignee": {"id": 511}, "organization": {"id": 175}, "project": {"owner": {"id": 769}, "assignee": {"id": 874}, "organization": {"id": 986}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"id": 328, "owner": {"id": 482}, "assignee": {"id": 85}, "organization": {"id": 686}, "project": {"owner": {"id": 746}, "assignee": {"id": 800}, "organization": {"id": 997}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 438}, "assignee": {"id": 589}, "organization": {"id": 667}, "project": {"owner": {"id": 718}, "assignee": {"id": 802}, "organization": {"id": 916}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 301, "owner": {"id": 454}, "assignee": {"id": 28}, "organization": {"id": 158}, "project": {"owner": {"id": 767}, "assignee": {"id": 868}, "organization": {"id": 947}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 225}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 409}, "assignee": {"id": 532}, "organization": {"id": 186}, "project": {"owner": {"id": 730}, "assignee": {"id": 817}, "organization": {"id": 957}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 418}, "assignee": {"id": 2}, "organization": {"id": 674}, "project": {"owner": {"id": 742}, "assignee": {"id": 885}, "organization": {"id": 921}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 207}, "user": {"role": null}}}, "resource": {"id": 363, "owner": {"id": 469}, "assignee": {"id": 508}, "organization": {"id": 603}, "project": {"owner": {"id": 733}, "assignee": {"id": 830}, "organization": {"id": 945}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 321, "owner": {"id": 400}, "assignee": {"id": 10}, "organization": {"id": 173}, "project": {"owner": {"id": 734}, "assignee": {"id": 880}, "organization": {"id": 987}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"id": 361, "owner": {"id": 452}, "assignee": {"id": 514}, "organization": {"id": 159}, "project": {"owner": {"id": 730}, "assignee": {"id": 844}, "organization": {"id": 948}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 436}, "assignee": {"id": 77}, "organization": {"id": 624}, "project": {"owner": {"id": 782}, "assignee": {"id": 846}, "organization": {"id": 991}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"id": 336, "owner": {"id": 417}, "assignee": {"id": 551}, "organization": {"id": 699}, "project": {"owner": {"id": 772}, "assignee": {"id": 863}, "organization": {"id": 997}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 196, "owner": {"id": 224}, "user": {"role": "worker"}}}, "resource": {"id": 339, "owner": {"id": 484}, "assignee": {"id": 73}, "organization": {"id": 196}, "project": {"owner": {"id": 720}, "assignee": {"id": 893}, "organization": {"id": 924}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:desc", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 312, "owner": {"id": 412}, "assignee": {"id": 594}, "organization": {"id": 119}, "project": {"owner": {"id": 725}, "assignee": {"id": 864}, "organization": {"id": 901}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 435}, "assignee": {"id": 96}, "organization": {"id": 629}, "project": {"owner": {"id": 733}, "assignee": {"id": 897}, "organization": {"id": 949}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 145, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"id": 323, "owner": {"id": 462}, "assignee": {"id": 594}, "organization": {"id": 650}, "project": {"owner": {"id": 753}, "assignee": {"id": 823}, "organization": {"id": 956}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"id": 378, "owner": {"id": 498}, "assignee": {"id": 75}, "organization": {"id": 185}, "project": {"owner": {"id": 752}, "assignee": {"id": 850}, "organization": {"id": 942}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 105, "owner": {"id": 282}, "user": {"role": "supervisor"}}}, "resource": {"id": 384, "owner": {"id": 465}, "assignee": {"id": 570}, "organization": {"id": 105}, "project": {"owner": {"id": 771}, "assignee": {"id": 891}, "organization": {"id": 935}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 237}, "user": {"role": null}}}, "resource": {"id": 315, "owner": {"id": 434}, "assignee": {"id": 62}, "organization": {"id": 623}, "project": {"owner": {"id": 700}, "assignee": {"id": 838}, "organization": {"id": 947}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 293}, "user": {"role": "supervisor"}}}, "resource": {"id": 367, "owner": {"id": 481}, "assignee": {"id": 506}, "organization": {"id": 647}, "project": {"owner": {"id": 740}, "assignee": {"id": 815}, "organization": {"id": 976}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 386, "owner": {"id": 442}, "assignee": {"id": 34}, "organization": {"id": 101}, "project": {"owner": {"id": 792}, "assignee": {"id": 801}, "organization": {"id": 995}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 494}, "assignee": {"id": 552}, "organization": {"id": 176}, "project": {"owner": {"id": 766}, "assignee": {"id": 801}, "organization": {"id": 909}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 398, "owner": {"id": 414}, "assignee": {"id": 99}, "organization": {"id": 653}, "project": {"owner": {"id": 742}, "assignee": {"id": 878}, "organization": {"id": 965}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 217}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 460}, "assignee": {"id": 592}, "organization": {"id": 614}, "project": {"owner": {"id": 784}, "assignee": {"id": 867}, "organization": {"id": 976}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 22, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 436}, "assignee": {"id": 22}, "organization": {"id": 112}, "project": {"owner": {"id": 796}, "assignee": {"id": 890}, "organization": {"id": 942}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 345, "owner": {"id": 490}, "assignee": {"id": 596}, "organization": {"id": 178}, "project": {"owner": {"id": 753}, "assignee": {"id": 880}, "organization": {"id": 930}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"id": 332, "owner": {"id": 459}, "assignee": {"id": 50}, "organization": {"id": 645}, "project": {"owner": {"id": 797}, "assignee": {"id": 829}, "organization": {"id": 971}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 138, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"id": 355, "owner": {"id": 471}, "assignee": {"id": 592}, "organization": {"id": 602}, "project": {"owner": {"id": 786}, "assignee": {"id": 813}, "organization": {"id": 900}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 373, "owner": {"id": 473}, "assignee": {"id": 4}, "organization": {"id": 132}, "project": {"owner": {"id": 791}, "assignee": {"id": 834}, "organization": {"id": 959}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 379, "owner": {"id": 459}, "assignee": {"id": 546}, "organization": {"id": 168}, "project": {"owner": {"id": 769}, "assignee": {"id": 862}, "organization": {"id": 983}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"id": 372, "owner": {"id": 497}, "assignee": {"id": 67}, "organization": {"id": 643}, "project": {"owner": {"id": 792}, "assignee": {"id": 812}, "organization": {"id": 932}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 326, "owner": {"id": 462}, "assignee": {"id": 587}, "organization": {"id": 689}, "project": {"owner": {"id": 708}, "assignee": {"id": 894}, "organization": {"id": 938}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"id": 389, "owner": {"id": 475}, "assignee": {"id": 34}, "organization": {"id": 134}, "project": {"owner": {"id": 784}, "assignee": {"id": 835}, "organization": {"id": 977}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 413}, "assignee": {"id": 531}, "organization": {"id": 119}, "project": {"owner": {"id": 700}, "assignee": {"id": 833}, "organization": {"id": 982}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 487}, "assignee": {"id": 32}, "organization": {"id": 685}, "project": {"owner": {"id": 721}, "assignee": {"id": 832}, "organization": {"id": 997}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 281}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 466}, "assignee": {"id": 577}, "organization": {"id": 663}, "project": {"owner": {"id": 745}, "assignee": {"id": 845}, "organization": {"id": 930}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"id": 388, "owner": {"id": 445}, "assignee": {"id": 83}, "organization": {"id": 126}, "project": {"owner": {"id": 726}, "assignee": {"id": 809}, "organization": {"id": 931}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 479}, "assignee": {"id": 581}, "organization": {"id": 132}, "project": {"owner": {"id": 767}, "assignee": {"id": 841}, "organization": {"id": 977}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 451}, "assignee": {"id": 26}, "organization": {"id": 658}, "project": {"owner": {"id": 760}, "assignee": {"id": 863}, "organization": {"id": 966}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 196, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"id": 336, "owner": {"id": 454}, "assignee": {"id": 568}, "organization": {"id": 658}, "project": {"owner": {"id": 746}, "assignee": {"id": 854}, "organization": {"id": 907}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 387, "owner": {"id": 451}, "assignee": {"id": 54}, "organization": {"id": 113}, "project": {"owner": {"id": 775}, "assignee": {"id": 822}, "organization": {"id": 952}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 440}, "assignee": {"id": 536}, "organization": {"id": 109}, "project": {"owner": {"id": 791}, "assignee": {"id": 849}, "organization": {"id": 991}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 367, "owner": {"id": 446}, "assignee": {"id": 6}, "organization": {"id": 696}, "project": {"owner": {"id": 775}, "assignee": {"id": 819}, "organization": {"id": 935}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 353, "owner": {"id": 458}, "assignee": {"id": 534}, "organization": {"id": 678}, "project": {"owner": {"id": 711}, "assignee": {"id": 806}, "organization": {"id": 974}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"id": 324, "owner": {"id": 467}, "assignee": {"id": 33}, "organization": {"id": 116}, "project": {"owner": {"id": 703}, "assignee": {"id": 830}, "organization": {"id": 954}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 445}, "assignee": {"id": 595}, "organization": {"id": 162}, "project": {"owner": {"id": 796}, "assignee": {"id": 862}, "organization": {"id": 951}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 205}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 471}, "assignee": {"id": 65}, "organization": {"id": 601}, "project": {"owner": {"id": 785}, "assignee": {"id": 813}, "organization": {"id": 987}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 464}, "assignee": {"id": 598}, "organization": {"id": 654}, "project": {"owner": {"id": 767}, "assignee": {"id": 803}, "organization": {"id": 926}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 199, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"id": 395, "owner": {"id": 455}, "assignee": {"id": 35}, "organization": {"id": 199}, "project": {"owner": {"id": 747}, "assignee": {"id": 859}, "organization": {"id": 922}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 72}, "user": {"role": "owner"}}}, "resource": {"id": 371, "owner": {"id": 479}, "assignee": {"id": 550}, "organization": {"id": 125}, "project": {"owner": {"id": 755}, "assignee": {"id": 837}, "organization": {"id": 979}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 48, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 391, "owner": {"id": 452}, "assignee": {"id": 48}, "organization": {"id": 629}, "project": {"owner": {"id": 714}, "assignee": {"id": 819}, "organization": {"id": 984}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 118, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 347, "owner": {"id": 438}, "assignee": {"id": 570}, "organization": {"id": 602}, "project": {"owner": {"id": 709}, "assignee": {"id": 818}, "organization": {"id": 904}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 468}, "assignee": {"id": 1}, "organization": {"id": 197}, "project": {"owner": {"id": 712}, "assignee": {"id": 870}, "organization": {"id": 968}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 349, "owner": {"id": 437}, "assignee": {"id": 561}, "organization": {"id": 136}, "project": {"owner": {"id": 728}, "assignee": {"id": 802}, "organization": {"id": 988}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"id": 353, "owner": {"id": 486}, "assignee": {"id": 69}, "organization": {"id": 603}, "project": {"owner": {"id": 785}, "assignee": {"id": 896}, "organization": {"id": 917}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 402}, "assignee": {"id": 539}, "organization": {"id": 612}, "project": {"owner": {"id": 737}, "assignee": {"id": 831}, "organization": {"id": 930}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"id": 393, "owner": {"id": 482}, "assignee": {"id": 33}, "organization": {"id": 154}, "project": {"owner": {"id": 784}, "assignee": {"id": 877}, "organization": {"id": 944}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 387, "owner": {"id": 490}, "assignee": {"id": 524}, "organization": {"id": 157}, "project": {"owner": {"id": 785}, "assignee": {"id": 865}, "organization": {"id": 945}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"id": 362, "owner": {"id": 416}, "assignee": {"id": 40}, "organization": {"id": 671}, "project": {"owner": {"id": 754}, "assignee": {"id": 833}, "organization": {"id": 986}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"id": 369, "owner": {"id": 467}, "assignee": {"id": 512}, "organization": {"id": 666}, "project": {"owner": {"id": 704}, "assignee": {"id": 883}, "organization": {"id": 903}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 423}, "assignee": {"id": 49}, "organization": {"id": 152}, "project": {"owner": {"id": 730}, "assignee": {"id": 882}, "organization": {"id": 963}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 424}, "assignee": {"id": 545}, "organization": {"id": 135}, "project": {"owner": {"id": 735}, "assignee": {"id": 872}, "organization": {"id": 919}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 430}, "assignee": {"id": 19}, "organization": {"id": 604}, "project": {"owner": {"id": 731}, "assignee": {"id": 816}, "organization": {"id": 944}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"id": 367, "owner": {"id": 472}, "assignee": {"id": 577}, "organization": {"id": 660}, "project": {"owner": {"id": 754}, "assignee": {"id": 884}, "organization": {"id": 965}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 154, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 349, "owner": {"id": 471}, "assignee": {"id": 40}, "organization": {"id": 154}, "project": {"owner": {"id": 766}, "assignee": {"id": 818}, "organization": {"id": 931}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 483}, "assignee": {"id": 562}, "organization": {"id": 101}, "project": {"owner": {"id": 736}, "assignee": {"id": 827}, "organization": {"id": 978}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 328, "owner": {"id": 474}, "assignee": {"id": 58}, "organization": {"id": 612}, "project": {"owner": {"id": 742}, "assignee": {"id": 807}, "organization": {"id": 941}}}} } -test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 225}, "user": {"role": null}}}, "resource": {"id": 354, "owner": {"id": 473}, "assignee": {"id": 522}, "organization": {"id": 637}, "project": {"owner": {"id": 717}, "assignee": {"id": 809}, "organization": {"id": 959}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 154, "owner": {"id": 245}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 427}, "assignee": {"id": 77}, "organization": {"id": 154}, "project": {"owner": {"id": 748}, "assignee": {"id": 855}, "organization": {"id": 943}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": null}, "resource": {"id": 389, "owner": {"id": 422}, "assignee": {"id": 588}, "organization": {"id": 636}, "project": {"owner": {"id": 61}, "assignee": {"id": 800}, "organization": {"id": 913}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 460}, "assignee": {"id": 53}, "organization": {"id": 697}, "project": {"owner": {"id": 746}, "assignee": {"id": 836}, "organization": {"id": 955}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": null}, "resource": {"id": 331, "owner": {"id": 449}, "assignee": {"id": 572}, "organization": {"id": 695}, "project": {"owner": {"id": 66}, "assignee": {"id": 839}, "organization": {"id": 984}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 307, "owner": {"id": 481}, "assignee": {"id": 54}, "organization": {"id": 184}, "project": {"owner": {"id": 752}, "assignee": {"id": 800}, "organization": {"id": 909}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": null}, "resource": {"id": 313, "owner": {"id": 420}, "assignee": {"id": 589}, "organization": {"id": 675}, "project": {"owner": {"id": 97}, "assignee": {"id": 823}, "organization": {"id": 980}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 41, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 496}, "assignee": {"id": 41}, "organization": {"id": 671}, "project": {"owner": {"id": 760}, "assignee": {"id": 839}, "organization": {"id": 970}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": null}, "resource": {"id": 333, "owner": {"id": 499}, "assignee": {"id": 549}, "organization": {"id": 612}, "project": {"owner": {"id": 72}, "assignee": {"id": 884}, "organization": {"id": 921}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 475}, "assignee": {"id": 19}, "organization": {"id": 131}, "project": {"owner": {"id": 753}, "assignee": {"id": 895}, "organization": {"id": 999}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": null}, "resource": {"id": 305, "owner": {"id": 448}, "assignee": {"id": 510}, "organization": {"id": 621}, "project": {"owner": {"id": 71}, "assignee": {"id": 869}, "organization": {"id": 943}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"id": 355, "owner": {"id": 443}, "assignee": {"id": 86}, "organization": {"id": 676}, "project": {"owner": {"id": 795}, "assignee": {"id": 874}, "organization": {"id": 918}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": null}, "resource": {"id": 363, "owner": {"id": 485}, "assignee": {"id": 558}, "organization": {"id": 686}, "project": {"owner": {"id": 797}, "assignee": {"id": 88}, "organization": {"id": 900}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"id": 376, "owner": {"id": 436}, "assignee": {"id": 531}, "organization": {"id": 138}, "project": {"owner": {"id": 752}, "assignee": {"id": 889}, "organization": {"id": 916}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": null}, "resource": {"id": 351, "owner": {"id": 485}, "assignee": {"id": 504}, "organization": {"id": 647}, "project": {"owner": {"id": 771}, "assignee": {"id": 84}, "organization": {"id": 960}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": {"id": 170, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"id": 333, "owner": {"id": 484}, "assignee": {"id": 580}, "organization": {"id": 610}, "project": {"owner": {"id": 786}, "assignee": {"id": 843}, "organization": {"id": 991}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": null}, "resource": {"id": 310, "owner": {"id": 485}, "assignee": {"id": 506}, "organization": {"id": 609}, "project": {"owner": {"id": 769}, "assignee": {"id": 27}, "organization": {"id": 911}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"id": 399, "owner": {"id": 447}, "assignee": {"id": 523}, "organization": {"id": 145}, "project": {"owner": {"id": 773}, "assignee": {"id": 801}, "organization": {"id": 918}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": null}, "resource": {"id": 363, "owner": {"id": 472}, "assignee": {"id": 558}, "organization": {"id": 665}, "project": {"owner": {"id": 744}, "assignee": {"id": 13}, "organization": {"id": 937}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"id": 303, "owner": {"id": 418}, "assignee": {"id": 528}, "organization": {"id": 654}, "project": {"owner": {"id": 731}, "assignee": {"id": 802}, "organization": {"id": 918}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": null}, "resource": {"id": 323, "owner": {"id": 416}, "assignee": {"id": 567}, "organization": {"id": 627}, "project": {"owner": {"id": 769}, "assignee": {"id": 72}, "organization": {"id": 919}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 443}, "assignee": {"id": 529}, "organization": {"id": 195}, "project": {"owner": {"id": 731}, "assignee": {"id": 840}, "organization": {"id": 939}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": null}, "resource": {"id": 352, "owner": {"id": 16}, "assignee": {"id": 569}, "organization": {"id": 685}, "project": {"owner": {"id": 745}, "assignee": {"id": 868}, "organization": {"id": 969}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 310, "owner": {"id": 403}, "assignee": {"id": 549}, "organization": {"id": 655}, "project": {"owner": {"id": 711}, "assignee": {"id": 849}, "organization": {"id": 919}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": null}, "resource": {"id": 321, "owner": {"id": 74}, "assignee": {"id": 578}, "organization": {"id": 688}, "project": {"owner": {"id": 735}, "assignee": {"id": 829}, "organization": {"id": 900}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 400}, "assignee": {"id": 518}, "organization": {"id": 196}, "project": {"owner": {"id": 783}, "assignee": {"id": 847}, "organization": {"id": 930}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": null}, "resource": {"id": 323, "owner": {"id": 6}, "assignee": {"id": 507}, "organization": {"id": 647}, "project": {"owner": {"id": 782}, "assignee": {"id": 806}, "organization": {"id": 974}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 300, "owner": {"id": 482}, "assignee": {"id": 501}, "organization": {"id": 662}, "project": {"owner": {"id": 745}, "assignee": {"id": 823}, "organization": {"id": 962}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": null}, "resource": {"id": 373, "owner": {"id": 90}, "assignee": {"id": 524}, "organization": {"id": 656}, "project": {"owner": {"id": 760}, "assignee": {"id": 801}, "organization": {"id": 987}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 81, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 249}, "user": {"role": null}}}, "resource": {"id": 395, "owner": {"id": 482}, "assignee": {"id": 540}, "organization": {"id": 138}, "project": {"owner": {"id": 749}, "assignee": {"id": 863}, "organization": {"id": 997}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": null}, "resource": {"id": 328, "owner": {"id": 40}, "assignee": {"id": 599}, "organization": {"id": 643}, "project": {"owner": {"id": 741}, "assignee": {"id": 870}, "organization": {"id": 900}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 210}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 444}, "assignee": {"id": 563}, "organization": {"id": 621}, "project": {"owner": {"id": 728}, "assignee": {"id": 809}, "organization": {"id": 974}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": null}, "resource": {"id": 325, "owner": {"id": 404}, "assignee": {"id": 60}, "organization": {"id": 663}, "project": {"owner": {"id": 729}, "assignee": {"id": 873}, "organization": {"id": 952}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"id": 399, "owner": {"id": 449}, "assignee": {"id": 525}, "organization": {"id": 150}, "project": {"owner": {"id": 702}, "assignee": {"id": 815}, "organization": {"id": 985}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": null}, "resource": {"id": 310, "owner": {"id": 420}, "assignee": {"id": 38}, "organization": {"id": 693}, "project": {"owner": {"id": 782}, "assignee": {"id": 892}, "organization": {"id": 962}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 483}, "assignee": {"id": 575}, "organization": {"id": 617}, "project": {"owner": {"id": 732}, "assignee": {"id": 862}, "organization": {"id": 901}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": null}, "resource": {"id": 355, "owner": {"id": 416}, "assignee": {"id": 77}, "organization": {"id": 646}, "project": {"owner": {"id": 746}, "assignee": {"id": 855}, "organization": {"id": 938}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 376, "owner": {"id": 484}, "assignee": {"id": 542}, "organization": {"id": 182}, "project": {"owner": {"id": 732}, "assignee": {"id": 851}, "organization": {"id": 993}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": null}, "resource": {"id": 388, "owner": {"id": 474}, "assignee": {"id": 42}, "organization": {"id": 688}, "project": {"owner": {"id": 701}, "assignee": {"id": 878}, "organization": {"id": 965}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 433}, "assignee": {"id": 594}, "organization": {"id": 692}, "project": {"owner": {"id": 743}, "assignee": {"id": 803}, "organization": {"id": 905}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": null}, "resource": {"id": 355, "owner": {"id": 482}, "assignee": {"id": 24}, "organization": {"id": 613}, "project": {"owner": {"id": 743}, "assignee": {"id": 817}, "organization": {"id": 970}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 205}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 450}, "assignee": {"id": 535}, "organization": {"id": 100}, "project": {"owner": {"id": 719}, "assignee": {"id": 846}, "organization": {"id": 970}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": null}, "resource": {"id": 312, "owner": {"id": 402}, "assignee": {"id": 595}, "organization": {"id": 698}, "project": {"owner": {"id": 754}, "assignee": {"id": 861}, "organization": {"id": 983}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 472}, "assignee": {"id": 570}, "organization": {"id": 658}, "project": {"owner": {"id": 764}, "assignee": {"id": 859}, "organization": {"id": 909}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": null}, "resource": {"id": 320, "owner": {"id": 479}, "assignee": {"id": 529}, "organization": {"id": 628}, "project": {"owner": {"id": 795}, "assignee": {"id": 842}, "organization": {"id": 999}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 305, "owner": {"id": 480}, "assignee": {"id": 533}, "organization": {"id": 195}, "project": {"owner": {"id": 789}, "assignee": {"id": 816}, "organization": {"id": 932}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": null}, "resource": {"id": 318, "owner": {"id": 467}, "assignee": {"id": 571}, "organization": {"id": 643}, "project": {"owner": {"id": 722}, "assignee": {"id": 837}, "organization": {"id": 966}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"id": 317, "owner": {"id": 481}, "assignee": {"id": 590}, "organization": {"id": 641}, "project": {"owner": {"id": 746}, "assignee": {"id": 834}, "organization": {"id": 997}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": null}, "resource": {"id": 392, "owner": {"id": 482}, "assignee": {"id": 559}, "organization": {"id": 613}, "project": {"owner": {"id": 750}, "assignee": {"id": 882}, "organization": {"id": 908}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"id": 367, "owner": {"id": 411}, "assignee": {"id": 543}, "organization": {"id": 198}, "project": {"owner": {"id": 743}, "assignee": {"id": 821}, "organization": {"id": 933}}}} } -test_scope_VIEW_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": null}, "resource": {"id": 354, "owner": {"id": 466}, "assignee": {"id": 506}, "organization": {"id": 636}, "project": {"owner": {"id": 761}, "assignee": {"id": 888}, "organization": {"id": 977}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 444}, "assignee": {"id": 575}, "organization": {"id": 611}, "project": {"owner": {"id": 783}, "assignee": {"id": 817}, "organization": {"id": 918}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"id": 323, "owner": {"id": 496}, "assignee": {"id": 515}, "organization": {"id": 110}, "project": {"owner": {"id": 17}, "assignee": {"id": 849}, "organization": {"id": 966}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 490}, "assignee": {"id": 551}, "organization": {"id": 181}, "project": {"owner": {"id": 776}, "assignee": {"id": 823}, "organization": {"id": 995}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 353, "owner": {"id": 487}, "assignee": {"id": 593}, "organization": {"id": 691}, "project": {"owner": {"id": 25}, "assignee": {"id": 895}, "organization": {"id": 971}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 415}, "assignee": {"id": 584}, "organization": {"id": 601}, "project": {"owner": {"id": 716}, "assignee": {"id": 845}, "organization": {"id": 976}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 172, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 483}, "assignee": {"id": 514}, "organization": {"id": 172}, "project": {"owner": {"id": 47}, "assignee": {"id": 870}, "organization": {"id": 915}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 145, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 425}, "assignee": {"id": 515}, "organization": {"id": 145}, "project": {"owner": {"id": 793}, "assignee": {"id": 848}, "organization": {"id": 954}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 483}, "assignee": {"id": 503}, "organization": {"id": 600}, "project": {"owner": {"id": 4}, "assignee": {"id": 816}, "organization": {"id": 972}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 308, "owner": {"id": 442}, "assignee": {"id": 557}, "organization": {"id": 639}, "project": {"owner": {"id": 742}, "assignee": {"id": 843}, "organization": {"id": 907}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 264}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 449}, "assignee": {"id": 593}, "organization": {"id": 159}, "project": {"owner": {"id": 97}, "assignee": {"id": 823}, "organization": {"id": 957}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 68, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 418}, "assignee": {"id": 539}, "organization": {"id": 130}, "project": {"owner": {"id": 786}, "assignee": {"id": 867}, "organization": {"id": 986}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 340, "owner": {"id": 479}, "assignee": {"id": 526}, "organization": {"id": 649}, "project": {"owner": {"id": 80}, "assignee": {"id": 839}, "organization": {"id": 952}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 400}, "assignee": {"id": 500}, "organization": {"id": 629}, "project": {"owner": {"id": 729}, "assignee": {"id": 867}, "organization": {"id": 993}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 347, "owner": {"id": 408}, "assignee": {"id": 546}, "organization": {"id": 155}, "project": {"owner": {"id": 98}, "assignee": {"id": 809}, "organization": {"id": 906}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 466}, "assignee": {"id": 591}, "organization": {"id": 109}, "project": {"owner": {"id": 713}, "assignee": {"id": 813}, "organization": {"id": 991}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 172, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 383, "owner": {"id": 449}, "assignee": {"id": 536}, "organization": {"id": 693}, "project": {"owner": {"id": 18}, "assignee": {"id": 846}, "organization": {"id": 949}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 250}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 441}, "assignee": {"id": 598}, "organization": {"id": 699}, "project": {"owner": {"id": 751}, "assignee": {"id": 814}, "organization": {"id": 981}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"id": 360, "owner": {"id": 400}, "assignee": {"id": 591}, "organization": {"id": 178}, "project": {"owner": {"id": 25}, "assignee": {"id": 869}, "organization": {"id": 969}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 424}, "assignee": {"id": 540}, "organization": {"id": 170}, "project": {"owner": {"id": 724}, "assignee": {"id": 849}, "organization": {"id": 923}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 340, "owner": {"id": 402}, "assignee": {"id": 558}, "organization": {"id": 646}, "project": {"owner": {"id": 58}, "assignee": {"id": 850}, "organization": {"id": 943}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 469}, "assignee": {"id": 514}, "organization": {"id": 658}, "project": {"owner": {"id": 732}, "assignee": {"id": 815}, "organization": {"id": 936}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 405}, "assignee": {"id": 577}, "organization": {"id": 135}, "project": {"owner": {"id": 66}, "assignee": {"id": 882}, "organization": {"id": 935}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 77}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 424}, "assignee": {"id": 597}, "organization": {"id": 185}, "project": {"owner": {"id": 735}, "assignee": {"id": 893}, "organization": {"id": 984}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 406}, "assignee": {"id": 548}, "organization": {"id": 699}, "project": {"owner": {"id": 93}, "assignee": {"id": 840}, "organization": {"id": 989}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 453}, "assignee": {"id": 507}, "organization": {"id": 694}, "project": {"owner": {"id": 759}, "assignee": {"id": 813}, "organization": {"id": 989}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 349, "owner": {"id": 494}, "assignee": {"id": 584}, "organization": {"id": 182}, "project": {"owner": {"id": 29}, "assignee": {"id": 888}, "organization": {"id": 930}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 51, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 330, "owner": {"id": 433}, "assignee": {"id": 512}, "organization": {"id": 169}, "project": {"owner": {"id": 751}, "assignee": {"id": 873}, "organization": {"id": 913}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 348, "owner": {"id": 498}, "assignee": {"id": 582}, "organization": {"id": 630}, "project": {"owner": {"id": 32}, "assignee": {"id": 857}, "organization": {"id": 920}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 459}, "assignee": {"id": 540}, "organization": {"id": 672}, "project": {"owner": {"id": 758}, "assignee": {"id": 845}, "organization": {"id": 995}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 210}, "user": {"role": "supervisor"}}}, "resource": {"id": 395, "owner": {"id": 499}, "assignee": {"id": 574}, "organization": {"id": 158}, "project": {"owner": {"id": 38}, "assignee": {"id": 879}, "organization": {"id": 925}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 402}, "assignee": {"id": 561}, "organization": {"id": 114}, "project": {"owner": {"id": 744}, "assignee": {"id": 891}, "organization": {"id": 943}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"id": 314, "owner": {"id": 438}, "assignee": {"id": 583}, "organization": {"id": 644}, "project": {"owner": {"id": 50}, "assignee": {"id": 829}, "organization": {"id": 949}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 51, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 328, "owner": {"id": 416}, "assignee": {"id": 555}, "organization": {"id": 659}, "project": {"owner": {"id": 748}, "assignee": {"id": 849}, "organization": {"id": 926}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 283}, "user": {"role": "worker"}}}, "resource": {"id": 382, "owner": {"id": 431}, "assignee": {"id": 560}, "organization": {"id": 136}, "project": {"owner": {"id": 78}, "assignee": {"id": 868}, "organization": {"id": 953}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 404}, "assignee": {"id": 585}, "organization": {"id": 180}, "project": {"owner": {"id": 724}, "assignee": {"id": 843}, "organization": {"id": 986}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 447}, "assignee": {"id": 567}, "organization": {"id": 682}, "project": {"owner": {"id": 60}, "assignee": {"id": 810}, "organization": {"id": 963}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 333, "owner": {"id": 468}, "assignee": {"id": 574}, "organization": {"id": 676}, "project": {"owner": {"id": 799}, "assignee": {"id": 891}, "organization": {"id": 903}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 340, "owner": {"id": 433}, "assignee": {"id": 595}, "organization": {"id": 128}, "project": {"owner": {"id": 41}, "assignee": {"id": 835}, "organization": {"id": 900}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 204}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 468}, "assignee": {"id": 584}, "organization": {"id": 189}, "project": {"owner": {"id": 758}, "assignee": {"id": 838}, "organization": {"id": 905}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 436}, "assignee": {"id": 506}, "organization": {"id": 605}, "project": {"owner": {"id": 21}, "assignee": {"id": 816}, "organization": {"id": 964}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 447}, "assignee": {"id": 543}, "organization": {"id": 679}, "project": {"owner": {"id": 770}, "assignee": {"id": 871}, "organization": {"id": 991}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 372, "owner": {"id": 471}, "assignee": {"id": 577}, "organization": {"id": 130}, "project": {"owner": {"id": 65}, "assignee": {"id": 811}, "organization": {"id": 980}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 349, "owner": {"id": 448}, "assignee": {"id": 562}, "organization": {"id": 138}, "project": {"owner": {"id": 731}, "assignee": {"id": 817}, "organization": {"id": 942}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 450}, "assignee": {"id": 561}, "organization": {"id": 622}, "project": {"owner": {"id": 32}, "assignee": {"id": 805}, "organization": {"id": 960}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 320, "owner": {"id": 497}, "assignee": {"id": 534}, "organization": {"id": 616}, "project": {"owner": {"id": 767}, "assignee": {"id": 843}, "organization": {"id": 955}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"id": 353, "owner": {"id": 421}, "assignee": {"id": 516}, "organization": {"id": 152}, "project": {"owner": {"id": 77}, "assignee": {"id": 832}, "organization": {"id": 987}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 199, "owner": {"id": 289}, "user": {"role": "maintainer"}}}, "resource": {"id": 356, "owner": {"id": 450}, "assignee": {"id": 512}, "organization": {"id": 199}, "project": {"owner": {"id": 735}, "assignee": {"id": 890}, "organization": {"id": 960}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 441}, "assignee": {"id": 511}, "organization": {"id": 642}, "project": {"owner": {"id": 3}, "assignee": {"id": 848}, "organization": {"id": 900}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 435}, "assignee": {"id": 569}, "organization": {"id": 685}, "project": {"owner": {"id": 796}, "assignee": {"id": 828}, "organization": {"id": 984}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 499}, "assignee": {"id": 514}, "organization": {"id": 104}, "project": {"owner": {"id": 54}, "assignee": {"id": 854}, "organization": {"id": 920}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 304, "owner": {"id": 403}, "assignee": {"id": 589}, "organization": {"id": 159}, "project": {"owner": {"id": 783}, "assignee": {"id": 811}, "organization": {"id": 976}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"id": 314, "owner": {"id": 473}, "assignee": {"id": 574}, "organization": {"id": 686}, "project": {"owner": {"id": 5}, "assignee": {"id": 890}, "organization": {"id": 911}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"id": 320, "owner": {"id": 490}, "assignee": {"id": 557}, "organization": {"id": 613}, "project": {"owner": {"id": 790}, "assignee": {"id": 810}, "organization": {"id": 909}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 492}, "assignee": {"id": 568}, "organization": {"id": 141}, "project": {"owner": {"id": 37}, "assignee": {"id": 871}, "organization": {"id": 984}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"id": 312, "owner": {"id": 488}, "assignee": {"id": 567}, "organization": {"id": 186}, "project": {"owner": {"id": 762}, "assignee": {"id": 863}, "organization": {"id": 973}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"id": 394, "owner": {"id": 415}, "assignee": {"id": 590}, "organization": {"id": 663}, "project": {"owner": {"id": 37}, "assignee": {"id": 834}, "organization": {"id": 940}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"id": 353, "owner": {"id": 481}, "assignee": {"id": 553}, "organization": {"id": 678}, "project": {"owner": {"id": 767}, "assignee": {"id": 843}, "organization": {"id": 991}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 223}, "user": {"role": null}}}, "resource": {"id": 361, "owner": {"id": 478}, "assignee": {"id": 559}, "organization": {"id": 107}, "project": {"owner": {"id": 27}, "assignee": {"id": 871}, "organization": {"id": 991}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 446}, "assignee": {"id": 553}, "organization": {"id": 173}, "project": {"owner": {"id": 709}, "assignee": {"id": 888}, "organization": {"id": 918}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"id": 332, "owner": {"id": 479}, "assignee": {"id": 561}, "organization": {"id": 605}, "project": {"owner": {"id": 85}, "assignee": {"id": 884}, "organization": {"id": 917}}}} +test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 118, "owner": {"id": 277}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 433}, "assignee": {"id": 579}, "organization": {"id": 622}, "project": {"owner": {"id": 759}, "assignee": {"id": 862}, "organization": {"id": 930}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 3, "privilege": "worker"}, "organization": {"id": 135, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 316, "owner": {"id": 429}, "assignee": {"id": 582}, "organization": {"id": 135}, "project": {"owner": {"id": 3}, "assignee": {"id": 870}, "organization": {"id": 973}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": null}, "resource": {"id": 318, "owner": {"id": 448}, "assignee": {"id": 598}, "organization": {"id": 693}, "project": {"owner": {"id": 45}, "assignee": {"id": 813}, "organization": {"id": 929}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 381, "owner": {"id": 423}, "assignee": {"id": 508}, "organization": {"id": 681}, "project": {"owner": {"id": 40}, "assignee": {"id": 809}, "organization": {"id": 918}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": null}, "resource": {"id": 350, "owner": {"id": 475}, "assignee": {"id": 529}, "organization": {"id": 679}, "project": {"owner": {"id": 92}, "assignee": {"id": 879}, "organization": {"id": 927}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"id": 328, "owner": {"id": 416}, "assignee": {"id": 554}, "organization": {"id": 192}, "project": {"owner": {"id": 54}, "assignee": {"id": 809}, "organization": {"id": 907}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": null}, "resource": {"id": 372, "owner": {"id": 454}, "assignee": {"id": 560}, "organization": {"id": 639}, "project": {"owner": {"id": 38}, "assignee": {"id": 875}, "organization": {"id": 900}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 325, "owner": {"id": 408}, "assignee": {"id": 517}, "organization": {"id": 680}, "project": {"owner": {"id": 8}, "assignee": {"id": 848}, "organization": {"id": 964}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": null}, "resource": {"id": 334, "owner": {"id": 404}, "assignee": {"id": 565}, "organization": {"id": 607}, "project": {"owner": {"id": 18}, "assignee": {"id": 855}, "organization": {"id": 999}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"id": 338, "owner": {"id": 429}, "assignee": {"id": 507}, "organization": {"id": 145}, "project": {"owner": {"id": 42}, "assignee": {"id": 890}, "organization": {"id": 970}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": null}, "resource": {"id": 394, "owner": {"id": 484}, "assignee": {"id": 568}, "organization": {"id": 681}, "project": {"owner": {"id": 12}, "assignee": {"id": 816}, "organization": {"id": 905}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 487}, "assignee": {"id": 505}, "organization": {"id": 636}, "project": {"owner": {"id": 28}, "assignee": {"id": 878}, "organization": {"id": 907}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 76, "privilege": "admin"}, "organization": null}, "resource": {"id": 392, "owner": {"id": 400}, "assignee": {"id": 545}, "organization": {"id": 617}, "project": {"owner": {"id": 706}, "assignee": {"id": 76}, "organization": {"id": 958}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 48, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 353, "owner": {"id": 460}, "assignee": {"id": 587}, "organization": {"id": 171}, "project": {"owner": {"id": 48}, "assignee": {"id": 878}, "organization": {"id": 989}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": null}, "resource": {"id": 368, "owner": {"id": 483}, "assignee": {"id": 526}, "organization": {"id": 634}, "project": {"owner": {"id": 701}, "assignee": {"id": 23}, "organization": {"id": 961}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 396, "owner": {"id": 451}, "assignee": {"id": 576}, "organization": {"id": 661}, "project": {"owner": {"id": 54}, "assignee": {"id": 824}, "organization": {"id": 987}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": null}, "resource": {"id": 304, "owner": {"id": 491}, "assignee": {"id": 533}, "organization": {"id": 635}, "project": {"owner": {"id": 717}, "assignee": {"id": 63}, "organization": {"id": 984}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 193, "owner": {"id": 207}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 434}, "assignee": {"id": 533}, "organization": {"id": 193}, "project": {"owner": {"id": 70}, "assignee": {"id": 818}, "organization": {"id": 968}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 96, "privilege": "worker"}, "organization": null}, "resource": {"id": 309, "owner": {"id": 419}, "assignee": {"id": 580}, "organization": {"id": 638}, "project": {"owner": {"id": 762}, "assignee": {"id": 96}, "organization": {"id": 919}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": {"id": 156, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 400}, "assignee": {"id": 545}, "organization": {"id": 632}, "project": {"owner": {"id": 92}, "assignee": {"id": 885}, "organization": {"id": 926}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": null}, "resource": {"id": 338, "owner": {"id": 401}, "assignee": {"id": 508}, "organization": {"id": 634}, "project": {"owner": {"id": 705}, "assignee": {"id": 32}, "organization": {"id": 968}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"id": 308, "owner": {"id": 436}, "assignee": {"id": 571}, "organization": {"id": 123}, "project": {"owner": {"id": 18}, "assignee": {"id": 885}, "organization": {"id": 935}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": null}, "resource": {"id": 362, "owner": {"id": 10}, "assignee": {"id": 533}, "organization": {"id": 607}, "project": {"owner": {"id": 700}, "assignee": {"id": 812}, "organization": {"id": 902}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 348, "owner": {"id": 463}, "assignee": {"id": 568}, "organization": {"id": 607}, "project": {"owner": {"id": 78}, "assignee": {"id": 805}, "organization": {"id": 926}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": null}, "resource": {"id": 353, "owner": {"id": 45}, "assignee": {"id": 573}, "organization": {"id": 626}, "project": {"owner": {"id": 778}, "assignee": {"id": 867}, "organization": {"id": 918}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 350, "owner": {"id": 440}, "assignee": {"id": 522}, "organization": {"id": 108}, "project": {"owner": {"id": 16}, "assignee": {"id": 800}, "organization": {"id": 914}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": null}, "resource": {"id": 320, "owner": {"id": 94}, "assignee": {"id": 544}, "organization": {"id": 676}, "project": {"owner": {"id": 711}, "assignee": {"id": 841}, "organization": {"id": 930}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 399, "owner": {"id": 409}, "assignee": {"id": 538}, "organization": {"id": 662}, "project": {"owner": {"id": 57}, "assignee": {"id": 860}, "organization": {"id": 934}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": null}, "resource": {"id": 363, "owner": {"id": 70}, "assignee": {"id": 567}, "organization": {"id": 692}, "project": {"owner": {"id": 796}, "assignee": {"id": 855}, "organization": {"id": 957}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 371, "owner": {"id": 422}, "assignee": {"id": 527}, "organization": {"id": 163}, "project": {"owner": {"id": 22}, "assignee": {"id": 840}, "organization": {"id": 960}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": null}, "resource": {"id": 387, "owner": {"id": 12}, "assignee": {"id": 539}, "organization": {"id": 677}, "project": {"owner": {"id": 781}, "assignee": {"id": 830}, "organization": {"id": 946}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 59, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 354, "owner": {"id": 475}, "assignee": {"id": 589}, "organization": {"id": 645}, "project": {"owner": {"id": 59}, "assignee": {"id": 831}, "organization": {"id": 961}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": null}, "resource": {"id": 387, "owner": {"id": 401}, "assignee": {"id": 58}, "organization": {"id": 658}, "project": {"owner": {"id": 725}, "assignee": {"id": 830}, "organization": {"id": 907}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"id": 334, "owner": {"id": 435}, "assignee": {"id": 521}, "organization": {"id": 103}, "project": {"owner": {"id": 32}, "assignee": {"id": 889}, "organization": {"id": 952}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": null}, "resource": {"id": 378, "owner": {"id": 438}, "assignee": {"id": 46}, "organization": {"id": 628}, "project": {"owner": {"id": 785}, "assignee": {"id": 858}, "organization": {"id": 978}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 397, "owner": {"id": 407}, "assignee": {"id": 598}, "organization": {"id": 667}, "project": {"owner": {"id": 37}, "assignee": {"id": 818}, "organization": {"id": 978}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": null}, "resource": {"id": 324, "owner": {"id": 427}, "assignee": {"id": 26}, "organization": {"id": 637}, "project": {"owner": {"id": 746}, "assignee": {"id": 820}, "organization": {"id": 915}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 409}, "assignee": {"id": 513}, "organization": {"id": 169}, "project": {"owner": {"id": 12}, "assignee": {"id": 831}, "organization": {"id": 953}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": null}, "resource": {"id": 366, "owner": {"id": 485}, "assignee": {"id": 39}, "organization": {"id": 633}, "project": {"owner": {"id": 770}, "assignee": {"id": 838}, "organization": {"id": 937}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"id": 318, "owner": {"id": 442}, "assignee": {"id": 583}, "organization": {"id": 699}, "project": {"owner": {"id": 12}, "assignee": {"id": 879}, "organization": {"id": 915}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": null}, "resource": {"id": 348, "owner": {"id": 465}, "assignee": {"id": 38}, "organization": {"id": 655}, "project": {"owner": {"id": 795}, "assignee": {"id": 809}, "organization": {"id": 909}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 301, "owner": {"id": 482}, "assignee": {"id": 537}, "organization": {"id": 185}, "project": {"owner": {"id": 785}, "assignee": {"id": 40}, "organization": {"id": 922}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": null}, "resource": {"id": 331, "owner": {"id": 488}, "assignee": {"id": 530}, "organization": {"id": 653}, "project": {"owner": {"id": 722}, "assignee": {"id": 850}, "organization": {"id": 968}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 345, "owner": {"id": 432}, "assignee": {"id": 501}, "organization": {"id": 615}, "project": {"owner": {"id": 732}, "assignee": {"id": 96}, "organization": {"id": 902}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": null}, "resource": {"id": 349, "owner": {"id": 461}, "assignee": {"id": 504}, "organization": {"id": 699}, "project": {"owner": {"id": 765}, "assignee": {"id": 817}, "organization": {"id": 918}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 471}, "assignee": {"id": 592}, "organization": {"id": 175}, "project": {"owner": {"id": 710}, "assignee": {"id": 5}, "organization": {"id": 938}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": null}, "resource": {"id": 356, "owner": {"id": 442}, "assignee": {"id": 581}, "organization": {"id": 669}, "project": {"owner": {"id": 758}, "assignee": {"id": 844}, "organization": {"id": 902}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 444}, "assignee": {"id": 595}, "organization": {"id": 691}, "project": {"owner": {"id": 774}, "assignee": {"id": 3}, "organization": {"id": 926}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": null}, "resource": {"id": 341, "owner": {"id": 425}, "assignee": {"id": 586}, "organization": {"id": 649}, "project": {"owner": {"id": 778}, "assignee": {"id": 877}, "organization": {"id": 946}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 444}, "assignee": {"id": 511}, "organization": {"id": 138}, "project": {"owner": {"id": 784}, "assignee": {"id": 47}, "organization": {"id": 953}}}} +test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": null}, "resource": {"id": 341, "owner": {"id": 475}, "assignee": {"id": 518}, "organization": {"id": 605}, "project": {"owner": {"id": 770}, "assignee": {"id": 851}, "organization": {"id": 949}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 265}, "user": {"role": "supervisor"}}}, "resource": {"id": 379, "owner": {"id": 445}, "assignee": {"id": 562}, "organization": {"id": 685}, "project": {"owner": {"id": 785}, "assignee": {"id": 34}, "organization": {"id": 948}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 313, "owner": {"id": 412}, "assignee": {"id": 587}, "organization": {"id": 151}, "project": {"owner": {"id": 58}, "assignee": {"id": 889}, "organization": {"id": 923}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 281}, "user": {"role": "worker"}}}, "resource": {"id": 319, "owner": {"id": 441}, "assignee": {"id": 567}, "organization": {"id": 129}, "project": {"owner": {"id": 795}, "assignee": {"id": 70}, "organization": {"id": 925}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 7, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 343, "owner": {"id": 457}, "assignee": {"id": 553}, "organization": {"id": 623}, "project": {"owner": {"id": 7}, "assignee": {"id": 885}, "organization": {"id": 919}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 292}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 430}, "assignee": {"id": 517}, "organization": {"id": 667}, "project": {"owner": {"id": 732}, "assignee": {"id": 78}, "organization": {"id": 922}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 205}, "user": {"role": "maintainer"}}}, "resource": {"id": 308, "owner": {"id": 421}, "assignee": {"id": 544}, "organization": {"id": 173}, "project": {"owner": {"id": 95}, "assignee": {"id": 826}, "organization": {"id": 980}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 210}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 440}, "assignee": {"id": 584}, "organization": {"id": 188}, "project": {"owner": {"id": 735}, "assignee": {"id": 95}, "organization": {"id": 911}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 383, "owner": {"id": 460}, "assignee": {"id": 582}, "organization": {"id": 630}, "project": {"owner": {"id": 6}, "assignee": {"id": 810}, "organization": {"id": 958}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 189, "owner": {"id": 270}, "user": {"role": null}}}, "resource": {"id": 369, "owner": {"id": 423}, "assignee": {"id": 562}, "organization": {"id": 649}, "project": {"owner": {"id": 700}, "assignee": {"id": 52}, "organization": {"id": 962}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"id": 331, "owner": {"id": 414}, "assignee": {"id": 539}, "organization": {"id": 125}, "project": {"owner": {"id": 26}, "assignee": {"id": 844}, "organization": {"id": 976}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 325, "owner": {"id": 417}, "assignee": {"id": 579}, "organization": {"id": 198}, "project": {"owner": {"id": 725}, "assignee": {"id": 51}, "organization": {"id": 942}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 116, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"id": 390, "owner": {"id": 429}, "assignee": {"id": 578}, "organization": {"id": 699}, "project": {"owner": {"id": 96}, "assignee": {"id": 841}, "organization": {"id": 958}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 387, "owner": {"id": 434}, "assignee": {"id": 536}, "organization": {"id": 608}, "project": {"owner": {"id": 707}, "assignee": {"id": 40}, "organization": {"id": 924}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 416}, "assignee": {"id": 566}, "organization": {"id": 135}, "project": {"owner": {"id": 2}, "assignee": {"id": 820}, "organization": {"id": 901}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 402}, "assignee": {"id": 573}, "organization": {"id": 150}, "project": {"owner": {"id": 776}, "assignee": {"id": 50}, "organization": {"id": 982}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 243}, "user": {"role": "worker"}}}, "resource": {"id": 381, "owner": {"id": 475}, "assignee": {"id": 592}, "organization": {"id": 694}, "project": {"owner": {"id": 45}, "assignee": {"id": 841}, "organization": {"id": 999}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 340, "owner": {"id": 495}, "assignee": {"id": 512}, "organization": {"id": 619}, "project": {"owner": {"id": 702}, "assignee": {"id": 82}, "organization": {"id": 985}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 387, "owner": {"id": 476}, "assignee": {"id": 501}, "organization": {"id": 142}, "project": {"owner": {"id": 68}, "assignee": {"id": 844}, "organization": {"id": 947}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 310, "owner": {"id": 485}, "assignee": {"id": 526}, "organization": {"id": 126}, "project": {"owner": {"id": 771}, "assignee": {"id": 60}, "organization": {"id": 938}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 137, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 413}, "assignee": {"id": 553}, "organization": {"id": 675}, "project": {"owner": {"id": 70}, "assignee": {"id": 804}, "organization": {"id": 994}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 130, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 384, "owner": {"id": 477}, "assignee": {"id": 569}, "organization": {"id": 686}, "project": {"owner": {"id": 752}, "assignee": {"id": 86}, "organization": {"id": 933}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 419}, "assignee": {"id": 555}, "organization": {"id": 177}, "project": {"owner": {"id": 81}, "assignee": {"id": 851}, "organization": {"id": 931}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 335, "owner": {"id": 465}, "assignee": {"id": 573}, "organization": {"id": 115}, "project": {"owner": {"id": 780}, "assignee": {"id": 33}, "organization": {"id": 941}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 459}, "assignee": {"id": 526}, "organization": {"id": 608}, "project": {"owner": {"id": 73}, "assignee": {"id": 821}, "organization": {"id": 949}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"id": 301, "owner": {"id": 401}, "assignee": {"id": 576}, "organization": {"id": 650}, "project": {"owner": {"id": 729}, "assignee": {"id": 86}, "organization": {"id": 946}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 495}, "assignee": {"id": 516}, "organization": {"id": 107}, "project": {"owner": {"id": 94}, "assignee": {"id": 847}, "organization": {"id": 936}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 244}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 478}, "assignee": {"id": 520}, "organization": {"id": 120}, "project": {"owner": {"id": 791}, "assignee": {"id": 8}, "organization": {"id": 951}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 471}, "assignee": {"id": 522}, "organization": {"id": 640}, "project": {"owner": {"id": 53}, "assignee": {"id": 883}, "organization": {"id": 906}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"id": 312, "owner": {"id": 437}, "assignee": {"id": 558}, "organization": {"id": 643}, "project": {"owner": {"id": 757}, "assignee": {"id": 81}, "organization": {"id": 996}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 426}, "assignee": {"id": 517}, "organization": {"id": 167}, "project": {"owner": {"id": 65}, "assignee": {"id": 807}, "organization": {"id": 928}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 498}, "assignee": {"id": 547}, "organization": {"id": 151}, "project": {"owner": {"id": 752}, "assignee": {"id": 36}, "organization": {"id": 971}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 354, "owner": {"id": 402}, "assignee": {"id": 526}, "organization": {"id": 616}, "project": {"owner": {"id": 41}, "assignee": {"id": 888}, "organization": {"id": 966}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"id": 313, "owner": {"id": 438}, "assignee": {"id": 566}, "organization": {"id": 648}, "project": {"owner": {"id": 791}, "assignee": {"id": 18}, "organization": {"id": 976}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"id": 390, "owner": {"id": 429}, "assignee": {"id": 505}, "organization": {"id": 106}, "project": {"owner": {"id": 67}, "assignee": {"id": 831}, "organization": {"id": 926}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"id": 377, "owner": {"id": 490}, "assignee": {"id": 510}, "organization": {"id": 143}, "project": {"owner": {"id": 710}, "assignee": {"id": 8}, "organization": {"id": 991}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 419}, "assignee": {"id": 581}, "organization": {"id": 631}, "project": {"owner": {"id": 0}, "assignee": {"id": 803}, "organization": {"id": 978}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"id": 368, "owner": {"id": 443}, "assignee": {"id": 576}, "organization": {"id": 687}, "project": {"owner": {"id": 723}, "assignee": {"id": 48}, "organization": {"id": 976}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 210}, "user": {"role": null}}}, "resource": {"id": 386, "owner": {"id": 487}, "assignee": {"id": 598}, "organization": {"id": 180}, "project": {"owner": {"id": 17}, "assignee": {"id": 814}, "organization": {"id": 937}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"id": 356, "owner": {"id": 450}, "assignee": {"id": 571}, "organization": {"id": 127}, "project": {"owner": {"id": 732}, "assignee": {"id": 33}, "organization": {"id": 911}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 442}, "assignee": {"id": 548}, "organization": {"id": 647}, "project": {"owner": {"id": 63}, "assignee": {"id": 850}, "organization": {"id": 992}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"id": 305, "owner": {"id": 426}, "assignee": {"id": 537}, "organization": {"id": 650}, "project": {"owner": {"id": 706}, "assignee": {"id": 91}, "organization": {"id": 984}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 303, "owner": {"id": 444}, "assignee": {"id": 584}, "organization": {"id": 146}, "project": {"owner": {"id": 21}, "assignee": {"id": 899}, "organization": {"id": 964}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"id": 325, "owner": {"id": 452}, "assignee": {"id": 555}, "organization": {"id": 177}, "project": {"owner": {"id": 783}, "assignee": {"id": 98}, "organization": {"id": 902}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 425}, "assignee": {"id": 579}, "organization": {"id": 678}, "project": {"owner": {"id": 47}, "assignee": {"id": 801}, "organization": {"id": 921}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 423}, "assignee": {"id": 518}, "organization": {"id": 658}, "project": {"owner": {"id": 703}, "assignee": {"id": 0}, "organization": {"id": 977}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 368, "owner": {"id": 410}, "assignee": {"id": 549}, "organization": {"id": 176}, "project": {"owner": {"id": 77}, "assignee": {"id": 849}, "organization": {"id": 926}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 364, "owner": {"id": 464}, "assignee": {"id": 527}, "organization": {"id": 126}, "project": {"owner": {"id": 789}, "assignee": {"id": 5}, "organization": {"id": 981}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 308, "owner": {"id": 410}, "assignee": {"id": 544}, "organization": {"id": 685}, "project": {"owner": {"id": 77}, "assignee": {"id": 888}, "organization": {"id": 926}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 239}, "user": {"role": null}}}, "resource": {"id": 336, "owner": {"id": 458}, "assignee": {"id": 506}, "organization": {"id": 664}, "project": {"owner": {"id": 710}, "assignee": {"id": 7}, "organization": {"id": 902}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 310, "owner": {"id": 417}, "assignee": {"id": 500}, "organization": {"id": 117}, "project": {"owner": {"id": 78}, "assignee": {"id": 895}, "organization": {"id": 923}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 330, "owner": {"id": 433}, "assignee": {"id": 514}, "organization": {"id": 158}, "project": {"owner": {"id": 779}, "assignee": {"id": 7}, "organization": {"id": 908}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 321, "owner": {"id": 433}, "assignee": {"id": 557}, "organization": {"id": 652}, "project": {"owner": {"id": 35}, "assignee": {"id": 845}, "organization": {"id": 993}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 480}, "assignee": {"id": 522}, "organization": {"id": 684}, "project": {"owner": {"id": 779}, "assignee": {"id": 99}, "organization": {"id": 971}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 163, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"id": 331, "owner": {"id": 491}, "assignee": {"id": 528}, "organization": {"id": 163}, "project": {"owner": {"id": 52}, "assignee": {"id": 809}, "organization": {"id": 954}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 484}, "assignee": {"id": 554}, "organization": {"id": 187}, "project": {"owner": {"id": 703}, "assignee": {"id": 74}, "organization": {"id": 969}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 332, "owner": {"id": 428}, "assignee": {"id": 559}, "organization": {"id": 650}, "project": {"owner": {"id": 51}, "assignee": {"id": 866}, "organization": {"id": 900}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 463}, "assignee": {"id": 526}, "organization": {"id": 686}, "project": {"owner": {"id": 716}, "assignee": {"id": 19}, "organization": {"id": 907}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 214}, "user": {"role": null}}}, "resource": {"id": 372, "owner": {"id": 482}, "assignee": {"id": 568}, "organization": {"id": 160}, "project": {"owner": {"id": 62}, "assignee": {"id": 815}, "organization": {"id": 970}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 195, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 410}, "assignee": {"id": 595}, "organization": {"id": 195}, "project": {"owner": {"id": 747}, "assignee": {"id": 99}, "organization": {"id": 904}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 378, "owner": {"id": 428}, "assignee": {"id": 582}, "organization": {"id": 643}, "project": {"owner": {"id": 67}, "assignee": {"id": 865}, "organization": {"id": 958}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"id": 319, "owner": {"id": 427}, "assignee": {"id": 565}, "organization": {"id": 612}, "project": {"owner": {"id": 785}, "assignee": {"id": 74}, "organization": {"id": 996}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"id": 343, "owner": {"id": 446}, "assignee": {"id": 527}, "organization": {"id": 161}, "project": {"owner": {"id": 5}, "assignee": {"id": 890}, "organization": {"id": 956}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": {"id": 112, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 481}, "assignee": {"id": 526}, "organization": {"id": 112}, "project": {"owner": {"id": 720}, "assignee": {"id": 18}, "organization": {"id": 990}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 412}, "assignee": {"id": 553}, "organization": {"id": 656}, "project": {"owner": {"id": 85}, "assignee": {"id": 820}, "organization": {"id": 936}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 217}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 477}, "assignee": {"id": 574}, "organization": {"id": 624}, "project": {"owner": {"id": 721}, "assignee": {"id": 82}, "organization": {"id": 918}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 443}, "assignee": {"id": 502}, "organization": {"id": 110}, "project": {"owner": {"id": 61}, "assignee": {"id": 832}, "organization": {"id": 957}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 48, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"id": 322, "owner": {"id": 423}, "assignee": {"id": 533}, "organization": {"id": 183}, "project": {"owner": {"id": 709}, "assignee": {"id": 48}, "organization": {"id": 983}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"id": 396, "owner": {"id": 462}, "assignee": {"id": 566}, "organization": {"id": 676}, "project": {"owner": {"id": 1}, "assignee": {"id": 871}, "organization": {"id": 923}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"id": 342, "owner": {"id": 454}, "assignee": {"id": 572}, "organization": {"id": 696}, "project": {"owner": {"id": 755}, "assignee": {"id": 88}, "organization": {"id": 905}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 282}, "user": {"role": "supervisor"}}}, "resource": {"id": 394, "owner": {"id": 436}, "assignee": {"id": 511}, "organization": {"id": 176}, "project": {"owner": {"id": 87}, "assignee": {"id": 881}, "organization": {"id": 952}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"id": 337, "owner": {"id": 476}, "assignee": {"id": 511}, "organization": {"id": 187}, "project": {"owner": {"id": 737}, "assignee": {"id": 43}, "organization": {"id": 962}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 264}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 487}, "assignee": {"id": 588}, "organization": {"id": 653}, "project": {"owner": {"id": 19}, "assignee": {"id": 819}, "organization": {"id": 936}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 472}, "assignee": {"id": 594}, "organization": {"id": 640}, "project": {"owner": {"id": 761}, "assignee": {"id": 81}, "organization": {"id": 914}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"id": 396, "owner": {"id": 416}, "assignee": {"id": 503}, "organization": {"id": 130}, "project": {"owner": {"id": 17}, "assignee": {"id": 883}, "organization": {"id": 969}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 480}, "assignee": {"id": 548}, "organization": {"id": 172}, "project": {"owner": {"id": 731}, "assignee": {"id": 79}, "organization": {"id": 978}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 286}, "user": {"role": "worker"}}}, "resource": {"id": 380, "owner": {"id": 485}, "assignee": {"id": 512}, "organization": {"id": 665}, "project": {"owner": {"id": 28}, "assignee": {"id": 838}, "organization": {"id": 957}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 332, "owner": {"id": 464}, "assignee": {"id": 591}, "organization": {"id": 670}, "project": {"owner": {"id": 785}, "assignee": {"id": 86}, "organization": {"id": 982}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 479}, "assignee": {"id": 591}, "organization": {"id": 178}, "project": {"owner": {"id": 59}, "assignee": {"id": 894}, "organization": {"id": 942}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 331, "owner": {"id": 491}, "assignee": {"id": 580}, "organization": {"id": 147}, "project": {"owner": {"id": 724}, "assignee": {"id": 13}, "organization": {"id": 904}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 414}, "assignee": {"id": 565}, "organization": {"id": 683}, "project": {"owner": {"id": 6}, "assignee": {"id": 810}, "organization": {"id": 945}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 356, "owner": {"id": 474}, "assignee": {"id": 546}, "organization": {"id": 667}, "project": {"owner": {"id": 796}, "assignee": {"id": 27}, "organization": {"id": 971}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 404}, "assignee": {"id": 589}, "organization": {"id": 167}, "project": {"owner": {"id": 94}, "assignee": {"id": 819}, "organization": {"id": 980}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"id": 357, "owner": {"id": 472}, "assignee": {"id": 536}, "organization": {"id": 168}, "project": {"owner": {"id": 706}, "assignee": {"id": 98}, "organization": {"id": 935}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 20}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 468}, "assignee": {"id": 538}, "organization": {"id": 610}, "project": {"owner": {"id": 20}, "assignee": {"id": 868}, "organization": {"id": 906}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 465}, "assignee": {"id": 507}, "organization": {"id": 656}, "project": {"owner": {"id": 767}, "assignee": {"id": 55}, "organization": {"id": 957}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 348, "owner": {"id": 454}, "assignee": {"id": 584}, "organization": {"id": 182}, "project": {"owner": {"id": 83}, "assignee": {"id": 899}, "organization": {"id": 946}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 423}, "assignee": {"id": 547}, "organization": {"id": 119}, "project": {"owner": {"id": 775}, "assignee": {"id": 85}, "organization": {"id": 999}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"id": 396, "owner": {"id": 403}, "assignee": {"id": 526}, "organization": {"id": 615}, "project": {"owner": {"id": 26}, "assignee": {"id": 861}, "organization": {"id": 956}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 482}, "assignee": {"id": 509}, "organization": {"id": 628}, "project": {"owner": {"id": 712}, "assignee": {"id": 95}, "organization": {"id": 970}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 461}, "assignee": {"id": 586}, "organization": {"id": 182}, "project": {"owner": {"id": 92}, "assignee": {"id": 857}, "organization": {"id": 965}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 398, "owner": {"id": 40}, "assignee": {"id": 577}, "organization": {"id": 134}, "project": {"owner": {"id": 755}, "assignee": {"id": 880}, "organization": {"id": 924}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"id": 305, "owner": {"id": 410}, "assignee": {"id": 554}, "organization": {"id": 651}, "project": {"owner": {"id": 37}, "assignee": {"id": 816}, "organization": {"id": 928}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 137, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 63}, "assignee": {"id": 543}, "organization": {"id": 685}, "project": {"owner": {"id": 749}, "assignee": {"id": 873}, "organization": {"id": 983}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 41, "privilege": "none"}, "organization": {"id": 156, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"id": 398, "owner": {"id": 470}, "assignee": {"id": 511}, "organization": {"id": 156}, "project": {"owner": {"id": 41}, "assignee": {"id": 844}, "organization": {"id": 930}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 79}, "assignee": {"id": 524}, "organization": {"id": 120}, "project": {"owner": {"id": 730}, "assignee": {"id": 837}, "organization": {"id": 935}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 418}, "assignee": {"id": 548}, "organization": {"id": 621}, "project": {"owner": {"id": 21}, "assignee": {"id": 858}, "organization": {"id": 962}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 91}, "assignee": {"id": 525}, "organization": {"id": 690}, "project": {"owner": {"id": 770}, "assignee": {"id": 812}, "organization": {"id": 923}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 317, "owner": {"id": 438}, "assignee": {"id": 594}, "organization": {"id": 140}, "project": {"owner": {"id": 96}, "assignee": {"id": 815}, "organization": {"id": 957}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 304, "owner": {"id": 91}, "assignee": {"id": 506}, "organization": {"id": 108}, "project": {"owner": {"id": 793}, "assignee": {"id": 818}, "organization": {"id": 982}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 489}, "assignee": {"id": 529}, "organization": {"id": 659}, "project": {"owner": {"id": 39}, "assignee": {"id": 822}, "organization": {"id": 992}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"id": 385, "owner": {"id": 70}, "assignee": {"id": 508}, "organization": {"id": 694}, "project": {"owner": {"id": 796}, "assignee": {"id": 875}, "organization": {"id": 974}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 490}, "assignee": {"id": 516}, "organization": {"id": 130}, "project": {"owner": {"id": 757}, "assignee": {"id": 44}, "organization": {"id": 916}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 377, "owner": {"id": 26}, "assignee": {"id": 514}, "organization": {"id": 106}, "project": {"owner": {"id": 799}, "assignee": {"id": 819}, "organization": {"id": 974}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 379, "owner": {"id": 471}, "assignee": {"id": 545}, "organization": {"id": 649}, "project": {"owner": {"id": 709}, "assignee": {"id": 96}, "organization": {"id": 900}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 103, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 343, "owner": {"id": 66}, "assignee": {"id": 565}, "organization": {"id": 662}, "project": {"owner": {"id": 712}, "assignee": {"id": 868}, "organization": {"id": 925}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 490}, "assignee": {"id": 538}, "organization": {"id": 182}, "project": {"owner": {"id": 748}, "assignee": {"id": 95}, "organization": {"id": 955}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 270}, "user": {"role": null}}}, "resource": {"id": 374, "owner": {"id": 47}, "assignee": {"id": 533}, "organization": {"id": 174}, "project": {"owner": {"id": 740}, "assignee": {"id": 870}, "organization": {"id": 940}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 429}, "assignee": {"id": 543}, "organization": {"id": 619}, "project": {"owner": {"id": 742}, "assignee": {"id": 94}, "organization": {"id": 906}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 4}, "assignee": {"id": 584}, "organization": {"id": 648}, "project": {"owner": {"id": 778}, "assignee": {"id": 887}, "organization": {"id": 954}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"id": 369, "owner": {"id": 474}, "assignee": {"id": 528}, "organization": {"id": 175}, "project": {"owner": {"id": 747}, "assignee": {"id": 31}, "organization": {"id": 971}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 66}, "assignee": {"id": 545}, "organization": {"id": 119}, "project": {"owner": {"id": 750}, "assignee": {"id": 806}, "organization": {"id": 978}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 390, "owner": {"id": 414}, "assignee": {"id": 549}, "organization": {"id": 650}, "project": {"owner": {"id": 791}, "assignee": {"id": 11}, "organization": {"id": 924}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 58}, "assignee": {"id": 504}, "organization": {"id": 614}, "project": {"owner": {"id": 757}, "assignee": {"id": 827}, "organization": {"id": 993}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 160, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 403}, "assignee": {"id": 554}, "organization": {"id": 160}, "project": {"owner": {"id": 792}, "assignee": {"id": 29}, "organization": {"id": 922}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 13}, "assignee": {"id": 593}, "organization": {"id": 131}, "project": {"owner": {"id": 747}, "assignee": {"id": 879}, "organization": {"id": 913}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 243}, "user": {"role": "worker"}}}, "resource": {"id": 317, "owner": {"id": 457}, "assignee": {"id": 528}, "organization": {"id": 636}, "project": {"owner": {"id": 767}, "assignee": {"id": 35}, "organization": {"id": 975}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 346, "owner": {"id": 71}, "assignee": {"id": 576}, "organization": {"id": 643}, "project": {"owner": {"id": 739}, "assignee": {"id": 803}, "organization": {"id": 909}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 190, "owner": {"id": 263}, "user": {"role": null}}}, "resource": {"id": 330, "owner": {"id": 415}, "assignee": {"id": 597}, "organization": {"id": 190}, "project": {"owner": {"id": 783}, "assignee": {"id": 30}, "organization": {"id": 987}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 370, "owner": {"id": 31}, "assignee": {"id": 585}, "organization": {"id": 114}, "project": {"owner": {"id": 744}, "assignee": {"id": 848}, "organization": {"id": 943}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 383, "owner": {"id": 424}, "assignee": {"id": 537}, "organization": {"id": 686}, "project": {"owner": {"id": 796}, "assignee": {"id": 6}, "organization": {"id": 983}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 85}, "assignee": {"id": 533}, "organization": {"id": 609}, "project": {"owner": {"id": 798}, "assignee": {"id": 822}, "organization": {"id": 968}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 466}, "assignee": {"id": 500}, "organization": {"id": 184}, "project": {"owner": {"id": 734}, "assignee": {"id": 4}, "organization": {"id": 919}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 68}, "assignee": {"id": 579}, "organization": {"id": 125}, "project": {"owner": {"id": 797}, "assignee": {"id": 811}, "organization": {"id": 952}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 471}, "assignee": {"id": 556}, "organization": {"id": 655}, "project": {"owner": {"id": 733}, "assignee": {"id": 96}, "organization": {"id": 974}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 58}, "assignee": {"id": 581}, "organization": {"id": 678}, "project": {"owner": {"id": 757}, "assignee": {"id": 859}, "organization": {"id": 914}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 467}, "assignee": {"id": 585}, "organization": {"id": 152}, "project": {"owner": {"id": 747}, "assignee": {"id": 8}, "organization": {"id": 984}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"id": 357, "owner": {"id": 81}, "assignee": {"id": 577}, "organization": {"id": 162}, "project": {"owner": {"id": 702}, "assignee": {"id": 853}, "organization": {"id": 976}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 329, "owner": {"id": 413}, "assignee": {"id": 505}, "organization": {"id": 627}, "project": {"owner": {"id": 781}, "assignee": {"id": 50}, "organization": {"id": 948}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 5}, "assignee": {"id": 507}, "organization": {"id": 637}, "project": {"owner": {"id": 786}, "assignee": {"id": 815}, "organization": {"id": 953}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 205}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 479}, "assignee": {"id": 505}, "organization": {"id": 187}, "project": {"owner": {"id": 757}, "assignee": {"id": 14}, "organization": {"id": 928}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 15}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 15}, "assignee": {"id": 513}, "organization": {"id": 133}, "project": {"owner": {"id": 775}, "assignee": {"id": 887}, "organization": {"id": 917}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 123, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"id": 321, "owner": {"id": 468}, "assignee": {"id": 566}, "organization": {"id": 611}, "project": {"owner": {"id": 784}, "assignee": {"id": 99}, "organization": {"id": 929}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 43}, "assignee": {"id": 597}, "organization": {"id": 653}, "project": {"owner": {"id": 792}, "assignee": {"id": 863}, "organization": {"id": 914}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 475}, "assignee": {"id": 580}, "organization": {"id": 152}, "project": {"owner": {"id": 779}, "assignee": {"id": 45}, "organization": {"id": 943}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 96}, "assignee": {"id": 598}, "organization": {"id": 148}, "project": {"owner": {"id": 764}, "assignee": {"id": 876}, "organization": {"id": 987}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 174, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"id": 331, "owner": {"id": 459}, "assignee": {"id": 591}, "organization": {"id": 608}, "project": {"owner": {"id": 730}, "assignee": {"id": 27}, "organization": {"id": 956}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 368, "owner": {"id": 62}, "assignee": {"id": 532}, "organization": {"id": 646}, "project": {"owner": {"id": 751}, "assignee": {"id": 886}, "organization": {"id": 948}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"id": 391, "owner": {"id": 406}, "assignee": {"id": 595}, "organization": {"id": 170}, "project": {"owner": {"id": 705}, "assignee": {"id": 96}, "organization": {"id": 934}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 63}, "assignee": {"id": 576}, "organization": {"id": 148}, "project": {"owner": {"id": 767}, "assignee": {"id": 827}, "organization": {"id": 923}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 440}, "assignee": {"id": 562}, "organization": {"id": 699}, "project": {"owner": {"id": 730}, "assignee": {"id": 7}, "organization": {"id": 929}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 110, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 67}, "assignee": {"id": 518}, "organization": {"id": 604}, "project": {"owner": {"id": 746}, "assignee": {"id": 847}, "organization": {"id": 910}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 493}, "assignee": {"id": 506}, "organization": {"id": 101}, "project": {"owner": {"id": 749}, "assignee": {"id": 51}, "organization": {"id": 910}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 41}, "assignee": {"id": 561}, "organization": {"id": 130}, "project": {"owner": {"id": 771}, "assignee": {"id": 876}, "organization": {"id": 910}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 150, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 393, "owner": {"id": 408}, "assignee": {"id": 569}, "organization": {"id": 681}, "project": {"owner": {"id": 763}, "assignee": {"id": 65}, "organization": {"id": 951}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 374, "owner": {"id": 66}, "assignee": {"id": 521}, "organization": {"id": 623}, "project": {"owner": {"id": 751}, "assignee": {"id": 846}, "organization": {"id": 985}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 456}, "assignee": {"id": 567}, "organization": {"id": 117}, "project": {"owner": {"id": 717}, "assignee": {"id": 73}, "organization": {"id": 900}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 277}, "user": {"role": null}}}, "resource": {"id": 354, "owner": {"id": 52}, "assignee": {"id": 585}, "organization": {"id": 121}, "project": {"owner": {"id": 758}, "assignee": {"id": 811}, "organization": {"id": 961}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 329, "owner": {"id": 451}, "assignee": {"id": 580}, "organization": {"id": 666}, "project": {"owner": {"id": 718}, "assignee": {"id": 99}, "organization": {"id": 905}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 359, "owner": {"id": 89}, "assignee": {"id": 547}, "organization": {"id": 647}, "project": {"owner": {"id": 796}, "assignee": {"id": 860}, "organization": {"id": 959}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"id": 339, "owner": {"id": 475}, "assignee": {"id": 582}, "organization": {"id": 118}, "project": {"owner": {"id": 759}, "assignee": {"id": 47}, "organization": {"id": 992}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"id": 323, "owner": {"id": 79}, "assignee": {"id": 544}, "organization": {"id": 187}, "project": {"owner": {"id": 782}, "assignee": {"id": 852}, "organization": {"id": 994}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 300, "owner": {"id": 440}, "assignee": {"id": 550}, "organization": {"id": 672}, "project": {"owner": {"id": 758}, "assignee": {"id": 26}, "organization": {"id": 942}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 16}, "assignee": {"id": 512}, "organization": {"id": 685}, "project": {"owner": {"id": 788}, "assignee": {"id": 808}, "organization": {"id": 927}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"id": 335, "owner": {"id": 478}, "assignee": {"id": 513}, "organization": {"id": 103}, "project": {"owner": {"id": 795}, "assignee": {"id": 84}, "organization": {"id": 933}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 98}, "assignee": {"id": 504}, "organization": {"id": 124}, "project": {"owner": {"id": 732}, "assignee": {"id": 832}, "organization": {"id": 992}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 472}, "assignee": {"id": 504}, "organization": {"id": 607}, "project": {"owner": {"id": 717}, "assignee": {"id": 53}, "organization": {"id": 989}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 193, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 318, "owner": {"id": 4}, "assignee": {"id": 568}, "organization": {"id": 635}, "project": {"owner": {"id": 719}, "assignee": {"id": 850}, "organization": {"id": 908}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 254}, "user": {"role": null}}}, "resource": {"id": 359, "owner": {"id": 426}, "assignee": {"id": 511}, "organization": {"id": 189}, "project": {"owner": {"id": 722}, "assignee": {"id": 64}, "organization": {"id": 994}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 141, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 66}, "assignee": {"id": 590}, "organization": {"id": 141}, "project": {"owner": {"id": 738}, "assignee": {"id": 893}, "organization": {"id": 977}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 457}, "assignee": {"id": 553}, "organization": {"id": 660}, "project": {"owner": {"id": 741}, "assignee": {"id": 47}, "organization": {"id": 984}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 35}, "assignee": {"id": 519}, "organization": {"id": 658}, "project": {"owner": {"id": 733}, "assignee": {"id": 881}, "organization": {"id": 939}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"id": 330, "owner": {"id": 498}, "assignee": {"id": 528}, "organization": {"id": 157}, "project": {"owner": {"id": 767}, "assignee": {"id": 61}, "organization": {"id": 989}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 71}, "assignee": {"id": 529}, "organization": {"id": 118}, "project": {"owner": {"id": 762}, "assignee": {"id": 882}, "organization": {"id": 979}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 473}, "assignee": {"id": 545}, "organization": {"id": 686}, "project": {"owner": {"id": 719}, "assignee": {"id": 75}, "organization": {"id": 966}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 245}, "user": {"role": "worker"}}}, "resource": {"id": 367, "owner": {"id": 73}, "assignee": {"id": 513}, "organization": {"id": 603}, "project": {"owner": {"id": 719}, "assignee": {"id": 833}, "organization": {"id": 946}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 434}, "assignee": {"id": 545}, "organization": {"id": 147}, "project": {"owner": {"id": 769}, "assignee": {"id": 67}, "organization": {"id": 991}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 41}, "assignee": {"id": 538}, "organization": {"id": 118}, "project": {"owner": {"id": 787}, "assignee": {"id": 841}, "organization": {"id": 942}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 485}, "assignee": {"id": 500}, "organization": {"id": 672}, "project": {"owner": {"id": 705}, "assignee": {"id": 80}, "organization": {"id": 950}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 382, "owner": {"id": 73}, "assignee": {"id": 529}, "organization": {"id": 640}, "project": {"owner": {"id": 772}, "assignee": {"id": 897}, "organization": {"id": 958}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"id": 327, "owner": {"id": 413}, "assignee": {"id": 559}, "organization": {"id": 157}, "project": {"owner": {"id": 758}, "assignee": {"id": 61}, "organization": {"id": 963}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 132, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 44}, "assignee": {"id": 542}, "organization": {"id": 132}, "project": {"owner": {"id": 740}, "assignee": {"id": 824}, "organization": {"id": 939}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 399, "owner": {"id": 427}, "assignee": {"id": 557}, "organization": {"id": 642}, "project": {"owner": {"id": 790}, "assignee": {"id": 71}, "organization": {"id": 983}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 34}, "assignee": {"id": 550}, "organization": {"id": 632}, "project": {"owner": {"id": 760}, "assignee": {"id": 835}, "organization": {"id": 950}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 258}, "user": {"role": "worker"}}}, "resource": {"id": 395, "owner": {"id": 497}, "assignee": {"id": 575}, "organization": {"id": 126}, "project": {"owner": {"id": 769}, "assignee": {"id": 49}, "organization": {"id": 910}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 398, "owner": {"id": 1}, "assignee": {"id": 587}, "organization": {"id": 115}, "project": {"owner": {"id": 719}, "assignee": {"id": 896}, "organization": {"id": 902}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 100, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 312, "owner": {"id": 473}, "assignee": {"id": 565}, "organization": {"id": 667}, "project": {"owner": {"id": 792}, "assignee": {"id": 85}, "organization": {"id": 970}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"id": 324, "owner": {"id": 73}, "assignee": {"id": 573}, "organization": {"id": 670}, "project": {"owner": {"id": 743}, "assignee": {"id": 897}, "organization": {"id": 915}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 442}, "assignee": {"id": 593}, "organization": {"id": 187}, "project": {"owner": {"id": 742}, "assignee": {"id": 87}, "organization": {"id": 930}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"id": 339, "owner": {"id": 55}, "assignee": {"id": 501}, "organization": {"id": 192}, "project": {"owner": {"id": 708}, "assignee": {"id": 894}, "organization": {"id": 998}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 243}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 415}, "assignee": {"id": 595}, "organization": {"id": 630}, "project": {"owner": {"id": 794}, "assignee": {"id": 55}, "organization": {"id": 927}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 398, "owner": {"id": 80}, "assignee": {"id": 591}, "organization": {"id": 655}, "project": {"owner": {"id": 738}, "assignee": {"id": 893}, "organization": {"id": 987}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 409}, "assignee": {"id": 507}, "organization": {"id": 184}, "project": {"owner": {"id": 791}, "assignee": {"id": 70}, "organization": {"id": 937}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 98}, "assignee": {"id": 556}, "organization": {"id": 175}, "project": {"owner": {"id": 794}, "assignee": {"id": 895}, "organization": {"id": 914}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 398, "owner": {"id": 457}, "assignee": {"id": 561}, "organization": {"id": 671}, "project": {"owner": {"id": 715}, "assignee": {"id": 37}, "organization": {"id": 992}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 3}, "assignee": {"id": 576}, "organization": {"id": 640}, "project": {"owner": {"id": 799}, "assignee": {"id": 841}, "organization": {"id": 952}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 406}, "assignee": {"id": 559}, "organization": {"id": 179}, "project": {"owner": {"id": 776}, "assignee": {"id": 14}, "organization": {"id": 916}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"id": 305, "owner": {"id": 75}, "assignee": {"id": 561}, "organization": {"id": 123}, "project": {"owner": {"id": 740}, "assignee": {"id": 846}, "organization": {"id": 906}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"id": 328, "owner": {"id": 483}, "assignee": {"id": 501}, "organization": {"id": 651}, "project": {"owner": {"id": 724}, "assignee": {"id": 75}, "organization": {"id": 903}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 28}, "assignee": {"id": 558}, "organization": {"id": 698}, "project": {"owner": {"id": 793}, "assignee": {"id": 816}, "organization": {"id": 975}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 242}, "user": {"role": "supervisor"}}}, "resource": {"id": 356, "owner": {"id": 441}, "assignee": {"id": 563}, "organization": {"id": 135}, "project": {"owner": {"id": 718}, "assignee": {"id": 87}, "organization": {"id": 964}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 101, "owner": {"id": 95}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 416}, "assignee": {"id": 95}, "organization": {"id": 101}, "project": {"owner": {"id": 786}, "assignee": {"id": 829}, "organization": {"id": 929}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 282}, "user": {"role": "supervisor"}}}, "resource": {"id": 314, "owner": {"id": 428}, "assignee": {"id": 508}, "organization": {"id": 609}, "project": {"owner": {"id": 798}, "assignee": {"id": 42}, "organization": {"id": 988}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 116, "owner": {"id": 20}, "user": {"role": "owner"}}}, "resource": {"id": 361, "owner": {"id": 495}, "assignee": {"id": 20}, "organization": {"id": 635}, "project": {"owner": {"id": 722}, "assignee": {"id": 881}, "organization": {"id": 960}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 142, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"id": 391, "owner": {"id": 493}, "assignee": {"id": 548}, "organization": {"id": 142}, "project": {"owner": {"id": 794}, "assignee": {"id": 89}, "organization": {"id": 907}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 117, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 323, "owner": {"id": 467}, "assignee": {"id": 83}, "organization": {"id": 117}, "project": {"owner": {"id": 774}, "assignee": {"id": 867}, "organization": {"id": 933}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 118, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 334, "owner": {"id": 440}, "assignee": {"id": 521}, "organization": {"id": 699}, "project": {"owner": {"id": 775}, "assignee": {"id": 10}, "organization": {"id": 995}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 329, "owner": {"id": 491}, "assignee": {"id": 38}, "organization": {"id": 648}, "project": {"owner": {"id": 787}, "assignee": {"id": 833}, "organization": {"id": 988}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 492}, "assignee": {"id": 519}, "organization": {"id": 106}, "project": {"owner": {"id": 725}, "assignee": {"id": 30}, "organization": {"id": 923}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 496}, "assignee": {"id": 80}, "organization": {"id": 145}, "project": {"owner": {"id": 781}, "assignee": {"id": 800}, "organization": {"id": 979}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 286}, "user": {"role": null}}}, "resource": {"id": 333, "owner": {"id": 431}, "assignee": {"id": 534}, "organization": {"id": 667}, "project": {"owner": {"id": 758}, "assignee": {"id": 61}, "organization": {"id": 938}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 372, "owner": {"id": 496}, "assignee": {"id": 83}, "organization": {"id": 611}, "project": {"owner": {"id": 722}, "assignee": {"id": 855}, "organization": {"id": 963}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 51}, "assignee": {"id": 533}, "organization": {"id": 115}, "project": {"owner": {"id": 791}, "assignee": {"id": 870}, "organization": {"id": 967}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 463}, "assignee": {"id": 58}, "organization": {"id": 194}, "project": {"owner": {"id": 759}, "assignee": {"id": 875}, "organization": {"id": 929}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 29}, "assignee": {"id": 544}, "organization": {"id": 617}, "project": {"owner": {"id": 716}, "assignee": {"id": 817}, "organization": {"id": 979}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 318, "owner": {"id": 454}, "assignee": {"id": 52}, "organization": {"id": 684}, "project": {"owner": {"id": 776}, "assignee": {"id": 862}, "organization": {"id": 915}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 57}, "assignee": {"id": 501}, "organization": {"id": 198}, "project": {"owner": {"id": 719}, "assignee": {"id": 889}, "organization": {"id": 934}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 432}, "assignee": {"id": 91}, "organization": {"id": 125}, "project": {"owner": {"id": 739}, "assignee": {"id": 851}, "organization": {"id": 961}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 36}, "assignee": {"id": 593}, "organization": {"id": 672}, "project": {"owner": {"id": 770}, "assignee": {"id": 848}, "organization": {"id": 912}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 172, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 417}, "assignee": {"id": 1}, "organization": {"id": 612}, "project": {"owner": {"id": 717}, "assignee": {"id": 803}, "organization": {"id": 985}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 343, "owner": {"id": 97}, "assignee": {"id": 561}, "organization": {"id": 174}, "project": {"owner": {"id": 786}, "assignee": {"id": 877}, "organization": {"id": 940}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 14}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 497}, "assignee": {"id": 14}, "organization": {"id": 169}, "project": {"owner": {"id": 739}, "assignee": {"id": 843}, "organization": {"id": 906}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 62}, "assignee": {"id": 513}, "organization": {"id": 652}, "project": {"owner": {"id": 719}, "assignee": {"id": 810}, "organization": {"id": 914}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 414}, "assignee": {"id": 66}, "organization": {"id": 658}, "project": {"owner": {"id": 709}, "assignee": {"id": 863}, "organization": {"id": 998}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 84}, "assignee": {"id": 508}, "organization": {"id": 159}, "project": {"owner": {"id": 786}, "assignee": {"id": 825}, "organization": {"id": 941}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 423}, "assignee": {"id": 24}, "organization": {"id": 120}, "project": {"owner": {"id": 717}, "assignee": {"id": 884}, "organization": {"id": 957}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 370, "owner": {"id": 63}, "assignee": {"id": 527}, "organization": {"id": 628}, "project": {"owner": {"id": 745}, "assignee": {"id": 809}, "organization": {"id": 995}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"id": 396, "owner": {"id": 479}, "assignee": {"id": 55}, "organization": {"id": 690}, "project": {"owner": {"id": 751}, "assignee": {"id": 814}, "organization": {"id": 928}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 190, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 59}, "assignee": {"id": 540}, "organization": {"id": 190}, "project": {"owner": {"id": 768}, "assignee": {"id": 869}, "organization": {"id": 939}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 418}, "assignee": {"id": 28}, "organization": {"id": 157}, "project": {"owner": {"id": 762}, "assignee": {"id": 859}, "organization": {"id": 902}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 31}, "assignee": {"id": 552}, "organization": {"id": 685}, "project": {"owner": {"id": 754}, "assignee": {"id": 809}, "organization": {"id": 955}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 384, "owner": {"id": 410}, "assignee": {"id": 31}, "organization": {"id": 655}, "project": {"owner": {"id": 782}, "assignee": {"id": 840}, "organization": {"id": 922}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 88}, "assignee": {"id": 505}, "organization": {"id": 122}, "project": {"owner": {"id": 794}, "assignee": {"id": 874}, "organization": {"id": 923}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"id": 312, "owner": {"id": 440}, "assignee": {"id": 44}, "organization": {"id": 185}, "project": {"owner": {"id": 740}, "assignee": {"id": 886}, "organization": {"id": 990}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 47}, "assignee": {"id": 566}, "organization": {"id": 604}, "project": {"owner": {"id": 710}, "assignee": {"id": 806}, "organization": {"id": 949}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 139, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"id": 332, "owner": {"id": 430}, "assignee": {"id": 65}, "organization": {"id": 625}, "project": {"owner": {"id": 738}, "assignee": {"id": 847}, "organization": {"id": 968}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"id": 345, "owner": {"id": 70}, "assignee": {"id": 560}, "organization": {"id": 152}, "project": {"owner": {"id": 727}, "assignee": {"id": 883}, "organization": {"id": 962}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 149, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 455}, "assignee": {"id": 34}, "organization": {"id": 149}, "project": {"owner": {"id": 718}, "assignee": {"id": 885}, "organization": {"id": 923}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 34}, "assignee": {"id": 535}, "organization": {"id": 694}, "project": {"owner": {"id": 799}, "assignee": {"id": 866}, "organization": {"id": 966}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 367, "owner": {"id": 451}, "assignee": {"id": 71}, "organization": {"id": 641}, "project": {"owner": {"id": 776}, "assignee": {"id": 893}, "organization": {"id": 982}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 356, "owner": {"id": 76}, "assignee": {"id": 591}, "organization": {"id": 155}, "project": {"owner": {"id": 735}, "assignee": {"id": 852}, "organization": {"id": 953}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 481}, "assignee": {"id": 2}, "organization": {"id": 134}, "project": {"owner": {"id": 758}, "assignee": {"id": 898}, "organization": {"id": 972}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 372, "owner": {"id": 90}, "assignee": {"id": 590}, "organization": {"id": 635}, "project": {"owner": {"id": 770}, "assignee": {"id": 873}, "organization": {"id": 963}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 431}, "assignee": {"id": 61}, "organization": {"id": 614}, "project": {"owner": {"id": 753}, "assignee": {"id": 805}, "organization": {"id": 909}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 70}, "assignee": {"id": 561}, "organization": {"id": 192}, "project": {"owner": {"id": 793}, "assignee": {"id": 875}, "organization": {"id": 953}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 349, "owner": {"id": 469}, "assignee": {"id": 56}, "organization": {"id": 115}, "project": {"owner": {"id": 797}, "assignee": {"id": 871}, "organization": {"id": 948}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 356, "owner": {"id": 76}, "assignee": {"id": 548}, "organization": {"id": 641}, "project": {"owner": {"id": 770}, "assignee": {"id": 819}, "organization": {"id": 969}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 330, "owner": {"id": 438}, "assignee": {"id": 97}, "organization": {"id": 688}, "project": {"owner": {"id": 725}, "assignee": {"id": 807}, "organization": {"id": 986}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 391, "owner": {"id": 69}, "assignee": {"id": 594}, "organization": {"id": 168}, "project": {"owner": {"id": 713}, "assignee": {"id": 849}, "organization": {"id": 959}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 14, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"id": 337, "owner": {"id": 446}, "assignee": {"id": 14}, "organization": {"id": 164}, "project": {"owner": {"id": 796}, "assignee": {"id": 890}, "organization": {"id": 926}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": {"id": 166, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 394, "owner": {"id": 93}, "assignee": {"id": 528}, "organization": {"id": 623}, "project": {"owner": {"id": 704}, "assignee": {"id": 867}, "organization": {"id": 930}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 81, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"id": 321, "owner": {"id": 446}, "assignee": {"id": 81}, "organization": {"id": 655}, "project": {"owner": {"id": 722}, "assignee": {"id": 816}, "organization": {"id": 970}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 27}, "assignee": {"id": 524}, "organization": {"id": 179}, "project": {"owner": {"id": 737}, "assignee": {"id": 884}, "organization": {"id": 966}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 224}, "user": {"role": "worker"}}}, "resource": {"id": 305, "owner": {"id": 468}, "assignee": {"id": 85}, "organization": {"id": 175}, "project": {"owner": {"id": 725}, "assignee": {"id": 822}, "organization": {"id": 917}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 383, "owner": {"id": 55}, "assignee": {"id": 536}, "organization": {"id": 647}, "project": {"owner": {"id": 737}, "assignee": {"id": 842}, "organization": {"id": 987}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 492}, "assignee": {"id": 70}, "organization": {"id": 654}, "project": {"owner": {"id": 721}, "assignee": {"id": 893}, "organization": {"id": 946}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 165, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 54}, "assignee": {"id": 574}, "organization": {"id": 165}, "project": {"owner": {"id": 737}, "assignee": {"id": 847}, "organization": {"id": 942}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 286}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 449}, "assignee": {"id": 78}, "organization": {"id": 177}, "project": {"owner": {"id": 765}, "assignee": {"id": 813}, "organization": {"id": 953}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 205}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 75}, "assignee": {"id": 547}, "organization": {"id": 683}, "project": {"owner": {"id": 733}, "assignee": {"id": 837}, "organization": {"id": 941}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 361, "owner": {"id": 428}, "assignee": {"id": 63}, "organization": {"id": 655}, "project": {"owner": {"id": 760}, "assignee": {"id": 822}, "organization": {"id": 929}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"id": 372, "owner": {"id": 54}, "assignee": {"id": 520}, "organization": {"id": 169}, "project": {"owner": {"id": 799}, "assignee": {"id": 826}, "organization": {"id": 922}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 300, "owner": {"id": 455}, "assignee": {"id": 86}, "organization": {"id": 118}, "project": {"owner": {"id": 778}, "assignee": {"id": 888}, "organization": {"id": 939}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 13}, "assignee": {"id": 529}, "organization": {"id": 659}, "project": {"owner": {"id": 702}, "assignee": {"id": 879}, "organization": {"id": 951}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 408}, "assignee": {"id": 6}, "organization": {"id": 693}, "project": {"owner": {"id": 744}, "assignee": {"id": 848}, "organization": {"id": 933}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 17}, "assignee": {"id": 551}, "organization": {"id": 140}, "project": {"owner": {"id": 720}, "assignee": {"id": 886}, "organization": {"id": 994}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 297}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 405}, "assignee": {"id": 59}, "organization": {"id": 124}, "project": {"owner": {"id": 777}, "assignee": {"id": 862}, "organization": {"id": 902}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 332, "owner": {"id": 70}, "assignee": {"id": 523}, "organization": {"id": 629}, "project": {"owner": {"id": 758}, "assignee": {"id": 824}, "organization": {"id": 954}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 461}, "assignee": {"id": 21}, "organization": {"id": 629}, "project": {"owner": {"id": 754}, "assignee": {"id": 891}, "organization": {"id": 909}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 122, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 34}, "assignee": {"id": 542}, "organization": {"id": 122}, "project": {"owner": {"id": 793}, "assignee": {"id": 827}, "organization": {"id": 976}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 443}, "assignee": {"id": 88}, "organization": {"id": 176}, "project": {"owner": {"id": 770}, "assignee": {"id": 867}, "organization": {"id": 978}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 325, "owner": {"id": 80}, "assignee": {"id": 565}, "organization": {"id": 646}, "project": {"owner": {"id": 703}, "assignee": {"id": 864}, "organization": {"id": 910}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 393, "owner": {"id": 416}, "assignee": {"id": 64}, "organization": {"id": 647}, "project": {"owner": {"id": 768}, "assignee": {"id": 857}, "organization": {"id": 949}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 196, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 61}, "assignee": {"id": 577}, "organization": {"id": 196}, "project": {"owner": {"id": 724}, "assignee": {"id": 818}, "organization": {"id": 905}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"id": 310, "owner": {"id": 410}, "assignee": {"id": 68}, "organization": {"id": 101}, "project": {"owner": {"id": 756}, "assignee": {"id": 817}, "organization": {"id": 960}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 49}, "assignee": {"id": 599}, "organization": {"id": 604}, "project": {"owner": {"id": 714}, "assignee": {"id": 856}, "organization": {"id": 950}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 281}, "user": {"role": "worker"}}}, "resource": {"id": 303, "owner": {"id": 466}, "assignee": {"id": 65}, "organization": {"id": 623}, "project": {"owner": {"id": 713}, "assignee": {"id": 815}, "organization": {"id": 929}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"id": 321, "owner": {"id": 20}, "assignee": {"id": 595}, "organization": {"id": 151}, "project": {"owner": {"id": 712}, "assignee": {"id": 893}, "organization": {"id": 980}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 25, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 390, "owner": {"id": 486}, "assignee": {"id": 25}, "organization": {"id": 105}, "project": {"owner": {"id": 771}, "assignee": {"id": 879}, "organization": {"id": 926}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 56}, "assignee": {"id": 503}, "organization": {"id": 698}, "project": {"owner": {"id": 731}, "assignee": {"id": 881}, "organization": {"id": 979}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 244}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 468}, "assignee": {"id": 46}, "organization": {"id": 609}, "project": {"owner": {"id": 751}, "assignee": {"id": 821}, "organization": {"id": 989}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"id": 333, "owner": {"id": 65}, "assignee": {"id": 530}, "organization": {"id": 162}, "project": {"owner": {"id": 766}, "assignee": {"id": 801}, "organization": {"id": 915}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 318, "owner": {"id": 439}, "assignee": {"id": 27}, "organization": {"id": 189}, "project": {"owner": {"id": 785}, "assignee": {"id": 850}, "organization": {"id": 960}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 337, "owner": {"id": 61}, "assignee": {"id": 528}, "organization": {"id": 640}, "project": {"owner": {"id": 716}, "assignee": {"id": 803}, "organization": {"id": 930}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 435}, "assignee": {"id": 60}, "organization": {"id": 633}, "project": {"owner": {"id": 716}, "assignee": {"id": 845}, "organization": {"id": 939}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 290}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 28}, "assignee": {"id": 550}, "organization": {"id": 166}, "project": {"owner": {"id": 703}, "assignee": {"id": 831}, "organization": {"id": 990}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 451}, "assignee": {"id": 25}, "organization": {"id": 182}, "project": {"owner": {"id": 741}, "assignee": {"id": 826}, "organization": {"id": 939}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 150, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 77}, "assignee": {"id": 524}, "organization": {"id": 659}, "project": {"owner": {"id": 776}, "assignee": {"id": 809}, "organization": {"id": 987}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 188, "owner": {"id": 242}, "user": {"role": "maintainer"}}}, "resource": {"id": 300, "owner": {"id": 407}, "assignee": {"id": 71}, "organization": {"id": 688}, "project": {"owner": {"id": 705}, "assignee": {"id": 826}, "organization": {"id": 968}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 386, "owner": {"id": 36}, "assignee": {"id": 589}, "organization": {"id": 128}, "project": {"owner": {"id": 785}, "assignee": {"id": 838}, "organization": {"id": 917}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 107, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 496}, "assignee": {"id": 3}, "organization": {"id": 107}, "project": {"owner": {"id": 799}, "assignee": {"id": 821}, "organization": {"id": 938}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"id": 372, "owner": {"id": 38}, "assignee": {"id": 561}, "organization": {"id": 630}, "project": {"owner": {"id": 721}, "assignee": {"id": 888}, "organization": {"id": 983}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 363, "owner": {"id": 432}, "assignee": {"id": 26}, "organization": {"id": 654}, "project": {"owner": {"id": 724}, "assignee": {"id": 832}, "organization": {"id": 912}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"id": 301, "owner": {"id": 91}, "assignee": {"id": 545}, "organization": {"id": 103}, "project": {"owner": {"id": 795}, "assignee": {"id": 856}, "organization": {"id": 911}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"id": 326, "owner": {"id": 443}, "assignee": {"id": 6}, "organization": {"id": 151}, "project": {"owner": {"id": 760}, "assignee": {"id": 874}, "organization": {"id": 939}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 349, "owner": {"id": 40}, "assignee": {"id": 509}, "organization": {"id": 697}, "project": {"owner": {"id": 749}, "assignee": {"id": 871}, "organization": {"id": 961}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"id": 374, "owner": {"id": 435}, "assignee": {"id": 93}, "organization": {"id": 619}, "project": {"owner": {"id": 797}, "assignee": {"id": 894}, "organization": {"id": 949}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"id": 398, "owner": {"id": 36}, "assignee": {"id": 577}, "organization": {"id": 148}, "project": {"owner": {"id": 725}, "assignee": {"id": 828}, "organization": {"id": 976}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 307, "owner": {"id": 499}, "assignee": {"id": 25}, "organization": {"id": 102}, "project": {"owner": {"id": 796}, "assignee": {"id": 887}, "organization": {"id": 914}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"id": 308, "owner": {"id": 52}, "assignee": {"id": 543}, "organization": {"id": 692}, "project": {"owner": {"id": 764}, "assignee": {"id": 819}, "organization": {"id": 917}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 214}, "user": {"role": null}}}, "resource": {"id": 357, "owner": {"id": 408}, "assignee": {"id": 2}, "organization": {"id": 613}, "project": {"owner": {"id": 739}, "assignee": {"id": 856}, "organization": {"id": 941}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"id": 370, "owner": {"id": 14}, "assignee": {"id": 593}, "organization": {"id": 135}, "project": {"owner": {"id": 746}, "assignee": {"id": 833}, "organization": {"id": 958}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 38}, "user": {"role": "owner"}}}, "resource": {"id": 391, "owner": {"id": 481}, "assignee": {"id": 505}, "organization": {"id": 120}, "project": {"owner": {"id": 735}, "assignee": {"id": 804}, "organization": {"id": 913}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 37}, "assignee": {"id": 551}, "organization": {"id": 618}, "project": {"owner": {"id": 794}, "assignee": {"id": 814}, "organization": {"id": 971}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 345, "owner": {"id": 451}, "assignee": {"id": 533}, "organization": {"id": 662}, "project": {"owner": {"id": 795}, "assignee": {"id": 837}, "organization": {"id": 948}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 228}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 73}, "assignee": {"id": 525}, "organization": {"id": 119}, "project": {"owner": {"id": 720}, "assignee": {"id": 827}, "organization": {"id": 929}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 81, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 426}, "assignee": {"id": 555}, "organization": {"id": 162}, "project": {"owner": {"id": 713}, "assignee": {"id": 871}, "organization": {"id": 972}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 373, "owner": {"id": 95}, "assignee": {"id": 577}, "organization": {"id": 605}, "project": {"owner": {"id": 738}, "assignee": {"id": 827}, "organization": {"id": 937}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 123, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 488}, "assignee": {"id": 594}, "organization": {"id": 669}, "project": {"owner": {"id": 737}, "assignee": {"id": 823}, "organization": {"id": 908}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 78}, "assignee": {"id": 585}, "organization": {"id": 105}, "project": {"owner": {"id": 720}, "assignee": {"id": 846}, "organization": {"id": 964}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 465}, "assignee": {"id": 563}, "organization": {"id": 196}, "project": {"owner": {"id": 797}, "assignee": {"id": 818}, "organization": {"id": 977}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 244}, "user": {"role": null}}}, "resource": {"id": 365, "owner": {"id": 31}, "assignee": {"id": 536}, "organization": {"id": 637}, "project": {"owner": {"id": 789}, "assignee": {"id": 813}, "organization": {"id": 960}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 248}, "user": {"role": "supervisor"}}}, "resource": {"id": 379, "owner": {"id": 443}, "assignee": {"id": 526}, "organization": {"id": 692}, "project": {"owner": {"id": 724}, "assignee": {"id": 823}, "organization": {"id": 949}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"id": 374, "owner": {"id": 469}, "assignee": {"id": 16}, "organization": {"id": 186}, "project": {"owner": {"id": 741}, "assignee": {"id": 847}, "organization": {"id": 941}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 202}, "user": {"role": "worker"}}}, "resource": {"id": 397, "owner": {"id": 433}, "assignee": {"id": 530}, "organization": {"id": 112}, "project": {"owner": {"id": 784}, "assignee": {"id": 823}, "organization": {"id": 973}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 101, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 494}, "assignee": {"id": 89}, "organization": {"id": 682}, "project": {"owner": {"id": 700}, "assignee": {"id": 842}, "organization": {"id": 982}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"id": 355, "owner": {"id": 404}, "assignee": {"id": 593}, "organization": {"id": 652}, "project": {"owner": {"id": 751}, "assignee": {"id": 846}, "organization": {"id": 973}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 172, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 443}, "assignee": {"id": 95}, "organization": {"id": 172}, "project": {"owner": {"id": 754}, "assignee": {"id": 806}, "organization": {"id": 941}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 119, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 380, "owner": {"id": 472}, "assignee": {"id": 556}, "organization": {"id": 119}, "project": {"owner": {"id": 739}, "assignee": {"id": 842}, "organization": {"id": 970}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 470}, "assignee": {"id": 73}, "organization": {"id": 610}, "project": {"owner": {"id": 718}, "assignee": {"id": 855}, "organization": {"id": 927}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 451}, "assignee": {"id": 565}, "organization": {"id": 667}, "project": {"owner": {"id": 762}, "assignee": {"id": 864}, "organization": {"id": 993}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 345, "owner": {"id": 406}, "assignee": {"id": 89}, "organization": {"id": 169}, "project": {"owner": {"id": 778}, "assignee": {"id": 888}, "organization": {"id": 915}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 33}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 478}, "assignee": {"id": 557}, "organization": {"id": 176}, "project": {"owner": {"id": 783}, "assignee": {"id": 884}, "organization": {"id": 904}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"id": 389, "owner": {"id": 492}, "assignee": {"id": 55}, "organization": {"id": 687}, "project": {"owner": {"id": 759}, "assignee": {"id": 853}, "organization": {"id": 975}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 416}, "assignee": {"id": 508}, "organization": {"id": 658}, "project": {"owner": {"id": 720}, "assignee": {"id": 863}, "organization": {"id": 904}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 488}, "assignee": {"id": 96}, "organization": {"id": 135}, "project": {"owner": {"id": 703}, "assignee": {"id": 808}, "organization": {"id": 995}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 374, "owner": {"id": 432}, "assignee": {"id": 510}, "organization": {"id": 146}, "project": {"owner": {"id": 761}, "assignee": {"id": 878}, "organization": {"id": 905}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 332, "owner": {"id": 457}, "assignee": {"id": 12}, "organization": {"id": 632}, "project": {"owner": {"id": 778}, "assignee": {"id": 870}, "organization": {"id": 997}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 488}, "assignee": {"id": 596}, "organization": {"id": 645}, "project": {"owner": {"id": 763}, "assignee": {"id": 844}, "organization": {"id": 909}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 387, "owner": {"id": 433}, "assignee": {"id": 96}, "organization": {"id": 182}, "project": {"owner": {"id": 765}, "assignee": {"id": 805}, "organization": {"id": 936}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"id": 334, "owner": {"id": 482}, "assignee": {"id": 558}, "organization": {"id": 103}, "project": {"owner": {"id": 706}, "assignee": {"id": 806}, "organization": {"id": 908}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 277}, "user": {"role": null}}}, "resource": {"id": 328, "owner": {"id": 436}, "assignee": {"id": 54}, "organization": {"id": 656}, "project": {"owner": {"id": 752}, "assignee": {"id": 846}, "organization": {"id": 998}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 437}, "assignee": {"id": 527}, "organization": {"id": 636}, "project": {"owner": {"id": 750}, "assignee": {"id": 807}, "organization": {"id": 954}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 328, "owner": {"id": 476}, "assignee": {"id": 11}, "organization": {"id": 191}, "project": {"owner": {"id": 703}, "assignee": {"id": 867}, "organization": {"id": 991}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 407}, "assignee": {"id": 537}, "organization": {"id": 198}, "project": {"owner": {"id": 794}, "assignee": {"id": 899}, "organization": {"id": 978}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"id": 387, "owner": {"id": 436}, "assignee": {"id": 98}, "organization": {"id": 634}, "project": {"owner": {"id": 782}, "assignee": {"id": 872}, "organization": {"id": 990}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 469}, "assignee": {"id": 526}, "organization": {"id": 680}, "project": {"owner": {"id": 725}, "assignee": {"id": 859}, "organization": {"id": 926}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"id": 308, "owner": {"id": 454}, "assignee": {"id": 65}, "organization": {"id": 178}, "project": {"owner": {"id": 737}, "assignee": {"id": 839}, "organization": {"id": 900}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 419}, "assignee": {"id": 544}, "organization": {"id": 132}, "project": {"owner": {"id": 728}, "assignee": {"id": 848}, "organization": {"id": 911}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 493}, "assignee": {"id": 75}, "organization": {"id": 693}, "project": {"owner": {"id": 749}, "assignee": {"id": 899}, "organization": {"id": 912}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 378, "owner": {"id": 443}, "assignee": {"id": 557}, "organization": {"id": 642}, "project": {"owner": {"id": 741}, "assignee": {"id": 861}, "organization": {"id": 936}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 123, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"id": 359, "owner": {"id": 454}, "assignee": {"id": 35}, "organization": {"id": 123}, "project": {"owner": {"id": 790}, "assignee": {"id": 846}, "organization": {"id": 941}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"id": 323, "owner": {"id": 436}, "assignee": {"id": 554}, "organization": {"id": 111}, "project": {"owner": {"id": 780}, "assignee": {"id": 808}, "organization": {"id": 969}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"id": 374, "owner": {"id": 415}, "assignee": {"id": 83}, "organization": {"id": 617}, "project": {"owner": {"id": 797}, "assignee": {"id": 804}, "organization": {"id": 947}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 444}, "assignee": {"id": 587}, "organization": {"id": 631}, "project": {"owner": {"id": 708}, "assignee": {"id": 863}, "organization": {"id": 939}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 245}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 410}, "assignee": {"id": 15}, "organization": {"id": 136}, "project": {"owner": {"id": 704}, "assignee": {"id": 828}, "organization": {"id": 946}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 128, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 494}, "assignee": {"id": 532}, "organization": {"id": 128}, "project": {"owner": {"id": 762}, "assignee": {"id": 891}, "organization": {"id": 920}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 189, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"id": 380, "owner": {"id": 448}, "assignee": {"id": 41}, "organization": {"id": 691}, "project": {"owner": {"id": 769}, "assignee": {"id": 821}, "organization": {"id": 981}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 131, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 417}, "assignee": {"id": 532}, "organization": {"id": 642}, "project": {"owner": {"id": 736}, "assignee": {"id": 877}, "organization": {"id": 955}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 343, "owner": {"id": 477}, "assignee": {"id": 80}, "organization": {"id": 121}, "project": {"owner": {"id": 734}, "assignee": {"id": 831}, "organization": {"id": 939}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"id": 337, "owner": {"id": 416}, "assignee": {"id": 533}, "organization": {"id": 126}, "project": {"owner": {"id": 720}, "assignee": {"id": 885}, "organization": {"id": 940}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 425}, "assignee": {"id": 55}, "organization": {"id": 688}, "project": {"owner": {"id": 720}, "assignee": {"id": 842}, "organization": {"id": 923}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 128, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 309, "owner": {"id": 464}, "assignee": {"id": 531}, "organization": {"id": 636}, "project": {"owner": {"id": 760}, "assignee": {"id": 819}, "organization": {"id": 983}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 336, "owner": {"id": 495}, "assignee": {"id": 73}, "organization": {"id": 191}, "project": {"owner": {"id": 701}, "assignee": {"id": 879}, "organization": {"id": 927}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 408}, "assignee": {"id": 566}, "organization": {"id": 137}, "project": {"owner": {"id": 758}, "assignee": {"id": 829}, "organization": {"id": 971}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 409}, "assignee": {"id": 34}, "organization": {"id": 690}, "project": {"owner": {"id": 749}, "assignee": {"id": 816}, "organization": {"id": 985}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 149, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 422}, "assignee": {"id": 530}, "organization": {"id": 645}, "project": {"owner": {"id": 781}, "assignee": {"id": 820}, "organization": {"id": 944}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 154, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 330, "owner": {"id": 461}, "assignee": {"id": 92}, "organization": {"id": 154}, "project": {"owner": {"id": 785}, "assignee": {"id": 837}, "organization": {"id": 959}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 451}, "assignee": {"id": 540}, "organization": {"id": 124}, "project": {"owner": {"id": 721}, "assignee": {"id": 806}, "organization": {"id": 965}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 410}, "assignee": {"id": 13}, "organization": {"id": 635}, "project": {"owner": {"id": 712}, "assignee": {"id": 838}, "organization": {"id": 960}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 455}, "assignee": {"id": 587}, "organization": {"id": 616}, "project": {"owner": {"id": 773}, "assignee": {"id": 822}, "organization": {"id": 925}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 426}, "assignee": {"id": 17}, "organization": {"id": 115}, "project": {"owner": {"id": 709}, "assignee": {"id": 872}, "organization": {"id": 957}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"id": 326, "owner": {"id": 449}, "assignee": {"id": 566}, "organization": {"id": 110}, "project": {"owner": {"id": 729}, "assignee": {"id": 840}, "organization": {"id": 903}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 335, "owner": {"id": 463}, "assignee": {"id": 79}, "organization": {"id": 688}, "project": {"owner": {"id": 769}, "assignee": {"id": 830}, "organization": {"id": 929}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"id": 301, "owner": {"id": 409}, "assignee": {"id": 587}, "organization": {"id": 664}, "project": {"owner": {"id": 796}, "assignee": {"id": 889}, "organization": {"id": 937}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 105, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 414}, "assignee": {"id": 21}, "organization": {"id": 105}, "project": {"owner": {"id": 749}, "assignee": {"id": 835}, "organization": {"id": 934}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 460}, "assignee": {"id": 513}, "organization": {"id": 173}, "project": {"owner": {"id": 754}, "assignee": {"id": 841}, "organization": {"id": 944}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 93, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"id": 336, "owner": {"id": 403}, "assignee": {"id": 93}, "organization": {"id": 670}, "project": {"owner": {"id": 770}, "assignee": {"id": 858}, "organization": {"id": 945}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 488}, "assignee": {"id": 555}, "organization": {"id": 625}, "project": {"owner": {"id": 716}, "assignee": {"id": 836}, "organization": {"id": 941}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"id": 387, "owner": {"id": 474}, "assignee": {"id": 79}, "organization": {"id": 136}, "project": {"owner": {"id": 717}, "assignee": {"id": 810}, "organization": {"id": 929}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 205}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 420}, "assignee": {"id": 509}, "organization": {"id": 151}, "project": {"owner": {"id": 719}, "assignee": {"id": 892}, "organization": {"id": 979}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 397, "owner": {"id": 424}, "assignee": {"id": 3}, "organization": {"id": 615}, "project": {"owner": {"id": 766}, "assignee": {"id": 874}, "organization": {"id": 996}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 304, "owner": {"id": 460}, "assignee": {"id": 520}, "organization": {"id": 620}, "project": {"owner": {"id": 765}, "assignee": {"id": 865}, "organization": {"id": 917}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 404}, "assignee": {"id": 81}, "organization": {"id": 138}, "project": {"owner": {"id": 748}, "assignee": {"id": 879}, "organization": {"id": 993}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": {"id": 195, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 489}, "assignee": {"id": 530}, "organization": {"id": 195}, "project": {"owner": {"id": 748}, "assignee": {"id": 893}, "organization": {"id": 931}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 308, "owner": {"id": 484}, "assignee": {"id": 62}, "organization": {"id": 677}, "project": {"owner": {"id": 723}, "assignee": {"id": 874}, "organization": {"id": 946}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 193, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 470}, "assignee": {"id": 576}, "organization": {"id": 691}, "project": {"owner": {"id": 750}, "assignee": {"id": 835}, "organization": {"id": 903}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 355, "owner": {"id": 413}, "assignee": {"id": 89}, "organization": {"id": 123}, "project": {"owner": {"id": 774}, "assignee": {"id": 823}, "organization": {"id": 990}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"id": 378, "owner": {"id": 473}, "assignee": {"id": 596}, "organization": {"id": 101}, "project": {"owner": {"id": 711}, "assignee": {"id": 882}, "organization": {"id": 973}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 388, "owner": {"id": 459}, "assignee": {"id": 86}, "organization": {"id": 678}, "project": {"owner": {"id": 707}, "assignee": {"id": 832}, "organization": {"id": 936}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 437}, "assignee": {"id": 596}, "organization": {"id": 692}, "project": {"owner": {"id": 764}, "assignee": {"id": 898}, "organization": {"id": 976}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 335, "owner": {"id": 406}, "assignee": {"id": 40}, "organization": {"id": 123}, "project": {"owner": {"id": 794}, "assignee": {"id": 820}, "organization": {"id": 955}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"id": 318, "owner": {"id": 402}, "assignee": {"id": 500}, "organization": {"id": 117}, "project": {"owner": {"id": 717}, "assignee": {"id": 814}, "organization": {"id": 987}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"id": 379, "owner": {"id": 499}, "assignee": {"id": 83}, "organization": {"id": 615}, "project": {"owner": {"id": 761}, "assignee": {"id": 807}, "organization": {"id": 916}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 372, "owner": {"id": 462}, "assignee": {"id": 518}, "organization": {"id": 695}, "project": {"owner": {"id": 714}, "assignee": {"id": 804}, "organization": {"id": 937}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 327, "owner": {"id": 445}, "assignee": {"id": 21}, "organization": {"id": 125}, "project": {"owner": {"id": 722}, "assignee": {"id": 872}, "organization": {"id": 918}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 446}, "assignee": {"id": 566}, "organization": {"id": 182}, "project": {"owner": {"id": 795}, "assignee": {"id": 857}, "organization": {"id": 959}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"id": 341, "owner": {"id": 408}, "assignee": {"id": 54}, "organization": {"id": 698}, "project": {"owner": {"id": 727}, "assignee": {"id": 848}, "organization": {"id": 932}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 327, "owner": {"id": 451}, "assignee": {"id": 566}, "organization": {"id": 607}, "project": {"owner": {"id": 755}, "assignee": {"id": 866}, "organization": {"id": 950}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 357, "owner": {"id": 499}, "assignee": {"id": 68}, "organization": {"id": 170}, "project": {"owner": {"id": 775}, "assignee": {"id": 874}, "organization": {"id": 984}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"id": 303, "owner": {"id": 415}, "assignee": {"id": 567}, "organization": {"id": 182}, "project": {"owner": {"id": 758}, "assignee": {"id": 881}, "organization": {"id": 987}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 449}, "assignee": {"id": 82}, "organization": {"id": 681}, "project": {"owner": {"id": 756}, "assignee": {"id": 897}, "organization": {"id": 998}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 452}, "assignee": {"id": 545}, "organization": {"id": 624}, "project": {"owner": {"id": 765}, "assignee": {"id": 806}, "organization": {"id": 927}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 14}, "user": {"role": "owner"}}}, "resource": {"id": 334, "owner": {"id": 404}, "assignee": {"id": 14}, "organization": {"id": 113}, "project": {"owner": {"id": 775}, "assignee": {"id": 850}, "organization": {"id": 914}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 478}, "assignee": {"id": 558}, "organization": {"id": 104}, "project": {"owner": {"id": 781}, "assignee": {"id": 809}, "organization": {"id": 902}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"id": 379, "owner": {"id": 466}, "assignee": {"id": 94}, "organization": {"id": 676}, "project": {"owner": {"id": 708}, "assignee": {"id": 891}, "organization": {"id": 905}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 448}, "assignee": {"id": 504}, "organization": {"id": 689}, "project": {"owner": {"id": 747}, "assignee": {"id": 836}, "organization": {"id": 934}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 160, "owner": {"id": 276}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 401}, "assignee": {"id": 58}, "organization": {"id": 160}, "project": {"owner": {"id": 735}, "assignee": {"id": 831}, "organization": {"id": 931}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 150, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 355, "owner": {"id": 418}, "assignee": {"id": 512}, "organization": {"id": 150}, "project": {"owner": {"id": 797}, "assignee": {"id": 802}, "organization": {"id": 989}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 416}, "assignee": {"id": 39}, "organization": {"id": 618}, "project": {"owner": {"id": 785}, "assignee": {"id": 871}, "organization": {"id": 904}}}} } -test_scope_VIEW_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:annotations", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"id": 331, "owner": {"id": 491}, "assignee": {"id": 550}, "organization": {"id": 667}, "project": {"owner": {"id": 711}, "assignee": {"id": 894}, "organization": {"id": 914}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 238}, "user": {"role": "supervisor"}}}, "resource": {"id": 330, "owner": {"id": 479}, "assignee": {"id": 8}, "organization": {"id": 194}, "project": {"owner": {"id": 705}, "assignee": {"id": 857}, "organization": {"id": 958}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": null}, "resource": {"id": 334, "owner": {"id": 404}, "assignee": {"id": 541}, "organization": {"id": 625}, "project": {"owner": {"id": 31}, "assignee": {"id": 839}, "organization": {"id": 937}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 497}, "assignee": {"id": 28}, "organization": {"id": 602}, "project": {"owner": {"id": 719}, "assignee": {"id": 874}, "organization": {"id": 931}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": null}, "resource": {"id": 386, "owner": {"id": 465}, "assignee": {"id": 587}, "organization": {"id": 615}, "project": {"owner": {"id": 69}, "assignee": {"id": 844}, "organization": {"id": 914}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 372, "owner": {"id": 459}, "assignee": {"id": 76}, "organization": {"id": 105}, "project": {"owner": {"id": 748}, "assignee": {"id": 868}, "organization": {"id": 935}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": null}, "resource": {"id": 355, "owner": {"id": 440}, "assignee": {"id": 574}, "organization": {"id": 678}, "project": {"owner": {"id": 92}, "assignee": {"id": 841}, "organization": {"id": 904}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"id": 338, "owner": {"id": 458}, "assignee": {"id": 57}, "organization": {"id": 695}, "project": {"owner": {"id": 702}, "assignee": {"id": 899}, "organization": {"id": 923}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": null}, "resource": {"id": 315, "owner": {"id": 443}, "assignee": {"id": 587}, "organization": {"id": 634}, "project": {"owner": {"id": 4}, "assignee": {"id": 844}, "organization": {"id": 949}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 374, "owner": {"id": 467}, "assignee": {"id": 17}, "organization": {"id": 117}, "project": {"owner": {"id": 721}, "assignee": {"id": 875}, "organization": {"id": 984}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": null}, "resource": {"id": 327, "owner": {"id": 447}, "assignee": {"id": 518}, "organization": {"id": 670}, "project": {"owner": {"id": 12}, "assignee": {"id": 804}, "organization": {"id": 980}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 225}, "user": {"role": null}}}, "resource": {"id": 363, "owner": {"id": 482}, "assignee": {"id": 97}, "organization": {"id": 666}, "project": {"owner": {"id": 712}, "assignee": {"id": 849}, "organization": {"id": 907}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": null}, "resource": {"id": 303, "owner": {"id": 441}, "assignee": {"id": 509}, "organization": {"id": 610}, "project": {"owner": {"id": 729}, "assignee": {"id": 4}, "organization": {"id": 912}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 478}, "assignee": {"id": 579}, "organization": {"id": 115}, "project": {"owner": {"id": 766}, "assignee": {"id": 890}, "organization": {"id": 999}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": null}, "resource": {"id": 386, "owner": {"id": 435}, "assignee": {"id": 572}, "organization": {"id": 628}, "project": {"owner": {"id": 796}, "assignee": {"id": 31}, "organization": {"id": 967}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 189, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"id": 376, "owner": {"id": 472}, "assignee": {"id": 504}, "organization": {"id": 604}, "project": {"owner": {"id": 728}, "assignee": {"id": 828}, "organization": {"id": 939}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": null}, "resource": {"id": 355, "owner": {"id": 467}, "assignee": {"id": 565}, "organization": {"id": 633}, "project": {"owner": {"id": 787}, "assignee": {"id": 30}, "organization": {"id": 963}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 343, "owner": {"id": 420}, "assignee": {"id": 531}, "organization": {"id": 114}, "project": {"owner": {"id": 739}, "assignee": {"id": 807}, "organization": {"id": 939}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": null}, "resource": {"id": 338, "owner": {"id": 409}, "assignee": {"id": 513}, "organization": {"id": 638}, "project": {"owner": {"id": 704}, "assignee": {"id": 62}, "organization": {"id": 926}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"id": 310, "owner": {"id": 436}, "assignee": {"id": 534}, "organization": {"id": 645}, "project": {"owner": {"id": 753}, "assignee": {"id": 893}, "organization": {"id": 901}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": null}, "resource": {"id": 304, "owner": {"id": 462}, "assignee": {"id": 534}, "organization": {"id": 637}, "project": {"owner": {"id": 760}, "assignee": {"id": 21}, "organization": {"id": 977}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"id": 374, "owner": {"id": 492}, "assignee": {"id": 544}, "organization": {"id": 114}, "project": {"owner": {"id": 716}, "assignee": {"id": 865}, "organization": {"id": 990}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": null}, "resource": {"id": 363, "owner": {"id": 56}, "assignee": {"id": 593}, "organization": {"id": 684}, "project": {"owner": {"id": 750}, "assignee": {"id": 809}, "organization": {"id": 952}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 356, "owner": {"id": 490}, "assignee": {"id": 538}, "organization": {"id": 656}, "project": {"owner": {"id": 760}, "assignee": {"id": 868}, "organization": {"id": 988}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": null}, "resource": {"id": 327, "owner": {"id": 54}, "assignee": {"id": 570}, "organization": {"id": 602}, "project": {"owner": {"id": 729}, "assignee": {"id": 896}, "organization": {"id": 907}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"id": 310, "owner": {"id": 499}, "assignee": {"id": 549}, "organization": {"id": 126}, "project": {"owner": {"id": 736}, "assignee": {"id": 867}, "organization": {"id": 959}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 20, "privilege": "user"}, "organization": null}, "resource": {"id": 300, "owner": {"id": 20}, "assignee": {"id": 568}, "organization": {"id": 635}, "project": {"owner": {"id": 734}, "assignee": {"id": 801}, "organization": {"id": 986}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 102, "owner": {"id": 245}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 430}, "assignee": {"id": 584}, "organization": {"id": 600}, "project": {"owner": {"id": 788}, "assignee": {"id": 895}, "organization": {"id": 932}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": null}, "resource": {"id": 348, "owner": {"id": 75}, "assignee": {"id": 549}, "organization": {"id": 601}, "project": {"owner": {"id": 791}, "assignee": {"id": 846}, "organization": {"id": 948}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"id": 317, "owner": {"id": 457}, "assignee": {"id": 530}, "organization": {"id": 145}, "project": {"owner": {"id": 779}, "assignee": {"id": 890}, "organization": {"id": 949}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": null}, "resource": {"id": 323, "owner": {"id": 65}, "assignee": {"id": 596}, "organization": {"id": 694}, "project": {"owner": {"id": 756}, "assignee": {"id": 828}, "organization": {"id": 902}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 336, "owner": {"id": 424}, "assignee": {"id": 571}, "organization": {"id": 614}, "project": {"owner": {"id": 710}, "assignee": {"id": 837}, "organization": {"id": 921}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": null}, "resource": {"id": 315, "owner": {"id": 413}, "assignee": {"id": 49}, "organization": {"id": 629}, "project": {"owner": {"id": 739}, "assignee": {"id": 853}, "organization": {"id": 960}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 189, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"id": 350, "owner": {"id": 459}, "assignee": {"id": 514}, "organization": {"id": 189}, "project": {"owner": {"id": 798}, "assignee": {"id": 854}, "organization": {"id": 971}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": null}, "resource": {"id": 392, "owner": {"id": 438}, "assignee": {"id": 83}, "organization": {"id": 666}, "project": {"owner": {"id": 740}, "assignee": {"id": 817}, "organization": {"id": 954}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"id": 381, "owner": {"id": 422}, "assignee": {"id": 526}, "organization": {"id": 659}, "project": {"owner": {"id": 776}, "assignee": {"id": 838}, "organization": {"id": 971}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": null}, "resource": {"id": 380, "owner": {"id": 492}, "assignee": {"id": 57}, "organization": {"id": 668}, "project": {"owner": {"id": 753}, "assignee": {"id": 862}, "organization": {"id": 922}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 308, "owner": {"id": 419}, "assignee": {"id": 560}, "organization": {"id": 131}, "project": {"owner": {"id": 729}, "assignee": {"id": 844}, "organization": {"id": 956}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": null}, "resource": {"id": 309, "owner": {"id": 421}, "assignee": {"id": 64}, "organization": {"id": 694}, "project": {"owner": {"id": 718}, "assignee": {"id": 866}, "organization": {"id": 951}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 324, "owner": {"id": 434}, "assignee": {"id": 587}, "organization": {"id": 679}, "project": {"owner": {"id": 765}, "assignee": {"id": 875}, "organization": {"id": 973}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": null}, "resource": {"id": 330, "owner": {"id": 471}, "assignee": {"id": 58}, "organization": {"id": 692}, "project": {"owner": {"id": 768}, "assignee": {"id": 833}, "organization": {"id": 991}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 352, "owner": {"id": 420}, "assignee": {"id": 587}, "organization": {"id": 182}, "project": {"owner": {"id": 755}, "assignee": {"id": 892}, "organization": {"id": 961}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": null}, "resource": {"id": 365, "owner": {"id": 431}, "assignee": {"id": 528}, "organization": {"id": 604}, "project": {"owner": {"id": 776}, "assignee": {"id": 818}, "organization": {"id": 950}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 139, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 384, "owner": {"id": 431}, "assignee": {"id": 565}, "organization": {"id": 616}, "project": {"owner": {"id": 708}, "assignee": {"id": 842}, "organization": {"id": 920}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": null}, "resource": {"id": 371, "owner": {"id": 409}, "assignee": {"id": 573}, "organization": {"id": 621}, "project": {"owner": {"id": 764}, "assignee": {"id": 822}, "organization": {"id": 920}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 245}, "user": {"role": "worker"}}}, "resource": {"id": 317, "owner": {"id": 492}, "assignee": {"id": 574}, "organization": {"id": 101}, "project": {"owner": {"id": 736}, "assignee": {"id": 854}, "organization": {"id": 909}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": null}, "resource": {"id": 307, "owner": {"id": 439}, "assignee": {"id": 595}, "organization": {"id": 627}, "project": {"owner": {"id": 702}, "assignee": {"id": 852}, "organization": {"id": 972}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"id": 368, "owner": {"id": 403}, "assignee": {"id": 509}, "organization": {"id": 677}, "project": {"owner": {"id": 736}, "assignee": {"id": 825}, "organization": {"id": 984}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 3, "privilege": "worker"}, "organization": null}, "resource": {"id": 373, "owner": {"id": 410}, "assignee": {"id": 591}, "organization": {"id": 628}, "project": {"owner": {"id": 744}, "assignee": {"id": 806}, "organization": {"id": 916}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 196, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 359, "owner": {"id": 469}, "assignee": {"id": 575}, "organization": {"id": 196}, "project": {"owner": {"id": 778}, "assignee": {"id": 834}, "organization": {"id": 936}}}} } -test_scope_VIEW_DATA_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": null}, "resource": {"id": 393, "owner": {"id": 433}, "assignee": {"id": 506}, "organization": {"id": 605}, "project": {"owner": {"id": 783}, "assignee": {"id": 858}, "organization": {"id": 983}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 466}, "assignee": {"id": 542}, "organization": {"id": 621}, "project": {"owner": {"id": 790}, "assignee": {"id": 822}, "organization": {"id": 989}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"id": 397, "owner": {"id": 440}, "assignee": {"id": 522}, "organization": {"id": 185}, "project": {"owner": {"id": 57}, "assignee": {"id": 813}, "organization": {"id": 987}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 325, "owner": {"id": 483}, "assignee": {"id": 577}, "organization": {"id": 159}, "project": {"owner": {"id": 737}, "assignee": {"id": 886}, "organization": {"id": 956}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 33}, "user": {"role": "owner"}}}, "resource": {"id": 330, "owner": {"id": 423}, "assignee": {"id": 500}, "organization": {"id": 606}, "project": {"owner": {"id": 33}, "assignee": {"id": 889}, "organization": {"id": 961}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 440}, "assignee": {"id": 582}, "organization": {"id": 694}, "project": {"owner": {"id": 707}, "assignee": {"id": 834}, "organization": {"id": 953}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 300, "owner": {"id": 473}, "assignee": {"id": 576}, "organization": {"id": 134}, "project": {"owner": {"id": 46}, "assignee": {"id": 894}, "organization": {"id": 984}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 281}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 497}, "assignee": {"id": 556}, "organization": {"id": 102}, "project": {"owner": {"id": 778}, "assignee": {"id": 891}, "organization": {"id": 990}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 220}, "user": {"role": "maintainer"}}}, "resource": {"id": 377, "owner": {"id": 494}, "assignee": {"id": 559}, "organization": {"id": 606}, "project": {"owner": {"id": 60}, "assignee": {"id": 862}, "organization": {"id": 995}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 358, "owner": {"id": 452}, "assignee": {"id": 500}, "organization": {"id": 652}, "project": {"owner": {"id": 711}, "assignee": {"id": 857}, "organization": {"id": 906}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 337, "owner": {"id": 419}, "assignee": {"id": 517}, "organization": {"id": 188}, "project": {"owner": {"id": 63}, "assignee": {"id": 851}, "organization": {"id": 963}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 340, "owner": {"id": 449}, "assignee": {"id": 526}, "organization": {"id": 115}, "project": {"owner": {"id": 769}, "assignee": {"id": 879}, "organization": {"id": 950}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"id": 389, "owner": {"id": 435}, "assignee": {"id": 595}, "organization": {"id": 695}, "project": {"owner": {"id": 45}, "assignee": {"id": 801}, "organization": {"id": 961}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"id": 399, "owner": {"id": 476}, "assignee": {"id": 562}, "organization": {"id": 631}, "project": {"owner": {"id": 713}, "assignee": {"id": 807}, "organization": {"id": 962}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"id": 321, "owner": {"id": 468}, "assignee": {"id": 538}, "organization": {"id": 138}, "project": {"owner": {"id": 87}, "assignee": {"id": 846}, "organization": {"id": 998}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 469}, "assignee": {"id": 591}, "organization": {"id": 191}, "project": {"owner": {"id": 737}, "assignee": {"id": 890}, "organization": {"id": 926}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 353, "owner": {"id": 410}, "assignee": {"id": 522}, "organization": {"id": 623}, "project": {"owner": {"id": 75}, "assignee": {"id": 848}, "organization": {"id": 958}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 322, "owner": {"id": 472}, "assignee": {"id": 552}, "organization": {"id": 692}, "project": {"owner": {"id": 738}, "assignee": {"id": 856}, "organization": {"id": 918}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 307, "owner": {"id": 440}, "assignee": {"id": 545}, "organization": {"id": 185}, "project": {"owner": {"id": 23}, "assignee": {"id": 834}, "organization": {"id": 972}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 428}, "assignee": {"id": 538}, "organization": {"id": 197}, "project": {"owner": {"id": 796}, "assignee": {"id": 879}, "organization": {"id": 927}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 163, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 333, "owner": {"id": 459}, "assignee": {"id": 503}, "organization": {"id": 635}, "project": {"owner": {"id": 65}, "assignee": {"id": 830}, "organization": {"id": 983}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"id": 356, "owner": {"id": 425}, "assignee": {"id": 514}, "organization": {"id": 647}, "project": {"owner": {"id": 746}, "assignee": {"id": 856}, "organization": {"id": 952}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 175, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 475}, "assignee": {"id": 525}, "organization": {"id": 175}, "project": {"owner": {"id": 48}, "assignee": {"id": 887}, "organization": {"id": 910}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 482}, "assignee": {"id": 571}, "organization": {"id": 185}, "project": {"owner": {"id": 712}, "assignee": {"id": 825}, "organization": {"id": 991}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 330, "owner": {"id": 460}, "assignee": {"id": 563}, "organization": {"id": 618}, "project": {"owner": {"id": 3}, "assignee": {"id": 879}, "organization": {"id": 945}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 343, "owner": {"id": 490}, "assignee": {"id": 556}, "organization": {"id": 616}, "project": {"owner": {"id": 703}, "assignee": {"id": 866}, "organization": {"id": 954}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 449}, "assignee": {"id": 531}, "organization": {"id": 102}, "project": {"owner": {"id": 97}, "assignee": {"id": 804}, "organization": {"id": 906}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"id": 364, "owner": {"id": 461}, "assignee": {"id": 543}, "organization": {"id": 131}, "project": {"owner": {"id": 740}, "assignee": {"id": 804}, "organization": {"id": 956}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 397, "owner": {"id": 412}, "assignee": {"id": 540}, "organization": {"id": 619}, "project": {"owner": {"id": 75}, "assignee": {"id": 834}, "organization": {"id": 961}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"id": 325, "owner": {"id": 469}, "assignee": {"id": 525}, "organization": {"id": 645}, "project": {"owner": {"id": 772}, "assignee": {"id": 819}, "organization": {"id": 972}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 189, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 461}, "assignee": {"id": 532}, "organization": {"id": 189}, "project": {"owner": {"id": 63}, "assignee": {"id": 848}, "organization": {"id": 922}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 321, "owner": {"id": 454}, "assignee": {"id": 515}, "organization": {"id": 162}, "project": {"owner": {"id": 722}, "assignee": {"id": 849}, "organization": {"id": 925}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 490}, "assignee": {"id": 522}, "organization": {"id": 667}, "project": {"owner": {"id": 83}, "assignee": {"id": 836}, "organization": {"id": 982}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 96, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 348, "owner": {"id": 447}, "assignee": {"id": 508}, "organization": {"id": 691}, "project": {"owner": {"id": 746}, "assignee": {"id": 822}, "organization": {"id": 976}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 482}, "assignee": {"id": 599}, "organization": {"id": 125}, "project": {"owner": {"id": 92}, "assignee": {"id": 807}, "organization": {"id": 911}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 152, "owner": {"id": 292}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 427}, "assignee": {"id": 540}, "organization": {"id": 152}, "project": {"owner": {"id": 739}, "assignee": {"id": 814}, "organization": {"id": 970}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"id": 332, "owner": {"id": 430}, "assignee": {"id": 510}, "organization": {"id": 610}, "project": {"owner": {"id": 20}, "assignee": {"id": 830}, "organization": {"id": 922}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"id": 328, "owner": {"id": 486}, "assignee": {"id": 592}, "organization": {"id": 600}, "project": {"owner": {"id": 790}, "assignee": {"id": 818}, "organization": {"id": 906}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 434}, "assignee": {"id": 532}, "organization": {"id": 119}, "project": {"owner": {"id": 34}, "assignee": {"id": 852}, "organization": {"id": 920}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 249}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 415}, "assignee": {"id": 533}, "organization": {"id": 190}, "project": {"owner": {"id": 760}, "assignee": {"id": 856}, "organization": {"id": 955}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": {"id": 174, "owner": {"id": 225}, "user": {"role": null}}}, "resource": {"id": 347, "owner": {"id": 462}, "assignee": {"id": 517}, "organization": {"id": 643}, "project": {"owner": {"id": 46}, "assignee": {"id": 839}, "organization": {"id": 937}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"id": 331, "owner": {"id": 454}, "assignee": {"id": 528}, "organization": {"id": 652}, "project": {"owner": {"id": 760}, "assignee": {"id": 837}, "organization": {"id": 961}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 464}, "assignee": {"id": 548}, "organization": {"id": 106}, "project": {"owner": {"id": 35}, "assignee": {"id": 869}, "organization": {"id": 902}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 309, "owner": {"id": 437}, "assignee": {"id": 595}, "organization": {"id": 173}, "project": {"owner": {"id": 776}, "assignee": {"id": 892}, "organization": {"id": 988}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 373, "owner": {"id": 492}, "assignee": {"id": 538}, "organization": {"id": 689}, "project": {"owner": {"id": 19}, "assignee": {"id": 850}, "organization": {"id": 949}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 349, "owner": {"id": 423}, "assignee": {"id": 506}, "organization": {"id": 637}, "project": {"owner": {"id": 729}, "assignee": {"id": 873}, "organization": {"id": 998}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 410}, "assignee": {"id": 500}, "organization": {"id": 169}, "project": {"owner": {"id": 18}, "assignee": {"id": 827}, "organization": {"id": 986}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 142, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 355, "owner": {"id": 488}, "assignee": {"id": 590}, "organization": {"id": 142}, "project": {"owner": {"id": 795}, "assignee": {"id": 855}, "organization": {"id": 978}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 398, "owner": {"id": 476}, "assignee": {"id": 516}, "organization": {"id": 692}, "project": {"owner": {"id": 26}, "assignee": {"id": 869}, "organization": {"id": 903}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"id": 379, "owner": {"id": 478}, "assignee": {"id": 516}, "organization": {"id": 606}, "project": {"owner": {"id": 705}, "assignee": {"id": 846}, "organization": {"id": 923}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 316, "owner": {"id": 467}, "assignee": {"id": 568}, "organization": {"id": 136}, "project": {"owner": {"id": 62}, "assignee": {"id": 879}, "organization": {"id": 944}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 384, "owner": {"id": 404}, "assignee": {"id": 508}, "organization": {"id": 105}, "project": {"owner": {"id": 715}, "assignee": {"id": 815}, "organization": {"id": 913}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 245}, "user": {"role": "supervisor"}}}, "resource": {"id": 305, "owner": {"id": 416}, "assignee": {"id": 510}, "organization": {"id": 616}, "project": {"owner": {"id": 23}, "assignee": {"id": 846}, "organization": {"id": 969}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 379, "owner": {"id": 455}, "assignee": {"id": 561}, "organization": {"id": 676}, "project": {"owner": {"id": 793}, "assignee": {"id": 835}, "organization": {"id": 953}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 68, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"id": 307, "owner": {"id": 454}, "assignee": {"id": 580}, "organization": {"id": 146}, "project": {"owner": {"id": 68}, "assignee": {"id": 866}, "organization": {"id": 923}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 459}, "assignee": {"id": 517}, "organization": {"id": 147}, "project": {"owner": {"id": 757}, "assignee": {"id": 800}, "organization": {"id": 976}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 490}, "assignee": {"id": 590}, "organization": {"id": 626}, "project": {"owner": {"id": 3}, "assignee": {"id": 817}, "organization": {"id": 929}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 396, "owner": {"id": 481}, "assignee": {"id": 590}, "organization": {"id": 665}, "project": {"owner": {"id": 794}, "assignee": {"id": 854}, "organization": {"id": 913}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"id": 364, "owner": {"id": 496}, "assignee": {"id": 511}, "organization": {"id": 170}, "project": {"owner": {"id": 23}, "assignee": {"id": 888}, "organization": {"id": 966}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 371, "owner": {"id": 405}, "assignee": {"id": 560}, "organization": {"id": 180}, "project": {"owner": {"id": 797}, "assignee": {"id": 854}, "organization": {"id": 958}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 478}, "assignee": {"id": 503}, "organization": {"id": 634}, "project": {"owner": {"id": 92}, "assignee": {"id": 855}, "organization": {"id": 928}}}} +test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 264}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 458}, "assignee": {"id": 583}, "organization": {"id": 691}, "project": {"owner": {"id": 750}, "assignee": {"id": 853}, "organization": {"id": 969}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 379, "owner": {"id": 435}, "assignee": {"id": 526}, "organization": {"id": 166}, "project": {"owner": {"id": 65}, "assignee": {"id": 883}, "organization": {"id": 958}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": null}, "resource": {"id": 372, "owner": {"id": 422}, "assignee": {"id": 567}, "organization": {"id": 617}, "project": {"owner": {"id": 46}, "assignee": {"id": 884}, "organization": {"id": 924}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 348, "owner": {"id": 498}, "assignee": {"id": 585}, "organization": {"id": 637}, "project": {"owner": {"id": 39}, "assignee": {"id": 802}, "organization": {"id": 947}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": null}, "resource": {"id": 309, "owner": {"id": 484}, "assignee": {"id": 562}, "organization": {"id": 683}, "project": {"owner": {"id": 10}, "assignee": {"id": 864}, "organization": {"id": 988}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 367, "owner": {"id": 419}, "assignee": {"id": 536}, "organization": {"id": 149}, "project": {"owner": {"id": 60}, "assignee": {"id": 845}, "organization": {"id": 971}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": null}, "resource": {"id": 391, "owner": {"id": 493}, "assignee": {"id": 564}, "organization": {"id": 643}, "project": {"owner": {"id": 51}, "assignee": {"id": 860}, "organization": {"id": 994}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 223}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 481}, "assignee": {"id": 512}, "organization": {"id": 604}, "project": {"owner": {"id": 22}, "assignee": {"id": 890}, "organization": {"id": 956}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": null}, "resource": {"id": 311, "owner": {"id": 484}, "assignee": {"id": 596}, "organization": {"id": 691}, "project": {"owner": {"id": 23}, "assignee": {"id": 822}, "organization": {"id": 987}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 417}, "assignee": {"id": 588}, "organization": {"id": 155}, "project": {"owner": {"id": 47}, "assignee": {"id": 811}, "organization": {"id": 944}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": null}, "resource": {"id": 381, "owner": {"id": 442}, "assignee": {"id": 503}, "organization": {"id": 610}, "project": {"owner": {"id": 93}, "assignee": {"id": 841}, "organization": {"id": 952}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 492}, "assignee": {"id": 542}, "organization": {"id": 637}, "project": {"owner": {"id": 98}, "assignee": {"id": 870}, "organization": {"id": 944}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": null}, "resource": {"id": 318, "owner": {"id": 489}, "assignee": {"id": 594}, "organization": {"id": 674}, "project": {"owner": {"id": 773}, "assignee": {"id": 67}, "organization": {"id": 915}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"id": 305, "owner": {"id": 456}, "assignee": {"id": 567}, "organization": {"id": 106}, "project": {"owner": {"id": 56}, "assignee": {"id": 856}, "organization": {"id": 982}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": null}, "resource": {"id": 349, "owner": {"id": 492}, "assignee": {"id": 578}, "organization": {"id": 694}, "project": {"owner": {"id": 736}, "assignee": {"id": 96}, "organization": {"id": 997}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 370, "owner": {"id": 469}, "assignee": {"id": 592}, "organization": {"id": 658}, "project": {"owner": {"id": 72}, "assignee": {"id": 884}, "organization": {"id": 913}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": null}, "resource": {"id": 394, "owner": {"id": 470}, "assignee": {"id": 552}, "organization": {"id": 642}, "project": {"owner": {"id": 701}, "assignee": {"id": 70}, "organization": {"id": 995}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 286}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 451}, "assignee": {"id": 588}, "organization": {"id": 165}, "project": {"owner": {"id": 55}, "assignee": {"id": 856}, "organization": {"id": 977}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": null}, "resource": {"id": 330, "owner": {"id": 489}, "assignee": {"id": 566}, "organization": {"id": 641}, "project": {"owner": {"id": 780}, "assignee": {"id": 73}, "organization": {"id": 979}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 129, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"id": 381, "owner": {"id": 489}, "assignee": {"id": 595}, "organization": {"id": 631}, "project": {"owner": {"id": 35}, "assignee": {"id": 897}, "organization": {"id": 918}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": null}, "resource": {"id": 384, "owner": {"id": 495}, "assignee": {"id": 526}, "organization": {"id": 623}, "project": {"owner": {"id": 753}, "assignee": {"id": 81}, "organization": {"id": 952}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 461}, "assignee": {"id": 593}, "organization": {"id": 102}, "project": {"owner": {"id": 99}, "assignee": {"id": 847}, "organization": {"id": 918}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": null}, "resource": {"id": 347, "owner": {"id": 16}, "assignee": {"id": 521}, "organization": {"id": 628}, "project": {"owner": {"id": 740}, "assignee": {"id": 833}, "organization": {"id": 983}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 402}, "assignee": {"id": 570}, "organization": {"id": 662}, "project": {"owner": {"id": 93}, "assignee": {"id": 846}, "organization": {"id": 924}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": null}, "resource": {"id": 373, "owner": {"id": 62}, "assignee": {"id": 512}, "organization": {"id": 637}, "project": {"owner": {"id": 776}, "assignee": {"id": 836}, "organization": {"id": 918}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 388, "owner": {"id": 437}, "assignee": {"id": 517}, "organization": {"id": 130}, "project": {"owner": {"id": 28}, "assignee": {"id": 889}, "organization": {"id": 942}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": null}, "resource": {"id": 326, "owner": {"id": 59}, "assignee": {"id": 513}, "organization": {"id": 631}, "project": {"owner": {"id": 790}, "assignee": {"id": 878}, "organization": {"id": 921}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 324, "owner": {"id": 435}, "assignee": {"id": 572}, "organization": {"id": 604}, "project": {"owner": {"id": 46}, "assignee": {"id": 864}, "organization": {"id": 913}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": null}, "resource": {"id": 343, "owner": {"id": 57}, "assignee": {"id": 541}, "organization": {"id": 609}, "project": {"owner": {"id": 787}, "assignee": {"id": 890}, "organization": {"id": 975}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 334, "owner": {"id": 421}, "assignee": {"id": 518}, "organization": {"id": 186}, "project": {"owner": {"id": 63}, "assignee": {"id": 876}, "organization": {"id": 988}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": null}, "resource": {"id": 324, "owner": {"id": 66}, "assignee": {"id": 590}, "organization": {"id": 655}, "project": {"owner": {"id": 790}, "assignee": {"id": 809}, "organization": {"id": 995}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 471}, "assignee": {"id": 563}, "organization": {"id": 694}, "project": {"owner": {"id": 17}, "assignee": {"id": 857}, "organization": {"id": 901}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": null}, "resource": {"id": 338, "owner": {"id": 493}, "assignee": {"id": 11}, "organization": {"id": 660}, "project": {"owner": {"id": 702}, "assignee": {"id": 821}, "organization": {"id": 912}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"id": 310, "owner": {"id": 450}, "assignee": {"id": 581}, "organization": {"id": 187}, "project": {"owner": {"id": 97}, "assignee": {"id": 824}, "organization": {"id": 987}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": null}, "resource": {"id": 303, "owner": {"id": 481}, "assignee": {"id": 74}, "organization": {"id": 650}, "project": {"owner": {"id": 771}, "assignee": {"id": 867}, "organization": {"id": 940}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"id": 301, "owner": {"id": 466}, "assignee": {"id": 520}, "organization": {"id": 612}, "project": {"owner": {"id": 73}, "assignee": {"id": 866}, "organization": {"id": 996}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": null}, "resource": {"id": 315, "owner": {"id": 414}, "assignee": {"id": 67}, "organization": {"id": 654}, "project": {"owner": {"id": 760}, "assignee": {"id": 884}, "organization": {"id": 938}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 132, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 465}, "assignee": {"id": 538}, "organization": {"id": 132}, "project": {"owner": {"id": 52}, "assignee": {"id": 874}, "organization": {"id": 980}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": null}, "resource": {"id": 317, "owner": {"id": 432}, "assignee": {"id": 75}, "organization": {"id": 609}, "project": {"owner": {"id": 733}, "assignee": {"id": 847}, "organization": {"id": 982}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"id": 378, "owner": {"id": 479}, "assignee": {"id": 587}, "organization": {"id": 644}, "project": {"owner": {"id": 48}, "assignee": {"id": 861}, "organization": {"id": 940}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": null}, "resource": {"id": 345, "owner": {"id": 411}, "assignee": {"id": 9}, "organization": {"id": 662}, "project": {"owner": {"id": 795}, "assignee": {"id": 891}, "organization": {"id": 903}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 71, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 416}, "assignee": {"id": 502}, "organization": {"id": 176}, "project": {"owner": {"id": 793}, "assignee": {"id": 71}, "organization": {"id": 957}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": null}, "resource": {"id": 383, "owner": {"id": 479}, "assignee": {"id": 568}, "organization": {"id": 669}, "project": {"owner": {"id": 733}, "assignee": {"id": 861}, "organization": {"id": 905}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 303, "owner": {"id": 437}, "assignee": {"id": 564}, "organization": {"id": 682}, "project": {"owner": {"id": 795}, "assignee": {"id": 51}, "organization": {"id": 962}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": null}, "resource": {"id": 388, "owner": {"id": 482}, "assignee": {"id": 582}, "organization": {"id": 671}, "project": {"owner": {"id": 735}, "assignee": {"id": 868}, "organization": {"id": 946}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 331, "owner": {"id": 469}, "assignee": {"id": 593}, "organization": {"id": 184}, "project": {"owner": {"id": 721}, "assignee": {"id": 4}, "organization": {"id": 977}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": null}, "resource": {"id": 332, "owner": {"id": 442}, "assignee": {"id": 548}, "organization": {"id": 636}, "project": {"owner": {"id": 766}, "assignee": {"id": 883}, "organization": {"id": 973}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 387, "owner": {"id": 440}, "assignee": {"id": 581}, "organization": {"id": 684}, "project": {"owner": {"id": 711}, "assignee": {"id": 69}, "organization": {"id": 995}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": null}, "resource": {"id": 379, "owner": {"id": 412}, "assignee": {"id": 515}, "organization": {"id": 673}, "project": {"owner": {"id": 710}, "assignee": {"id": 848}, "organization": {"id": 947}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 181, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 477}, "assignee": {"id": 570}, "organization": {"id": 181}, "project": {"owner": {"id": 737}, "assignee": {"id": 80}, "organization": {"id": 980}}}} +test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": null}, "resource": {"id": 390, "owner": {"id": 425}, "assignee": {"id": 588}, "organization": {"id": 670}, "project": {"owner": {"id": 700}, "assignee": {"id": 825}, "organization": {"id": 902}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 343, "owner": {"id": 479}, "assignee": {"id": 500}, "organization": {"id": 603}, "project": {"owner": {"id": 796}, "assignee": {"id": 79}, "organization": {"id": 988}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 493}, "assignee": {"id": 589}, "organization": {"id": 151}, "project": {"owner": {"id": 46}, "assignee": {"id": 887}, "organization": {"id": 927}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 453}, "assignee": {"id": 584}, "organization": {"id": 130}, "project": {"owner": {"id": 738}, "assignee": {"id": 97}, "organization": {"id": 940}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 482}, "assignee": {"id": 512}, "organization": {"id": 676}, "project": {"owner": {"id": 2}, "assignee": {"id": 852}, "organization": {"id": 988}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 224}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 427}, "assignee": {"id": 517}, "organization": {"id": 660}, "project": {"owner": {"id": 747}, "assignee": {"id": 68}, "organization": {"id": 936}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 101, "owner": {"id": 281}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 446}, "assignee": {"id": 529}, "organization": {"id": 101}, "project": {"owner": {"id": 23}, "assignee": {"id": 898}, "organization": {"id": 924}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 394, "owner": {"id": 456}, "assignee": {"id": 580}, "organization": {"id": 122}, "project": {"owner": {"id": 766}, "assignee": {"id": 33}, "organization": {"id": 952}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 345, "owner": {"id": 407}, "assignee": {"id": 552}, "organization": {"id": 603}, "project": {"owner": {"id": 40}, "assignee": {"id": 804}, "organization": {"id": 913}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 393, "owner": {"id": 494}, "assignee": {"id": 599}, "organization": {"id": 632}, "project": {"owner": {"id": 713}, "assignee": {"id": 74}, "organization": {"id": 922}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 339, "owner": {"id": 401}, "assignee": {"id": 513}, "organization": {"id": 158}, "project": {"owner": {"id": 85}, "assignee": {"id": 881}, "organization": {"id": 921}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"id": 311, "owner": {"id": 424}, "assignee": {"id": 594}, "organization": {"id": 157}, "project": {"owner": {"id": 767}, "assignee": {"id": 88}, "organization": {"id": 952}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"id": 363, "owner": {"id": 461}, "assignee": {"id": 531}, "organization": {"id": 603}, "project": {"owner": {"id": 19}, "assignee": {"id": 815}, "organization": {"id": 907}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 300, "owner": {"id": 444}, "assignee": {"id": 569}, "organization": {"id": 676}, "project": {"owner": {"id": 792}, "assignee": {"id": 34}, "organization": {"id": 974}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 391, "owner": {"id": 476}, "assignee": {"id": 561}, "organization": {"id": 141}, "project": {"owner": {"id": 17}, "assignee": {"id": 862}, "organization": {"id": 906}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 139, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"id": 384, "owner": {"id": 435}, "assignee": {"id": 567}, "organization": {"id": 139}, "project": {"owner": {"id": 764}, "assignee": {"id": 78}, "organization": {"id": 962}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 395, "owner": {"id": 460}, "assignee": {"id": 547}, "organization": {"id": 687}, "project": {"owner": {"id": 35}, "assignee": {"id": 807}, "organization": {"id": 950}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 91, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"id": 312, "owner": {"id": 471}, "assignee": {"id": 576}, "organization": {"id": 659}, "project": {"owner": {"id": 745}, "assignee": {"id": 91}, "organization": {"id": 951}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 15, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 452}, "assignee": {"id": 528}, "organization": {"id": 122}, "project": {"owner": {"id": 15}, "assignee": {"id": 880}, "organization": {"id": 960}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"id": 330, "owner": {"id": 467}, "assignee": {"id": 541}, "organization": {"id": 188}, "project": {"owner": {"id": 724}, "assignee": {"id": 62}, "organization": {"id": 937}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 456}, "assignee": {"id": 525}, "organization": {"id": 647}, "project": {"owner": {"id": 47}, "assignee": {"id": 853}, "organization": {"id": 937}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 421}, "assignee": {"id": 578}, "organization": {"id": 633}, "project": {"owner": {"id": 742}, "assignee": {"id": 22}, "organization": {"id": 962}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 436}, "assignee": {"id": 577}, "organization": {"id": 194}, "project": {"owner": {"id": 63}, "assignee": {"id": 846}, "organization": {"id": 926}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"id": 309, "owner": {"id": 442}, "assignee": {"id": 512}, "organization": {"id": 152}, "project": {"owner": {"id": 728}, "assignee": {"id": 70}, "organization": {"id": 999}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 309, "owner": {"id": 410}, "assignee": {"id": 576}, "organization": {"id": 633}, "project": {"owner": {"id": 0}, "assignee": {"id": 894}, "organization": {"id": 912}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 288}, "user": {"role": "worker"}}}, "resource": {"id": 374, "owner": {"id": 477}, "assignee": {"id": 565}, "organization": {"id": 655}, "project": {"owner": {"id": 733}, "assignee": {"id": 33}, "organization": {"id": 991}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 356, "owner": {"id": 480}, "assignee": {"id": 556}, "organization": {"id": 154}, "project": {"owner": {"id": 79}, "assignee": {"id": 867}, "organization": {"id": 981}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 401}, "assignee": {"id": 529}, "organization": {"id": 183}, "project": {"owner": {"id": 707}, "assignee": {"id": 3}, "organization": {"id": 924}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 366, "owner": {"id": 401}, "assignee": {"id": 516}, "organization": {"id": 618}, "project": {"owner": {"id": 55}, "assignee": {"id": 845}, "organization": {"id": 978}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 485}, "assignee": {"id": 592}, "organization": {"id": 611}, "project": {"owner": {"id": 786}, "assignee": {"id": 68}, "organization": {"id": 938}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 295}, "user": {"role": "supervisor"}}}, "resource": {"id": 370, "owner": {"id": 427}, "assignee": {"id": 512}, "organization": {"id": 125}, "project": {"owner": {"id": 54}, "assignee": {"id": 822}, "organization": {"id": 930}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 131, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 471}, "assignee": {"id": 503}, "organization": {"id": 131}, "project": {"owner": {"id": 742}, "assignee": {"id": 65}, "organization": {"id": 959}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 411}, "assignee": {"id": 558}, "organization": {"id": 671}, "project": {"owner": {"id": 17}, "assignee": {"id": 860}, "organization": {"id": 965}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 456}, "assignee": {"id": 598}, "organization": {"id": 625}, "project": {"owner": {"id": 766}, "assignee": {"id": 86}, "organization": {"id": 962}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 442}, "assignee": {"id": 504}, "organization": {"id": 114}, "project": {"owner": {"id": 63}, "assignee": {"id": 825}, "organization": {"id": 981}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 414}, "assignee": {"id": 557}, "organization": {"id": 137}, "project": {"owner": {"id": 759}, "assignee": {"id": 72}, "organization": {"id": 978}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 406}, "assignee": {"id": 513}, "organization": {"id": 611}, "project": {"owner": {"id": 58}, "assignee": {"id": 825}, "organization": {"id": 900}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 480}, "assignee": {"id": 561}, "organization": {"id": 613}, "project": {"owner": {"id": 787}, "assignee": {"id": 46}, "organization": {"id": 949}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"id": 364, "owner": {"id": 486}, "assignee": {"id": 589}, "organization": {"id": 182}, "project": {"owner": {"id": 48}, "assignee": {"id": 854}, "organization": {"id": 972}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 322, "owner": {"id": 435}, "assignee": {"id": 508}, "organization": {"id": 195}, "project": {"owner": {"id": 759}, "assignee": {"id": 73}, "organization": {"id": 959}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 473}, "assignee": {"id": 534}, "organization": {"id": 633}, "project": {"owner": {"id": 38}, "assignee": {"id": 856}, "organization": {"id": 924}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 417}, "assignee": {"id": 518}, "organization": {"id": 647}, "project": {"owner": {"id": 789}, "assignee": {"id": 52}, "organization": {"id": 979}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 76}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 400}, "assignee": {"id": 567}, "organization": {"id": 194}, "project": {"owner": {"id": 76}, "assignee": {"id": 873}, "organization": {"id": 917}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 398, "owner": {"id": 472}, "assignee": {"id": 589}, "organization": {"id": 173}, "project": {"owner": {"id": 705}, "assignee": {"id": 37}, "organization": {"id": 987}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"id": 353, "owner": {"id": 440}, "assignee": {"id": 572}, "organization": {"id": 630}, "project": {"owner": {"id": 43}, "assignee": {"id": 850}, "organization": {"id": 932}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"id": 395, "owner": {"id": 472}, "assignee": {"id": 548}, "organization": {"id": 634}, "project": {"owner": {"id": 724}, "assignee": {"id": 1}, "organization": {"id": 935}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 434}, "assignee": {"id": 590}, "organization": {"id": 153}, "project": {"owner": {"id": 57}, "assignee": {"id": 841}, "organization": {"id": 934}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 360, "owner": {"id": 405}, "assignee": {"id": 531}, "organization": {"id": 132}, "project": {"owner": {"id": 751}, "assignee": {"id": 83}, "organization": {"id": 962}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 445}, "assignee": {"id": 586}, "organization": {"id": 618}, "project": {"owner": {"id": 97}, "assignee": {"id": 810}, "organization": {"id": 980}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 163, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 452}, "assignee": {"id": 586}, "organization": {"id": 669}, "project": {"owner": {"id": 781}, "assignee": {"id": 40}, "organization": {"id": 919}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 361, "owner": {"id": 479}, "assignee": {"id": 558}, "organization": {"id": 125}, "project": {"owner": {"id": 48}, "assignee": {"id": 868}, "organization": {"id": 974}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"id": 391, "owner": {"id": 406}, "assignee": {"id": 588}, "organization": {"id": 158}, "project": {"owner": {"id": 723}, "assignee": {"id": 4}, "organization": {"id": 901}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 393, "owner": {"id": 430}, "assignee": {"id": 551}, "organization": {"id": 668}, "project": {"owner": {"id": 47}, "assignee": {"id": 816}, "organization": {"id": 941}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 380, "owner": {"id": 443}, "assignee": {"id": 531}, "organization": {"id": 652}, "project": {"owner": {"id": 748}, "assignee": {"id": 34}, "organization": {"id": 904}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 281}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 487}, "assignee": {"id": 532}, "organization": {"id": 153}, "project": {"owner": {"id": 43}, "assignee": {"id": 897}, "organization": {"id": 948}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 496}, "assignee": {"id": 508}, "organization": {"id": 131}, "project": {"owner": {"id": 729}, "assignee": {"id": 57}, "organization": {"id": 986}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"id": 377, "owner": {"id": 492}, "assignee": {"id": 505}, "organization": {"id": 696}, "project": {"owner": {"id": 82}, "assignee": {"id": 817}, "organization": {"id": 922}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 150, "owner": {"id": 290}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 477}, "assignee": {"id": 518}, "organization": {"id": 635}, "project": {"owner": {"id": 767}, "assignee": {"id": 60}, "organization": {"id": 960}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 305, "owner": {"id": 408}, "assignee": {"id": 590}, "organization": {"id": 140}, "project": {"owner": {"id": 80}, "assignee": {"id": 892}, "organization": {"id": 951}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 433}, "assignee": {"id": 569}, "organization": {"id": 160}, "project": {"owner": {"id": 758}, "assignee": {"id": 82}, "organization": {"id": 945}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 458}, "assignee": {"id": 537}, "organization": {"id": 611}, "project": {"owner": {"id": 41}, "assignee": {"id": 813}, "organization": {"id": 967}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"id": 376, "owner": {"id": 415}, "assignee": {"id": 586}, "organization": {"id": 620}, "project": {"owner": {"id": 738}, "assignee": {"id": 95}, "organization": {"id": 971}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 411}, "assignee": {"id": 596}, "organization": {"id": 143}, "project": {"owner": {"id": 62}, "assignee": {"id": 893}, "organization": {"id": 908}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 281}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 414}, "assignee": {"id": 537}, "organization": {"id": 149}, "project": {"owner": {"id": 789}, "assignee": {"id": 0}, "organization": {"id": 946}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 77}, "user": {"role": "owner"}}}, "resource": {"id": 345, "owner": {"id": 454}, "assignee": {"id": 539}, "organization": {"id": 664}, "project": {"owner": {"id": 77}, "assignee": {"id": 865}, "organization": {"id": 997}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 112, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"id": 326, "owner": {"id": 448}, "assignee": {"id": 568}, "organization": {"id": 609}, "project": {"owner": {"id": 727}, "assignee": {"id": 24}, "organization": {"id": 963}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"id": 321, "owner": {"id": 440}, "assignee": {"id": 504}, "organization": {"id": 174}, "project": {"owner": {"id": 59}, "assignee": {"id": 846}, "organization": {"id": 939}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"id": 399, "owner": {"id": 455}, "assignee": {"id": 551}, "organization": {"id": 126}, "project": {"owner": {"id": 771}, "assignee": {"id": 35}, "organization": {"id": 947}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 227}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 479}, "assignee": {"id": 558}, "organization": {"id": 675}, "project": {"owner": {"id": 86}, "assignee": {"id": 808}, "organization": {"id": 903}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 479}, "assignee": {"id": 598}, "organization": {"id": 624}, "project": {"owner": {"id": 761}, "assignee": {"id": 56}, "organization": {"id": 933}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 25, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 492}, "assignee": {"id": 567}, "organization": {"id": 137}, "project": {"owner": {"id": 25}, "assignee": {"id": 874}, "organization": {"id": 946}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"id": 373, "owner": {"id": 458}, "assignee": {"id": 540}, "organization": {"id": 147}, "project": {"owner": {"id": 788}, "assignee": {"id": 16}, "organization": {"id": 976}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"id": 371, "owner": {"id": 400}, "assignee": {"id": 502}, "organization": {"id": 614}, "project": {"owner": {"id": 17}, "assignee": {"id": 822}, "organization": {"id": 939}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 45}, "user": {"role": "owner"}}}, "resource": {"id": 357, "owner": {"id": 426}, "assignee": {"id": 560}, "organization": {"id": 647}, "project": {"owner": {"id": 765}, "assignee": {"id": 45}, "organization": {"id": 995}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 286}, "user": {"role": "worker"}}}, "resource": {"id": 336, "owner": {"id": 447}, "assignee": {"id": 564}, "organization": {"id": 179}, "project": {"owner": {"id": 52}, "assignee": {"id": 837}, "organization": {"id": 967}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 477}, "assignee": {"id": 574}, "organization": {"id": 120}, "project": {"owner": {"id": 707}, "assignee": {"id": 88}, "organization": {"id": 908}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 343, "owner": {"id": 432}, "assignee": {"id": 564}, "organization": {"id": 629}, "project": {"owner": {"id": 46}, "assignee": {"id": 890}, "organization": {"id": 972}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 471}, "assignee": {"id": 598}, "organization": {"id": 654}, "project": {"owner": {"id": 715}, "assignee": {"id": 35}, "organization": {"id": 988}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"id": 372, "owner": {"id": 402}, "assignee": {"id": 575}, "organization": {"id": 165}, "project": {"owner": {"id": 59}, "assignee": {"id": 836}, "organization": {"id": 952}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 291}, "user": {"role": "supervisor"}}}, "resource": {"id": 385, "owner": {"id": 480}, "assignee": {"id": 576}, "organization": {"id": 120}, "project": {"owner": {"id": 745}, "assignee": {"id": 85}, "organization": {"id": 917}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 214}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 405}, "assignee": {"id": 535}, "organization": {"id": 639}, "project": {"owner": {"id": 81}, "assignee": {"id": 826}, "organization": {"id": 904}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 333, "owner": {"id": 415}, "assignee": {"id": 595}, "organization": {"id": 608}, "project": {"owner": {"id": 717}, "assignee": {"id": 80}, "organization": {"id": 990}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 363, "owner": {"id": 475}, "assignee": {"id": 564}, "organization": {"id": 161}, "project": {"owner": {"id": 30}, "assignee": {"id": 891}, "organization": {"id": 917}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 499}, "assignee": {"id": 521}, "organization": {"id": 119}, "project": {"owner": {"id": 721}, "assignee": {"id": 74}, "organization": {"id": 984}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 323, "owner": {"id": 406}, "assignee": {"id": 508}, "organization": {"id": 672}, "project": {"owner": {"id": 3}, "assignee": {"id": 801}, "organization": {"id": 952}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"id": 388, "owner": {"id": 400}, "assignee": {"id": 558}, "organization": {"id": 658}, "project": {"owner": {"id": 705}, "assignee": {"id": 78}, "organization": {"id": 993}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 365, "owner": {"id": 406}, "assignee": {"id": 520}, "organization": {"id": 191}, "project": {"owner": {"id": 74}, "assignee": {"id": 864}, "organization": {"id": 920}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 485}, "assignee": {"id": 569}, "organization": {"id": 124}, "project": {"owner": {"id": 752}, "assignee": {"id": 74}, "organization": {"id": 999}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 421}, "assignee": {"id": 570}, "organization": {"id": 649}, "project": {"owner": {"id": 83}, "assignee": {"id": 812}, "organization": {"id": 938}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 224}, "user": {"role": null}}}, "resource": {"id": 318, "owner": {"id": 401}, "assignee": {"id": 585}, "organization": {"id": 639}, "project": {"owner": {"id": 792}, "assignee": {"id": 54}, "organization": {"id": 944}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 328, "owner": {"id": 464}, "assignee": {"id": 530}, "organization": {"id": 151}, "project": {"owner": {"id": 34}, "assignee": {"id": 880}, "organization": {"id": 920}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 92}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 92}, "assignee": {"id": 572}, "organization": {"id": 110}, "project": {"owner": {"id": 790}, "assignee": {"id": 817}, "organization": {"id": 994}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 439}, "assignee": {"id": 596}, "organization": {"id": 615}, "project": {"owner": {"id": 97}, "assignee": {"id": 899}, "organization": {"id": 976}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 308, "owner": {"id": 11}, "assignee": {"id": 511}, "organization": {"id": 665}, "project": {"owner": {"id": 719}, "assignee": {"id": 803}, "organization": {"id": 976}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 154, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 307, "owner": {"id": 465}, "assignee": {"id": 570}, "organization": {"id": 154}, "project": {"owner": {"id": 91}, "assignee": {"id": 860}, "organization": {"id": 955}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 46}, "assignee": {"id": 540}, "organization": {"id": 179}, "project": {"owner": {"id": 790}, "assignee": {"id": 841}, "organization": {"id": 931}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 418}, "assignee": {"id": 598}, "organization": {"id": 600}, "project": {"owner": {"id": 48}, "assignee": {"id": 845}, "organization": {"id": 920}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 300, "owner": {"id": 64}, "assignee": {"id": 595}, "organization": {"id": 635}, "project": {"owner": {"id": 755}, "assignee": {"id": 848}, "organization": {"id": 971}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 475}, "assignee": {"id": 584}, "organization": {"id": 170}, "project": {"owner": {"id": 25}, "assignee": {"id": 829}, "organization": {"id": 979}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 291}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 69}, "assignee": {"id": 548}, "organization": {"id": 130}, "project": {"owner": {"id": 731}, "assignee": {"id": 888}, "organization": {"id": 903}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 305, "owner": {"id": 458}, "assignee": {"id": 510}, "organization": {"id": 684}, "project": {"owner": {"id": 89}, "assignee": {"id": 804}, "organization": {"id": 911}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 181, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 323, "owner": {"id": 27}, "assignee": {"id": 570}, "organization": {"id": 649}, "project": {"owner": {"id": 730}, "assignee": {"id": 889}, "organization": {"id": 961}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 424}, "assignee": {"id": 585}, "organization": {"id": 168}, "project": {"owner": {"id": 712}, "assignee": {"id": 69}, "organization": {"id": 921}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 42}, "assignee": {"id": 528}, "organization": {"id": 171}, "project": {"owner": {"id": 778}, "assignee": {"id": 804}, "organization": {"id": 974}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 316, "owner": {"id": 453}, "assignee": {"id": 566}, "organization": {"id": 636}, "project": {"owner": {"id": 745}, "assignee": {"id": 97}, "organization": {"id": 934}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 224}, "user": {"role": "worker"}}}, "resource": {"id": 312, "owner": {"id": 79}, "assignee": {"id": 552}, "organization": {"id": 610}, "project": {"owner": {"id": 705}, "assignee": {"id": 847}, "organization": {"id": 979}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 303, "owner": {"id": 417}, "assignee": {"id": 560}, "organization": {"id": 164}, "project": {"owner": {"id": 742}, "assignee": {"id": 77}, "organization": {"id": 988}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 127, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 43}, "assignee": {"id": 545}, "organization": {"id": 127}, "project": {"owner": {"id": 710}, "assignee": {"id": 880}, "organization": {"id": 968}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 459}, "assignee": {"id": 515}, "organization": {"id": 683}, "project": {"owner": {"id": 768}, "assignee": {"id": 34}, "organization": {"id": 911}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 61}, "assignee": {"id": 531}, "organization": {"id": 657}, "project": {"owner": {"id": 748}, "assignee": {"id": 859}, "organization": {"id": 929}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 81, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 389, "owner": {"id": 409}, "assignee": {"id": 518}, "organization": {"id": 157}, "project": {"owner": {"id": 729}, "assignee": {"id": 81}, "organization": {"id": 932}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"id": 380, "owner": {"id": 42}, "assignee": {"id": 542}, "organization": {"id": 111}, "project": {"owner": {"id": 771}, "assignee": {"id": 817}, "organization": {"id": 910}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 15, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"id": 363, "owner": {"id": 468}, "assignee": {"id": 543}, "organization": {"id": 603}, "project": {"owner": {"id": 741}, "assignee": {"id": 15}, "organization": {"id": 903}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 313, "owner": {"id": 54}, "assignee": {"id": 575}, "organization": {"id": 614}, "project": {"owner": {"id": 728}, "assignee": {"id": 848}, "organization": {"id": 933}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 430}, "assignee": {"id": 510}, "organization": {"id": 100}, "project": {"owner": {"id": 768}, "assignee": {"id": 43}, "organization": {"id": 975}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 374, "owner": {"id": 80}, "assignee": {"id": 573}, "organization": {"id": 197}, "project": {"owner": {"id": 788}, "assignee": {"id": 861}, "organization": {"id": 905}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"id": 305, "owner": {"id": 403}, "assignee": {"id": 595}, "organization": {"id": 624}, "project": {"owner": {"id": 770}, "assignee": {"id": 34}, "organization": {"id": 955}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 54}, "assignee": {"id": 587}, "organization": {"id": 651}, "project": {"owner": {"id": 724}, "assignee": {"id": 811}, "organization": {"id": 974}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 237}, "user": {"role": null}}}, "resource": {"id": 390, "owner": {"id": 485}, "assignee": {"id": 536}, "organization": {"id": 184}, "project": {"owner": {"id": 703}, "assignee": {"id": 26}, "organization": {"id": 926}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 6}, "assignee": {"id": 570}, "organization": {"id": 125}, "project": {"owner": {"id": 744}, "assignee": {"id": 865}, "organization": {"id": 965}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 264}, "user": {"role": null}}}, "resource": {"id": 366, "owner": {"id": 412}, "assignee": {"id": 511}, "organization": {"id": 654}, "project": {"owner": {"id": 723}, "assignee": {"id": 10}, "organization": {"id": 954}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 9}, "assignee": {"id": 552}, "organization": {"id": 631}, "project": {"owner": {"id": 795}, "assignee": {"id": 865}, "organization": {"id": 937}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 412}, "assignee": {"id": 507}, "organization": {"id": 114}, "project": {"owner": {"id": 707}, "assignee": {"id": 57}, "organization": {"id": 975}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 64, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 244}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 64}, "assignee": {"id": 553}, "organization": {"id": 135}, "project": {"owner": {"id": 778}, "assignee": {"id": 894}, "organization": {"id": 998}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 401}, "assignee": {"id": 509}, "organization": {"id": 639}, "project": {"owner": {"id": 749}, "assignee": {"id": 31}, "organization": {"id": 994}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"id": 372, "owner": {"id": 36}, "assignee": {"id": 524}, "organization": {"id": 680}, "project": {"owner": {"id": 739}, "assignee": {"id": 883}, "organization": {"id": 935}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 498}, "assignee": {"id": 504}, "organization": {"id": 135}, "project": {"owner": {"id": 769}, "assignee": {"id": 6}, "organization": {"id": 956}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 6}, "assignee": {"id": 534}, "organization": {"id": 106}, "project": {"owner": {"id": 784}, "assignee": {"id": 800}, "organization": {"id": 926}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 289}, "user": {"role": "maintainer"}}}, "resource": {"id": 393, "owner": {"id": 411}, "assignee": {"id": 507}, "organization": {"id": 637}, "project": {"owner": {"id": 723}, "assignee": {"id": 99}, "organization": {"id": 997}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"id": 318, "owner": {"id": 54}, "assignee": {"id": 578}, "organization": {"id": 634}, "project": {"owner": {"id": 785}, "assignee": {"id": 875}, "organization": {"id": 913}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 401}, "assignee": {"id": 583}, "organization": {"id": 180}, "project": {"owner": {"id": 798}, "assignee": {"id": 4}, "organization": {"id": 914}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 84}, "assignee": {"id": 526}, "organization": {"id": 156}, "project": {"owner": {"id": 763}, "assignee": {"id": 848}, "organization": {"id": 959}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 448}, "assignee": {"id": 513}, "organization": {"id": 680}, "project": {"owner": {"id": 786}, "assignee": {"id": 43}, "organization": {"id": 924}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"id": 343, "owner": {"id": 85}, "assignee": {"id": 534}, "organization": {"id": 613}, "project": {"owner": {"id": 796}, "assignee": {"id": 882}, "organization": {"id": 921}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 370, "owner": {"id": 407}, "assignee": {"id": 511}, "organization": {"id": 157}, "project": {"owner": {"id": 732}, "assignee": {"id": 30}, "organization": {"id": 904}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 192, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 74}, "assignee": {"id": 513}, "organization": {"id": 192}, "project": {"owner": {"id": 728}, "assignee": {"id": 810}, "organization": {"id": 948}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"id": 367, "owner": {"id": 493}, "assignee": {"id": 514}, "organization": {"id": 626}, "project": {"owner": {"id": 745}, "assignee": {"id": 95}, "organization": {"id": 979}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 45, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 365, "owner": {"id": 45}, "assignee": {"id": 523}, "organization": {"id": 665}, "project": {"owner": {"id": 705}, "assignee": {"id": 810}, "organization": {"id": 947}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 478}, "assignee": {"id": 510}, "organization": {"id": 172}, "project": {"owner": {"id": 714}, "assignee": {"id": 29}, "organization": {"id": 985}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 205}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 88}, "assignee": {"id": 563}, "organization": {"id": 121}, "project": {"owner": {"id": 752}, "assignee": {"id": 898}, "organization": {"id": 929}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 451}, "assignee": {"id": 555}, "organization": {"id": 657}, "project": {"owner": {"id": 782}, "assignee": {"id": 31}, "organization": {"id": 919}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 205}, "user": {"role": "supervisor"}}}, "resource": {"id": 369, "owner": {"id": 24}, "assignee": {"id": 571}, "organization": {"id": 674}, "project": {"owner": {"id": 764}, "assignee": {"id": 872}, "organization": {"id": 904}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 473}, "assignee": {"id": 545}, "organization": {"id": 135}, "project": {"owner": {"id": 792}, "assignee": {"id": 30}, "organization": {"id": 988}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 32}, "assignee": {"id": 557}, "organization": {"id": 108}, "project": {"owner": {"id": 742}, "assignee": {"id": 868}, "organization": {"id": 924}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 8}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 415}, "assignee": {"id": 577}, "organization": {"id": 661}, "project": {"owner": {"id": 741}, "assignee": {"id": 8}, "organization": {"id": 947}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 383, "owner": {"id": 6}, "assignee": {"id": 596}, "organization": {"id": 646}, "project": {"owner": {"id": 705}, "assignee": {"id": 843}, "organization": {"id": 930}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"id": 353, "owner": {"id": 400}, "assignee": {"id": 524}, "organization": {"id": 125}, "project": {"owner": {"id": 763}, "assignee": {"id": 1}, "organization": {"id": 955}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 122, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"id": 316, "owner": {"id": 88}, "assignee": {"id": 568}, "organization": {"id": 122}, "project": {"owner": {"id": 725}, "assignee": {"id": 899}, "organization": {"id": 970}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 353, "owner": {"id": 444}, "assignee": {"id": 524}, "organization": {"id": 662}, "project": {"owner": {"id": 754}, "assignee": {"id": 44}, "organization": {"id": 975}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"id": 315, "owner": {"id": 57}, "assignee": {"id": 544}, "organization": {"id": 610}, "project": {"owner": {"id": 747}, "assignee": {"id": 825}, "organization": {"id": 985}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"id": 389, "owner": {"id": 417}, "assignee": {"id": 577}, "organization": {"id": 159}, "project": {"owner": {"id": 795}, "assignee": {"id": 25}, "organization": {"id": 921}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 27}, "assignee": {"id": 544}, "organization": {"id": 128}, "project": {"owner": {"id": 703}, "assignee": {"id": 838}, "organization": {"id": 990}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 364, "owner": {"id": 468}, "assignee": {"id": 515}, "organization": {"id": 673}, "project": {"owner": {"id": 724}, "assignee": {"id": 30}, "organization": {"id": 961}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 383, "owner": {"id": 53}, "assignee": {"id": 532}, "organization": {"id": 665}, "project": {"owner": {"id": 780}, "assignee": {"id": 831}, "organization": {"id": 906}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 283}, "user": {"role": "worker"}}}, "resource": {"id": 366, "owner": {"id": 487}, "assignee": {"id": 505}, "organization": {"id": 119}, "project": {"owner": {"id": 710}, "assignee": {"id": 19}, "organization": {"id": 989}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 188, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 353, "owner": {"id": 38}, "assignee": {"id": 551}, "organization": {"id": 188}, "project": {"owner": {"id": 729}, "assignee": {"id": 868}, "organization": {"id": 922}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 373, "owner": {"id": 474}, "assignee": {"id": 586}, "organization": {"id": 669}, "project": {"owner": {"id": 765}, "assignee": {"id": 70}, "organization": {"id": 943}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"id": 350, "owner": {"id": 79}, "assignee": {"id": 597}, "organization": {"id": 642}, "project": {"owner": {"id": 717}, "assignee": {"id": 866}, "organization": {"id": 908}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 415}, "assignee": {"id": 533}, "organization": {"id": 175}, "project": {"owner": {"id": 737}, "assignee": {"id": 69}, "organization": {"id": 997}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 30, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 354, "owner": {"id": 30}, "assignee": {"id": 530}, "organization": {"id": 120}, "project": {"owner": {"id": 728}, "assignee": {"id": 885}, "organization": {"id": 962}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 334, "owner": {"id": 412}, "assignee": {"id": 548}, "organization": {"id": 638}, "project": {"owner": {"id": 786}, "assignee": {"id": 42}, "organization": {"id": 943}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 376, "owner": {"id": 73}, "assignee": {"id": 503}, "organization": {"id": 666}, "project": {"owner": {"id": 753}, "assignee": {"id": 886}, "organization": {"id": 951}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 406}, "assignee": {"id": 541}, "organization": {"id": 155}, "project": {"owner": {"id": 704}, "assignee": {"id": 17}, "organization": {"id": 993}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 286}, "user": {"role": "worker"}}}, "resource": {"id": 339, "owner": {"id": 17}, "assignee": {"id": 516}, "organization": {"id": 148}, "project": {"owner": {"id": 780}, "assignee": {"id": 823}, "organization": {"id": 937}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"id": 393, "owner": {"id": 437}, "assignee": {"id": 575}, "organization": {"id": 682}, "project": {"owner": {"id": 705}, "assignee": {"id": 50}, "organization": {"id": 999}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 243}, "user": {"role": "worker"}}}, "resource": {"id": 319, "owner": {"id": 54}, "assignee": {"id": 590}, "organization": {"id": 619}, "project": {"owner": {"id": 789}, "assignee": {"id": 819}, "organization": {"id": 920}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 350, "owner": {"id": 471}, "assignee": {"id": 554}, "organization": {"id": 101}, "project": {"owner": {"id": 713}, "assignee": {"id": 1}, "organization": {"id": 999}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"id": 320, "owner": {"id": 1}, "assignee": {"id": 552}, "organization": {"id": 106}, "project": {"owner": {"id": 712}, "assignee": {"id": 874}, "organization": {"id": 939}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 461}, "assignee": {"id": 505}, "organization": {"id": 620}, "project": {"owner": {"id": 729}, "assignee": {"id": 80}, "organization": {"id": 904}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"id": 328, "owner": {"id": 29}, "assignee": {"id": 521}, "organization": {"id": 662}, "project": {"owner": {"id": 743}, "assignee": {"id": 848}, "organization": {"id": 905}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 433}, "assignee": {"id": 598}, "organization": {"id": 164}, "project": {"owner": {"id": 788}, "assignee": {"id": 70}, "organization": {"id": 963}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 383, "owner": {"id": 25}, "assignee": {"id": 577}, "organization": {"id": 144}, "project": {"owner": {"id": 733}, "assignee": {"id": 828}, "organization": {"id": 962}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"id": 343, "owner": {"id": 410}, "assignee": {"id": 569}, "organization": {"id": 639}, "project": {"owner": {"id": 707}, "assignee": {"id": 66}, "organization": {"id": 921}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"id": 327, "owner": {"id": 1}, "assignee": {"id": 518}, "organization": {"id": 615}, "project": {"owner": {"id": 725}, "assignee": {"id": 882}, "organization": {"id": 983}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 107, "owner": {"id": 245}, "user": {"role": "worker"}}}, "resource": {"id": 307, "owner": {"id": 453}, "assignee": {"id": 599}, "organization": {"id": 107}, "project": {"owner": {"id": 706}, "assignee": {"id": 27}, "organization": {"id": 920}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"id": 364, "owner": {"id": 70}, "assignee": {"id": 557}, "organization": {"id": 144}, "project": {"owner": {"id": 786}, "assignee": {"id": 863}, "organization": {"id": 980}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"id": 355, "owner": {"id": 472}, "assignee": {"id": 554}, "organization": {"id": 615}, "project": {"owner": {"id": 755}, "assignee": {"id": 10}, "organization": {"id": 949}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 5}, "assignee": {"id": 546}, "organization": {"id": 645}, "project": {"owner": {"id": 708}, "assignee": {"id": 823}, "organization": {"id": 937}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 496}, "assignee": {"id": 562}, "organization": {"id": 157}, "project": {"owner": {"id": 717}, "assignee": {"id": 61}, "organization": {"id": 996}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 37}, "assignee": {"id": 579}, "organization": {"id": 112}, "project": {"owner": {"id": 773}, "assignee": {"id": 842}, "organization": {"id": 965}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 207}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 404}, "assignee": {"id": 513}, "organization": {"id": 654}, "project": {"owner": {"id": 771}, "assignee": {"id": 1}, "organization": {"id": 958}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 294}, "user": {"role": "supervisor"}}}, "resource": {"id": 319, "owner": {"id": 65}, "assignee": {"id": 592}, "organization": {"id": 661}, "project": {"owner": {"id": 764}, "assignee": {"id": 859}, "organization": {"id": 906}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"id": 399, "owner": {"id": 437}, "assignee": {"id": 505}, "organization": {"id": 103}, "project": {"owner": {"id": 759}, "assignee": {"id": 60}, "organization": {"id": 919}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 79}, "assignee": {"id": 523}, "organization": {"id": 192}, "project": {"owner": {"id": 767}, "assignee": {"id": 853}, "organization": {"id": 933}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 416}, "assignee": {"id": 599}, "organization": {"id": 679}, "project": {"owner": {"id": 767}, "assignee": {"id": 17}, "organization": {"id": 957}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 80}, "assignee": {"id": 589}, "organization": {"id": 662}, "project": {"owner": {"id": 783}, "assignee": {"id": 831}, "organization": {"id": 974}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 368, "owner": {"id": 420}, "assignee": {"id": 522}, "organization": {"id": 136}, "project": {"owner": {"id": 763}, "assignee": {"id": 47}, "organization": {"id": 940}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 25}, "assignee": {"id": 562}, "organization": {"id": 139}, "project": {"owner": {"id": 768}, "assignee": {"id": 852}, "organization": {"id": 912}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 289}, "user": {"role": "maintainer"}}}, "resource": {"id": 317, "owner": {"id": 496}, "assignee": {"id": 572}, "organization": {"id": 639}, "project": {"owner": {"id": 763}, "assignee": {"id": 73}, "organization": {"id": 913}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"id": 333, "owner": {"id": 98}, "assignee": {"id": 534}, "organization": {"id": 613}, "project": {"owner": {"id": 724}, "assignee": {"id": 889}, "organization": {"id": 987}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 190, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 409}, "assignee": {"id": 573}, "organization": {"id": 190}, "project": {"owner": {"id": 771}, "assignee": {"id": 97}, "organization": {"id": 934}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 407}, "assignee": {"id": 21}, "organization": {"id": 148}, "project": {"owner": {"id": 724}, "assignee": {"id": 830}, "organization": {"id": 909}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 438}, "assignee": {"id": 572}, "organization": {"id": 603}, "project": {"owner": {"id": 726}, "assignee": {"id": 19}, "organization": {"id": 986}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 325, "owner": {"id": 496}, "assignee": {"id": 13}, "organization": {"id": 690}, "project": {"owner": {"id": 728}, "assignee": {"id": 802}, "organization": {"id": 932}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 178, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 381, "owner": {"id": 488}, "assignee": {"id": 589}, "organization": {"id": 178}, "project": {"owner": {"id": 755}, "assignee": {"id": 17}, "organization": {"id": 924}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 384, "owner": {"id": 432}, "assignee": {"id": 34}, "organization": {"id": 184}, "project": {"owner": {"id": 728}, "assignee": {"id": 885}, "organization": {"id": 932}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 374, "owner": {"id": 424}, "assignee": {"id": 595}, "organization": {"id": 645}, "project": {"owner": {"id": 776}, "assignee": {"id": 22}, "organization": {"id": 936}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 393, "owner": {"id": 483}, "assignee": {"id": 66}, "organization": {"id": 630}, "project": {"owner": {"id": 792}, "assignee": {"id": 880}, "organization": {"id": 932}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 478}, "assignee": {"id": 580}, "organization": {"id": 157}, "project": {"owner": {"id": 733}, "assignee": {"id": 54}, "organization": {"id": 979}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 409}, "assignee": {"id": 9}, "organization": {"id": 185}, "project": {"owner": {"id": 703}, "assignee": {"id": 896}, "organization": {"id": 923}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 361, "owner": {"id": 440}, "assignee": {"id": 517}, "organization": {"id": 612}, "project": {"owner": {"id": 725}, "assignee": {"id": 7}, "organization": {"id": 902}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 156, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 338, "owner": {"id": 472}, "assignee": {"id": 43}, "organization": {"id": 643}, "project": {"owner": {"id": 795}, "assignee": {"id": 878}, "organization": {"id": 973}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 61}, "assignee": {"id": 580}, "organization": {"id": 166}, "project": {"owner": {"id": 708}, "assignee": {"id": 859}, "organization": {"id": 903}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 101, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 403}, "assignee": {"id": 38}, "organization": {"id": 101}, "project": {"owner": {"id": 762}, "assignee": {"id": 831}, "organization": {"id": 922}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 132, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"id": 387, "owner": {"id": 2}, "assignee": {"id": 504}, "organization": {"id": 648}, "project": {"owner": {"id": 754}, "assignee": {"id": 877}, "organization": {"id": 900}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"id": 301, "owner": {"id": 450}, "assignee": {"id": 45}, "organization": {"id": 643}, "project": {"owner": {"id": 776}, "assignee": {"id": 865}, "organization": {"id": 905}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 57}, "assignee": {"id": 553}, "organization": {"id": 122}, "project": {"owner": {"id": 782}, "assignee": {"id": 861}, "organization": {"id": 949}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 320, "owner": {"id": 466}, "assignee": {"id": 52}, "organization": {"id": 113}, "project": {"owner": {"id": 717}, "assignee": {"id": 863}, "organization": {"id": 970}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 267}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 90}, "assignee": {"id": 569}, "organization": {"id": 628}, "project": {"owner": {"id": 754}, "assignee": {"id": 855}, "organization": {"id": 995}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 214}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 491}, "assignee": {"id": 13}, "organization": {"id": 665}, "project": {"owner": {"id": 765}, "assignee": {"id": 869}, "organization": {"id": 983}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 399, "owner": {"id": 25}, "assignee": {"id": 591}, "organization": {"id": 146}, "project": {"owner": {"id": 736}, "assignee": {"id": 825}, "organization": {"id": 926}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 450}, "assignee": {"id": 32}, "organization": {"id": 151}, "project": {"owner": {"id": 786}, "assignee": {"id": 838}, "organization": {"id": 923}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 92}, "assignee": {"id": 528}, "organization": {"id": 606}, "project": {"owner": {"id": 704}, "assignee": {"id": 895}, "organization": {"id": 963}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 28}, "user": {"role": "owner"}}}, "resource": {"id": 384, "owner": {"id": 445}, "assignee": {"id": 28}, "organization": {"id": 607}, "project": {"owner": {"id": 789}, "assignee": {"id": 822}, "organization": {"id": 980}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 288}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 83}, "assignee": {"id": 510}, "organization": {"id": 171}, "project": {"owner": {"id": 747}, "assignee": {"id": 870}, "organization": {"id": 940}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 454}, "assignee": {"id": 20}, "organization": {"id": 198}, "project": {"owner": {"id": 772}, "assignee": {"id": 862}, "organization": {"id": 939}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 380, "owner": {"id": 69}, "assignee": {"id": 569}, "organization": {"id": 671}, "project": {"owner": {"id": 715}, "assignee": {"id": 815}, "organization": {"id": 991}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 325, "owner": {"id": 453}, "assignee": {"id": 71}, "organization": {"id": 611}, "project": {"owner": {"id": 783}, "assignee": {"id": 849}, "organization": {"id": 969}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 264}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 68}, "assignee": {"id": 508}, "organization": {"id": 198}, "project": {"owner": {"id": 754}, "assignee": {"id": 816}, "organization": {"id": 973}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"id": 379, "owner": {"id": 416}, "assignee": {"id": 11}, "organization": {"id": 133}, "project": {"owner": {"id": 787}, "assignee": {"id": 833}, "organization": {"id": 945}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 66}, "assignee": {"id": 535}, "organization": {"id": 682}, "project": {"owner": {"id": 749}, "assignee": {"id": 800}, "organization": {"id": 948}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 376, "owner": {"id": 492}, "assignee": {"id": 3}, "organization": {"id": 608}, "project": {"owner": {"id": 723}, "assignee": {"id": 815}, "organization": {"id": 974}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"id": 322, "owner": {"id": 60}, "assignee": {"id": 545}, "organization": {"id": 187}, "project": {"owner": {"id": 797}, "assignee": {"id": 830}, "organization": {"id": 964}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"id": 347, "owner": {"id": 411}, "assignee": {"id": 88}, "organization": {"id": 186}, "project": {"owner": {"id": 719}, "assignee": {"id": 882}, "organization": {"id": 976}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 21}, "assignee": {"id": 584}, "organization": {"id": 685}, "project": {"owner": {"id": 792}, "assignee": {"id": 865}, "organization": {"id": 914}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 319, "owner": {"id": 454}, "assignee": {"id": 82}, "organization": {"id": 637}, "project": {"owner": {"id": 715}, "assignee": {"id": 802}, "organization": {"id": 938}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 220}, "user": {"role": "maintainer"}}}, "resource": {"id": 333, "owner": {"id": 93}, "assignee": {"id": 539}, "organization": {"id": 192}, "project": {"owner": {"id": 712}, "assignee": {"id": 844}, "organization": {"id": 943}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 498}, "assignee": {"id": 67}, "organization": {"id": 133}, "project": {"owner": {"id": 766}, "assignee": {"id": 895}, "organization": {"id": 967}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 91, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 388, "owner": {"id": 91}, "assignee": {"id": 584}, "organization": {"id": 617}, "project": {"owner": {"id": 728}, "assignee": {"id": 872}, "organization": {"id": 997}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 189, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 478}, "assignee": {"id": 69}, "organization": {"id": 627}, "project": {"owner": {"id": 726}, "assignee": {"id": 800}, "organization": {"id": 944}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 7}, "assignee": {"id": 561}, "organization": {"id": 194}, "project": {"owner": {"id": 782}, "assignee": {"id": 879}, "organization": {"id": 941}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 411}, "assignee": {"id": 35}, "organization": {"id": 176}, "project": {"owner": {"id": 790}, "assignee": {"id": 830}, "organization": {"id": 975}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 94}, "assignee": {"id": 532}, "organization": {"id": 683}, "project": {"owner": {"id": 760}, "assignee": {"id": 883}, "organization": {"id": 933}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 139, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 440}, "assignee": {"id": 5}, "organization": {"id": 624}, "project": {"owner": {"id": 769}, "assignee": {"id": 834}, "organization": {"id": 998}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 243}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 71}, "assignee": {"id": 512}, "organization": {"id": 168}, "project": {"owner": {"id": 750}, "assignee": {"id": 857}, "organization": {"id": 907}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 242}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 457}, "assignee": {"id": 76}, "organization": {"id": 151}, "project": {"owner": {"id": 723}, "assignee": {"id": 803}, "organization": {"id": 996}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 243}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 41}, "assignee": {"id": 521}, "organization": {"id": 644}, "project": {"owner": {"id": 778}, "assignee": {"id": 848}, "organization": {"id": 902}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 478}, "assignee": {"id": 67}, "organization": {"id": 664}, "project": {"owner": {"id": 751}, "assignee": {"id": 866}, "organization": {"id": 912}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 273}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 40}, "assignee": {"id": 514}, "organization": {"id": 116}, "project": {"owner": {"id": 784}, "assignee": {"id": 824}, "organization": {"id": 981}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"id": 308, "owner": {"id": 467}, "assignee": {"id": 6}, "organization": {"id": 183}, "project": {"owner": {"id": 778}, "assignee": {"id": 818}, "organization": {"id": 937}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 64, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 207}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 64}, "assignee": {"id": 563}, "organization": {"id": 629}, "project": {"owner": {"id": 791}, "assignee": {"id": 854}, "organization": {"id": 921}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 363, "owner": {"id": 478}, "assignee": {"id": 87}, "organization": {"id": 659}, "project": {"owner": {"id": 775}, "assignee": {"id": 824}, "organization": {"id": 913}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 139, "owner": {"id": 76}, "user": {"role": "owner"}}}, "resource": {"id": 313, "owner": {"id": 76}, "assignee": {"id": 509}, "organization": {"id": 139}, "project": {"owner": {"id": 716}, "assignee": {"id": 833}, "organization": {"id": 953}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 373, "owner": {"id": 476}, "assignee": {"id": 51}, "organization": {"id": 173}, "project": {"owner": {"id": 784}, "assignee": {"id": 805}, "organization": {"id": 968}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 69}, "assignee": {"id": 595}, "organization": {"id": 695}, "project": {"owner": {"id": 767}, "assignee": {"id": 859}, "organization": {"id": 980}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 398, "owner": {"id": 401}, "assignee": {"id": 43}, "organization": {"id": 649}, "project": {"owner": {"id": 782}, "assignee": {"id": 898}, "organization": {"id": 954}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 64}, "assignee": {"id": 518}, "organization": {"id": 168}, "project": {"owner": {"id": 793}, "assignee": {"id": 881}, "organization": {"id": 966}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 22, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 233}, "user": {"role": null}}}, "resource": {"id": 336, "owner": {"id": 499}, "assignee": {"id": 22}, "organization": {"id": 194}, "project": {"owner": {"id": 739}, "assignee": {"id": 865}, "organization": {"id": 961}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 76}, "assignee": {"id": 595}, "organization": {"id": 626}, "project": {"owner": {"id": 759}, "assignee": {"id": 800}, "organization": {"id": 963}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 391, "owner": {"id": 436}, "assignee": {"id": 65}, "organization": {"id": 695}, "project": {"owner": {"id": 764}, "assignee": {"id": 862}, "organization": {"id": 900}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"id": 301, "owner": {"id": 80}, "assignee": {"id": 562}, "organization": {"id": 112}, "project": {"owner": {"id": 711}, "assignee": {"id": 865}, "organization": {"id": 909}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"id": 397, "owner": {"id": 413}, "assignee": {"id": 66}, "organization": {"id": 106}, "project": {"owner": {"id": 738}, "assignee": {"id": 855}, "organization": {"id": 965}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 43}, "assignee": {"id": 535}, "organization": {"id": 672}, "project": {"owner": {"id": 727}, "assignee": {"id": 802}, "organization": {"id": 950}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 107, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 453}, "assignee": {"id": 56}, "organization": {"id": 664}, "project": {"owner": {"id": 715}, "assignee": {"id": 815}, "organization": {"id": 980}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 22, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 22}, "assignee": {"id": 507}, "organization": {"id": 157}, "project": {"owner": {"id": 711}, "assignee": {"id": 857}, "organization": {"id": 939}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 446}, "assignee": {"id": 41}, "organization": {"id": 123}, "project": {"owner": {"id": 746}, "assignee": {"id": 826}, "organization": {"id": 974}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 131, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 28}, "assignee": {"id": 533}, "organization": {"id": 608}, "project": {"owner": {"id": 751}, "assignee": {"id": 844}, "organization": {"id": 956}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 320, "owner": {"id": 458}, "assignee": {"id": 55}, "organization": {"id": 609}, "project": {"owner": {"id": 711}, "assignee": {"id": 851}, "organization": {"id": 963}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"id": 312, "owner": {"id": 16}, "assignee": {"id": 514}, "organization": {"id": 186}, "project": {"owner": {"id": 757}, "assignee": {"id": 820}, "organization": {"id": 957}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 424}, "assignee": {"id": 88}, "organization": {"id": 189}, "project": {"owner": {"id": 772}, "assignee": {"id": 840}, "organization": {"id": 988}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 138, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 34}, "assignee": {"id": 516}, "organization": {"id": 689}, "project": {"owner": {"id": 766}, "assignee": {"id": 894}, "organization": {"id": 922}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"id": 314, "owner": {"id": 485}, "assignee": {"id": 22}, "organization": {"id": 630}, "project": {"owner": {"id": 784}, "assignee": {"id": 806}, "organization": {"id": 912}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 29}, "assignee": {"id": 505}, "organization": {"id": 187}, "project": {"owner": {"id": 727}, "assignee": {"id": 803}, "organization": {"id": 994}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 283}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 429}, "assignee": {"id": 60}, "organization": {"id": 159}, "project": {"owner": {"id": 784}, "assignee": {"id": 805}, "organization": {"id": 905}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 326, "owner": {"id": 7}, "assignee": {"id": 549}, "organization": {"id": 661}, "project": {"owner": {"id": 702}, "assignee": {"id": 819}, "organization": {"id": 920}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 414}, "assignee": {"id": 50}, "organization": {"id": 649}, "project": {"owner": {"id": 759}, "assignee": {"id": 845}, "organization": {"id": 903}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 156, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 17}, "assignee": {"id": 581}, "organization": {"id": 156}, "project": {"owner": {"id": 705}, "assignee": {"id": 816}, "organization": {"id": 903}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 492}, "assignee": {"id": 87}, "organization": {"id": 142}, "project": {"owner": {"id": 724}, "assignee": {"id": 866}, "organization": {"id": 950}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 76}, "assignee": {"id": 546}, "organization": {"id": 613}, "project": {"owner": {"id": 763}, "assignee": {"id": 866}, "organization": {"id": 979}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"id": 320, "owner": {"id": 497}, "assignee": {"id": 24}, "organization": {"id": 637}, "project": {"owner": {"id": 710}, "assignee": {"id": 863}, "organization": {"id": 942}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 314, "owner": {"id": 56}, "assignee": {"id": 503}, "organization": {"id": 140}, "project": {"owner": {"id": 723}, "assignee": {"id": 887}, "organization": {"id": 903}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 367, "owner": {"id": 446}, "assignee": {"id": 74}, "organization": {"id": 157}, "project": {"owner": {"id": 717}, "assignee": {"id": 808}, "organization": {"id": 942}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 352, "owner": {"id": 85}, "assignee": {"id": 506}, "organization": {"id": 619}, "project": {"owner": {"id": 729}, "assignee": {"id": 840}, "organization": {"id": 972}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 450}, "assignee": {"id": 84}, "organization": {"id": 662}, "project": {"owner": {"id": 767}, "assignee": {"id": 875}, "organization": {"id": 996}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 314, "owner": {"id": 20}, "assignee": {"id": 507}, "organization": {"id": 122}, "project": {"owner": {"id": 722}, "assignee": {"id": 819}, "organization": {"id": 973}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 282}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 432}, "assignee": {"id": 72}, "organization": {"id": 187}, "project": {"owner": {"id": 771}, "assignee": {"id": 818}, "organization": {"id": 909}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 244}, "user": {"role": "worker"}}}, "resource": {"id": 322, "owner": {"id": 28}, "assignee": {"id": 554}, "organization": {"id": 639}, "project": {"owner": {"id": 753}, "assignee": {"id": 827}, "organization": {"id": 993}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 464}, "assignee": {"id": 37}, "organization": {"id": 693}, "project": {"owner": {"id": 724}, "assignee": {"id": 816}, "organization": {"id": 998}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"id": 336, "owner": {"id": 31}, "assignee": {"id": 539}, "organization": {"id": 169}, "project": {"owner": {"id": 750}, "assignee": {"id": 817}, "organization": {"id": 931}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 176, "owner": {"id": 248}, "user": {"role": "supervisor"}}}, "resource": {"id": 300, "owner": {"id": 452}, "assignee": {"id": 71}, "organization": {"id": 176}, "project": {"owner": {"id": 717}, "assignee": {"id": 842}, "organization": {"id": 970}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 3, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"id": 371, "owner": {"id": 3}, "assignee": {"id": 551}, "organization": {"id": 640}, "project": {"owner": {"id": 759}, "assignee": {"id": 893}, "organization": {"id": 982}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 301, "owner": {"id": 494}, "assignee": {"id": 14}, "organization": {"id": 677}, "project": {"owner": {"id": 723}, "assignee": {"id": 893}, "organization": {"id": 916}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"id": 307, "owner": {"id": 26}, "assignee": {"id": 562}, "organization": {"id": 186}, "project": {"owner": {"id": 711}, "assignee": {"id": 840}, "organization": {"id": 940}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"id": 332, "owner": {"id": 455}, "assignee": {"id": 17}, "organization": {"id": 147}, "project": {"owner": {"id": 740}, "assignee": {"id": 888}, "organization": {"id": 924}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 89}, "assignee": {"id": 522}, "organization": {"id": 693}, "project": {"owner": {"id": 718}, "assignee": {"id": 842}, "organization": {"id": 941}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 439}, "assignee": {"id": 67}, "organization": {"id": 671}, "project": {"owner": {"id": 743}, "assignee": {"id": 821}, "organization": {"id": 986}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 81}, "assignee": {"id": 517}, "organization": {"id": 171}, "project": {"owner": {"id": 778}, "assignee": {"id": 878}, "organization": {"id": 923}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 471}, "assignee": {"id": 2}, "organization": {"id": 155}, "project": {"owner": {"id": 742}, "assignee": {"id": 825}, "organization": {"id": 945}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 304, "owner": {"id": 85}, "assignee": {"id": 539}, "organization": {"id": 616}, "project": {"owner": {"id": 791}, "assignee": {"id": 838}, "organization": {"id": 970}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 491}, "assignee": {"id": 74}, "organization": {"id": 682}, "project": {"owner": {"id": 784}, "assignee": {"id": 836}, "organization": {"id": 997}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 107, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 376, "owner": {"id": 52}, "assignee": {"id": 519}, "organization": {"id": 107}, "project": {"owner": {"id": 796}, "assignee": {"id": 887}, "organization": {"id": 938}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 376, "owner": {"id": 428}, "assignee": {"id": 598}, "organization": {"id": 139}, "project": {"owner": {"id": 744}, "assignee": {"id": 893}, "organization": {"id": 980}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 354, "owner": {"id": 72}, "assignee": {"id": 535}, "organization": {"id": 661}, "project": {"owner": {"id": 795}, "assignee": {"id": 891}, "organization": {"id": 944}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 458}, "assignee": {"id": 594}, "organization": {"id": 647}, "project": {"owner": {"id": 785}, "assignee": {"id": 885}, "organization": {"id": 930}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"id": 357, "owner": {"id": 39}, "assignee": {"id": 553}, "organization": {"id": 172}, "project": {"owner": {"id": 732}, "assignee": {"id": 851}, "organization": {"id": 921}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 170, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"id": 333, "owner": {"id": 471}, "assignee": {"id": 545}, "organization": {"id": 170}, "project": {"owner": {"id": 709}, "assignee": {"id": 840}, "organization": {"id": 982}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 288}, "user": {"role": "worker"}}}, "resource": {"id": 324, "owner": {"id": 18}, "assignee": {"id": 573}, "organization": {"id": 644}, "project": {"owner": {"id": 799}, "assignee": {"id": 850}, "organization": {"id": 907}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 132, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 433}, "assignee": {"id": 596}, "organization": {"id": 688}, "project": {"owner": {"id": 791}, "assignee": {"id": 820}, "organization": {"id": 992}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 13}, "assignee": {"id": 503}, "organization": {"id": 105}, "project": {"owner": {"id": 730}, "assignee": {"id": 843}, "organization": {"id": 977}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 132, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 350, "owner": {"id": 465}, "assignee": {"id": 557}, "organization": {"id": 132}, "project": {"owner": {"id": 750}, "assignee": {"id": 821}, "organization": {"id": 974}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"id": 361, "owner": {"id": 32}, "assignee": {"id": 530}, "organization": {"id": 638}, "project": {"owner": {"id": 712}, "assignee": {"id": 863}, "organization": {"id": 974}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 160, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 451}, "assignee": {"id": 588}, "organization": {"id": 641}, "project": {"owner": {"id": 754}, "assignee": {"id": 828}, "organization": {"id": 998}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 384, "owner": {"id": 483}, "assignee": {"id": 65}, "organization": {"id": 184}, "project": {"owner": {"id": 733}, "assignee": {"id": 813}, "organization": {"id": 906}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"id": 368, "owner": {"id": 414}, "assignee": {"id": 592}, "organization": {"id": 199}, "project": {"owner": {"id": 729}, "assignee": {"id": 803}, "organization": {"id": 967}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 309, "owner": {"id": 491}, "assignee": {"id": 19}, "organization": {"id": 661}, "project": {"owner": {"id": 781}, "assignee": {"id": 871}, "organization": {"id": 941}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 127, "owner": {"id": 243}, "user": {"role": "worker"}}}, "resource": {"id": 343, "owner": {"id": 471}, "assignee": {"id": 553}, "organization": {"id": 680}, "project": {"owner": {"id": 715}, "assignee": {"id": 845}, "organization": {"id": 903}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 278}, "user": {"role": "maintainer"}}}, "resource": {"id": 384, "owner": {"id": 447}, "assignee": {"id": 38}, "organization": {"id": 122}, "project": {"owner": {"id": 783}, "assignee": {"id": 829}, "organization": {"id": 952}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"id": 397, "owner": {"id": 462}, "assignee": {"id": 509}, "organization": {"id": 158}, "project": {"owner": {"id": 704}, "assignee": {"id": 822}, "organization": {"id": 906}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 384, "owner": {"id": 492}, "assignee": {"id": 5}, "organization": {"id": 637}, "project": {"owner": {"id": 729}, "assignee": {"id": 869}, "organization": {"id": 929}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 369, "owner": {"id": 488}, "assignee": {"id": 536}, "organization": {"id": 625}, "project": {"owner": {"id": 708}, "assignee": {"id": 863}, "organization": {"id": 958}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"id": 303, "owner": {"id": 456}, "assignee": {"id": 52}, "organization": {"id": 129}, "project": {"owner": {"id": 791}, "assignee": {"id": 866}, "organization": {"id": 971}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 371, "owner": {"id": 406}, "assignee": {"id": 598}, "organization": {"id": 101}, "project": {"owner": {"id": 760}, "assignee": {"id": 886}, "organization": {"id": 992}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"id": 353, "owner": {"id": 495}, "assignee": {"id": 30}, "organization": {"id": 616}, "project": {"owner": {"id": 719}, "assignee": {"id": 839}, "organization": {"id": 950}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 467}, "assignee": {"id": 597}, "organization": {"id": 614}, "project": {"owner": {"id": 740}, "assignee": {"id": 882}, "organization": {"id": 996}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 99, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"id": 358, "owner": {"id": 482}, "assignee": {"id": 99}, "organization": {"id": 109}, "project": {"owner": {"id": 759}, "assignee": {"id": 866}, "organization": {"id": 929}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 468}, "assignee": {"id": 588}, "organization": {"id": 133}, "project": {"owner": {"id": 778}, "assignee": {"id": 861}, "organization": {"id": 968}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 322, "owner": {"id": 491}, "assignee": {"id": 32}, "organization": {"id": 615}, "project": {"owner": {"id": 772}, "assignee": {"id": 819}, "organization": {"id": 972}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 374, "owner": {"id": 423}, "assignee": {"id": 578}, "organization": {"id": 630}, "project": {"owner": {"id": 785}, "assignee": {"id": 806}, "organization": {"id": 901}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"id": 316, "owner": {"id": 480}, "assignee": {"id": 43}, "organization": {"id": 192}, "project": {"owner": {"id": 703}, "assignee": {"id": 819}, "organization": {"id": 986}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 393, "owner": {"id": 459}, "assignee": {"id": 532}, "organization": {"id": 172}, "project": {"owner": {"id": 762}, "assignee": {"id": 838}, "organization": {"id": 947}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"id": 373, "owner": {"id": 432}, "assignee": {"id": 38}, "organization": {"id": 606}, "project": {"owner": {"id": 704}, "assignee": {"id": 883}, "organization": {"id": 926}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"id": 371, "owner": {"id": 477}, "assignee": {"id": 521}, "organization": {"id": 696}, "project": {"owner": {"id": 714}, "assignee": {"id": 852}, "organization": {"id": 979}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"id": 306, "owner": {"id": 414}, "assignee": {"id": 50}, "organization": {"id": 145}, "project": {"owner": {"id": 778}, "assignee": {"id": 880}, "organization": {"id": 919}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 449}, "assignee": {"id": 535}, "organization": {"id": 131}, "project": {"owner": {"id": 718}, "assignee": {"id": 881}, "organization": {"id": 912}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 456}, "assignee": {"id": 21}, "organization": {"id": 668}, "project": {"owner": {"id": 744}, "assignee": {"id": 822}, "organization": {"id": 974}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 16, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 406}, "assignee": {"id": 572}, "organization": {"id": 674}, "project": {"owner": {"id": 767}, "assignee": {"id": 888}, "organization": {"id": 940}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 323, "owner": {"id": 474}, "assignee": {"id": 35}, "organization": {"id": 117}, "project": {"owner": {"id": 776}, "assignee": {"id": 893}, "organization": {"id": 916}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 286}, "user": {"role": null}}}, "resource": {"id": 371, "owner": {"id": 465}, "assignee": {"id": 579}, "organization": {"id": 191}, "project": {"owner": {"id": 766}, "assignee": {"id": 894}, "organization": {"id": 904}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 362, "owner": {"id": 482}, "assignee": {"id": 40}, "organization": {"id": 661}, "project": {"owner": {"id": 735}, "assignee": {"id": 800}, "organization": {"id": 983}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 463}, "assignee": {"id": 502}, "organization": {"id": 698}, "project": {"owner": {"id": 788}, "assignee": {"id": 894}, "organization": {"id": 954}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 446}, "assignee": {"id": 54}, "organization": {"id": 177}, "project": {"owner": {"id": 730}, "assignee": {"id": 804}, "organization": {"id": 963}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"id": 382, "owner": {"id": 404}, "assignee": {"id": 561}, "organization": {"id": 103}, "project": {"owner": {"id": 762}, "assignee": {"id": 829}, "organization": {"id": 929}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 393, "owner": {"id": 407}, "assignee": {"id": 5}, "organization": {"id": 650}, "project": {"owner": {"id": 743}, "assignee": {"id": 864}, "organization": {"id": 980}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 442}, "assignee": {"id": 596}, "organization": {"id": 610}, "project": {"owner": {"id": 763}, "assignee": {"id": 884}, "organization": {"id": 966}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 130, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 422}, "assignee": {"id": 89}, "organization": {"id": 130}, "project": {"owner": {"id": 760}, "assignee": {"id": 831}, "organization": {"id": 974}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view:data", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 442}, "assignee": {"id": 522}, "organization": {"id": 158}, "project": {"owner": {"id": 780}, "assignee": {"id": 886}, "organization": {"id": 942}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 396, "owner": {"id": 406}, "assignee": {"id": 78}, "organization": {"id": 642}, "project": {"owner": {"id": 726}, "assignee": {"id": 853}, "organization": {"id": 924}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 382, "owner": {"id": 462}, "assignee": {"id": 585}, "organization": {"id": 633}, "project": {"owner": {"id": 789}, "assignee": {"id": 804}, "organization": {"id": 967}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"id": 326, "owner": {"id": 463}, "assignee": {"id": 83}, "organization": {"id": 104}, "project": {"owner": {"id": 721}, "assignee": {"id": 876}, "organization": {"id": 952}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 417}, "assignee": {"id": 563}, "organization": {"id": 132}, "project": {"owner": {"id": 732}, "assignee": {"id": 829}, "organization": {"id": 997}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 488}, "assignee": {"id": 58}, "organization": {"id": 655}, "project": {"owner": {"id": 751}, "assignee": {"id": 876}, "organization": {"id": 917}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 248}, "user": {"role": "supervisor"}}}, "resource": {"id": 369, "owner": {"id": 420}, "assignee": {"id": 521}, "organization": {"id": 687}, "project": {"owner": {"id": 702}, "assignee": {"id": 848}, "organization": {"id": 964}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 498}, "assignee": {"id": 30}, "organization": {"id": 118}, "project": {"owner": {"id": 767}, "assignee": {"id": 843}, "organization": {"id": 974}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 172, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 422}, "assignee": {"id": 500}, "organization": {"id": 172}, "project": {"owner": {"id": 781}, "assignee": {"id": 813}, "organization": {"id": 972}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 408}, "assignee": {"id": 49}, "organization": {"id": 614}, "project": {"owner": {"id": 707}, "assignee": {"id": 833}, "organization": {"id": 911}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 460}, "assignee": {"id": 578}, "organization": {"id": 659}, "project": {"owner": {"id": 757}, "assignee": {"id": 832}, "organization": {"id": 996}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 349, "owner": {"id": 401}, "assignee": {"id": 57}, "organization": {"id": 180}, "project": {"owner": {"id": 791}, "assignee": {"id": 893}, "organization": {"id": 934}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 105, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 440}, "assignee": {"id": 551}, "organization": {"id": 105}, "project": {"owner": {"id": 791}, "assignee": {"id": 888}, "organization": {"id": 947}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 458}, "assignee": {"id": 15}, "organization": {"id": 634}, "project": {"owner": {"id": 706}, "assignee": {"id": 863}, "organization": {"id": 960}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 470}, "assignee": {"id": 563}, "organization": {"id": 697}, "project": {"owner": {"id": 785}, "assignee": {"id": 873}, "organization": {"id": 925}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 485}, "assignee": {"id": 55}, "organization": {"id": 127}, "project": {"owner": {"id": 791}, "assignee": {"id": 808}, "organization": {"id": 967}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 306, "owner": {"id": 499}, "assignee": {"id": 552}, "organization": {"id": 110}, "project": {"owner": {"id": 782}, "assignee": {"id": 818}, "organization": {"id": 958}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"id": 393, "owner": {"id": 416}, "assignee": {"id": 50}, "organization": {"id": 678}, "project": {"owner": {"id": 719}, "assignee": {"id": 874}, "organization": {"id": 900}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"id": 364, "owner": {"id": 421}, "assignee": {"id": 574}, "organization": {"id": 672}, "project": {"owner": {"id": 719}, "assignee": {"id": 814}, "organization": {"id": 912}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 320, "owner": {"id": 486}, "assignee": {"id": 58}, "organization": {"id": 115}, "project": {"owner": {"id": 712}, "assignee": {"id": 885}, "organization": {"id": 984}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 255}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 494}, "assignee": {"id": 503}, "organization": {"id": 115}, "project": {"owner": {"id": 706}, "assignee": {"id": 870}, "organization": {"id": 965}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 407}, "assignee": {"id": 3}, "organization": {"id": 646}, "project": {"owner": {"id": 705}, "assignee": {"id": 881}, "organization": {"id": 983}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 473}, "assignee": {"id": 587}, "organization": {"id": 677}, "project": {"owner": {"id": 796}, "assignee": {"id": 834}, "organization": {"id": 970}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 430}, "assignee": {"id": 88}, "organization": {"id": 194}, "project": {"owner": {"id": 783}, "assignee": {"id": 852}, "organization": {"id": 945}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 428}, "assignee": {"id": 510}, "organization": {"id": 174}, "project": {"owner": {"id": 747}, "assignee": {"id": 807}, "organization": {"id": 911}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 165, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"id": 354, "owner": {"id": 430}, "assignee": {"id": 61}, "organization": {"id": 641}, "project": {"owner": {"id": 709}, "assignee": {"id": 854}, "organization": {"id": 965}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 357, "owner": {"id": 422}, "assignee": {"id": 592}, "organization": {"id": 665}, "project": {"owner": {"id": 751}, "assignee": {"id": 852}, "organization": {"id": 913}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 77}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 457}, "assignee": {"id": 77}, "organization": {"id": 194}, "project": {"owner": {"id": 790}, "assignee": {"id": 822}, "organization": {"id": 971}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 228}, "user": {"role": "worker"}}}, "resource": {"id": 321, "owner": {"id": 437}, "assignee": {"id": 546}, "organization": {"id": 165}, "project": {"owner": {"id": 756}, "assignee": {"id": 802}, "organization": {"id": 963}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"id": 372, "owner": {"id": 448}, "assignee": {"id": 87}, "organization": {"id": 619}, "project": {"owner": {"id": 702}, "assignee": {"id": 878}, "organization": {"id": 943}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 326, "owner": {"id": 435}, "assignee": {"id": 544}, "organization": {"id": 644}, "project": {"owner": {"id": 749}, "assignee": {"id": 806}, "organization": {"id": 903}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 379, "owner": {"id": 463}, "assignee": {"id": 59}, "organization": {"id": 160}, "project": {"owner": {"id": 722}, "assignee": {"id": 819}, "organization": {"id": 999}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 440}, "assignee": {"id": 536}, "organization": {"id": 177}, "project": {"owner": {"id": 790}, "assignee": {"id": 806}, "organization": {"id": 949}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 150, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 333, "owner": {"id": 494}, "assignee": {"id": 39}, "organization": {"id": 673}, "project": {"owner": {"id": 775}, "assignee": {"id": 882}, "organization": {"id": 906}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 30, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 237}, "user": {"role": null}}}, "resource": {"id": 395, "owner": {"id": 462}, "assignee": {"id": 541}, "organization": {"id": 613}, "project": {"owner": {"id": 767}, "assignee": {"id": 823}, "organization": {"id": 983}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"id": 333, "owner": {"id": 492}, "assignee": {"id": 43}, "organization": {"id": 109}, "project": {"owner": {"id": 720}, "assignee": {"id": 861}, "organization": {"id": 978}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 10}, "user": {"role": "owner"}}}, "resource": {"id": 324, "owner": {"id": 475}, "assignee": {"id": 591}, "organization": {"id": 145}, "project": {"owner": {"id": 728}, "assignee": {"id": 860}, "organization": {"id": 929}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 295}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 462}, "assignee": {"id": 82}, "organization": {"id": 651}, "project": {"owner": {"id": 796}, "assignee": {"id": 831}, "organization": {"id": 958}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 473}, "assignee": {"id": 534}, "organization": {"id": 643}, "project": {"owner": {"id": 708}, "assignee": {"id": 867}, "organization": {"id": 999}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 391, "owner": {"id": 458}, "assignee": {"id": 44}, "organization": {"id": 117}, "project": {"owner": {"id": 789}, "assignee": {"id": 886}, "organization": {"id": 952}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 480}, "assignee": {"id": 573}, "organization": {"id": 133}, "project": {"owner": {"id": 778}, "assignee": {"id": 877}, "organization": {"id": 979}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 499}, "assignee": {"id": 32}, "organization": {"id": 641}, "project": {"owner": {"id": 760}, "assignee": {"id": 827}, "organization": {"id": 958}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 455}, "assignee": {"id": 568}, "organization": {"id": 687}, "project": {"owner": {"id": 703}, "assignee": {"id": 869}, "organization": {"id": 979}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 226}, "user": {"role": null}}}, "resource": {"id": 307, "owner": {"id": 403}, "assignee": {"id": 84}, "organization": {"id": 163}, "project": {"owner": {"id": 736}, "assignee": {"id": 884}, "organization": {"id": 909}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"id": 370, "owner": {"id": 411}, "assignee": {"id": 531}, "organization": {"id": 119}, "project": {"owner": {"id": 781}, "assignee": {"id": 827}, "organization": {"id": 999}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 264}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 446}, "assignee": {"id": 26}, "organization": {"id": 692}, "project": {"owner": {"id": 738}, "assignee": {"id": 868}, "organization": {"id": 929}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 283}, "user": {"role": "supervisor"}}}, "resource": {"id": 397, "owner": {"id": 430}, "assignee": {"id": 536}, "organization": {"id": 659}, "project": {"owner": {"id": 799}, "assignee": {"id": 810}, "organization": {"id": 970}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 382, "owner": {"id": 492}, "assignee": {"id": 0}, "organization": {"id": 124}, "project": {"owner": {"id": 773}, "assignee": {"id": 897}, "organization": {"id": 931}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": {"id": 160, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 433}, "assignee": {"id": 560}, "organization": {"id": 160}, "project": {"owner": {"id": 792}, "assignee": {"id": 856}, "organization": {"id": 915}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"id": 336, "owner": {"id": 484}, "assignee": {"id": 48}, "organization": {"id": 636}, "project": {"owner": {"id": 718}, "assignee": {"id": 858}, "organization": {"id": 956}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"id": 342, "owner": {"id": 401}, "assignee": {"id": 581}, "organization": {"id": 649}, "project": {"owner": {"id": 742}, "assignee": {"id": 867}, "organization": {"id": 972}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 176, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 355, "owner": {"id": 456}, "assignee": {"id": 31}, "organization": {"id": 176}, "project": {"owner": {"id": 779}, "assignee": {"id": 815}, "organization": {"id": 916}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 118, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 446}, "assignee": {"id": 558}, "organization": {"id": 118}, "project": {"owner": {"id": 737}, "assignee": {"id": 879}, "organization": {"id": 900}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 345, "owner": {"id": 482}, "assignee": {"id": 87}, "organization": {"id": 643}, "project": {"owner": {"id": 724}, "assignee": {"id": 899}, "organization": {"id": 902}}}} } -test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view:data", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 160, "owner": {"id": 210}, "user": {"role": null}}}, "resource": {"id": 340, "owner": {"id": 429}, "assignee": {"id": 520}, "organization": {"id": 654}, "project": {"owner": {"id": 797}, "assignee": {"id": 877}, "organization": {"id": 931}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 457}, "assignee": {"id": 86}, "organization": {"id": 103}, "project": {"owner": {"id": 781}, "assignee": {"id": 831}, "organization": {"id": 987}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": null}, "resource": {"id": 311, "owner": {"id": 490}, "assignee": {"id": 571}, "organization": {"id": 657}, "project": {"owner": {"id": 63}, "assignee": {"id": 800}, "organization": {"id": 996}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 390, "owner": {"id": 493}, "assignee": {"id": 45}, "organization": {"id": 627}, "project": {"owner": {"id": 768}, "assignee": {"id": 815}, "organization": {"id": 913}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": null}, "resource": {"id": 310, "owner": {"id": 451}, "assignee": {"id": 579}, "organization": {"id": 696}, "project": {"owner": {"id": 9}, "assignee": {"id": 832}, "organization": {"id": 906}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"id": 370, "owner": {"id": 475}, "assignee": {"id": 14}, "organization": {"id": 175}, "project": {"owner": {"id": 720}, "assignee": {"id": 871}, "organization": {"id": 964}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 11, "privilege": "user"}, "organization": null}, "resource": {"id": 359, "owner": {"id": 448}, "assignee": {"id": 534}, "organization": {"id": 643}, "project": {"owner": {"id": 11}, "assignee": {"id": 834}, "organization": {"id": 939}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 382, "owner": {"id": 458}, "assignee": {"id": 85}, "organization": {"id": 637}, "project": {"owner": {"id": 781}, "assignee": {"id": 814}, "organization": {"id": 978}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": null}, "resource": {"id": 369, "owner": {"id": 415}, "assignee": {"id": 532}, "organization": {"id": 680}, "project": {"owner": {"id": 76}, "assignee": {"id": 827}, "organization": {"id": 999}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 380, "owner": {"id": 422}, "assignee": {"id": 55}, "organization": {"id": 164}, "project": {"owner": {"id": 774}, "assignee": {"id": 859}, "organization": {"id": 966}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": null}, "resource": {"id": 383, "owner": {"id": 475}, "assignee": {"id": 513}, "organization": {"id": 644}, "project": {"owner": {"id": 46}, "assignee": {"id": 811}, "organization": {"id": 970}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"id": 340, "owner": {"id": 461}, "assignee": {"id": 99}, "organization": {"id": 680}, "project": {"owner": {"id": 788}, "assignee": {"id": 854}, "organization": {"id": 920}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": null}, "resource": {"id": 305, "owner": {"id": 486}, "assignee": {"id": 543}, "organization": {"id": 650}, "project": {"owner": {"id": 792}, "assignee": {"id": 44}, "organization": {"id": 972}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 426}, "assignee": {"id": 554}, "organization": {"id": 108}, "project": {"owner": {"id": 713}, "assignee": {"id": 833}, "organization": {"id": 909}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": null}, "resource": {"id": 353, "owner": {"id": 469}, "assignee": {"id": 512}, "organization": {"id": 644}, "project": {"owner": {"id": 752}, "assignee": {"id": 56}, "organization": {"id": 955}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 127, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 414}, "assignee": {"id": 529}, "organization": {"id": 600}, "project": {"owner": {"id": 713}, "assignee": {"id": 858}, "organization": {"id": 935}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": null}, "resource": {"id": 396, "owner": {"id": 467}, "assignee": {"id": 529}, "organization": {"id": 677}, "project": {"owner": {"id": 725}, "assignee": {"id": 24}, "organization": {"id": 948}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 398, "owner": {"id": 418}, "assignee": {"id": 597}, "organization": {"id": 179}, "project": {"owner": {"id": 709}, "assignee": {"id": 893}, "organization": {"id": 962}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": null}, "resource": {"id": 309, "owner": {"id": 428}, "assignee": {"id": 583}, "organization": {"id": 665}, "project": {"owner": {"id": 733}, "assignee": {"id": 91}, "organization": {"id": 934}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 429}, "assignee": {"id": 565}, "organization": {"id": 665}, "project": {"owner": {"id": 795}, "assignee": {"id": 883}, "organization": {"id": 978}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": null}, "resource": {"id": 368, "owner": {"id": 478}, "assignee": {"id": 570}, "organization": {"id": 612}, "project": {"owner": {"id": 749}, "assignee": {"id": 39}, "organization": {"id": 940}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 486}, "assignee": {"id": 551}, "organization": {"id": 166}, "project": {"owner": {"id": 761}, "assignee": {"id": 815}, "organization": {"id": 935}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": null}, "resource": {"id": 345, "owner": {"id": 14}, "assignee": {"id": 517}, "organization": {"id": 688}, "project": {"owner": {"id": 797}, "assignee": {"id": 881}, "organization": {"id": 904}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 356, "owner": {"id": 409}, "assignee": {"id": 587}, "organization": {"id": 686}, "project": {"owner": {"id": 733}, "assignee": {"id": 804}, "organization": {"id": 994}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": null}, "resource": {"id": 320, "owner": {"id": 34}, "assignee": {"id": 527}, "organization": {"id": 651}, "project": {"owner": {"id": 722}, "assignee": {"id": 870}, "organization": {"id": 974}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 381, "owner": {"id": 404}, "assignee": {"id": 586}, "organization": {"id": 126}, "project": {"owner": {"id": 729}, "assignee": {"id": 830}, "organization": {"id": 944}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 9, "privilege": "user"}, "organization": null}, "resource": {"id": 313, "owner": {"id": 9}, "assignee": {"id": 570}, "organization": {"id": 674}, "project": {"owner": {"id": 756}, "assignee": {"id": 839}, "organization": {"id": 995}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 292}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 486}, "assignee": {"id": 525}, "organization": {"id": 699}, "project": {"owner": {"id": 799}, "assignee": {"id": 818}, "organization": {"id": 949}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": null}, "resource": {"id": 328, "owner": {"id": 81}, "assignee": {"id": 568}, "organization": {"id": 629}, "project": {"owner": {"id": 793}, "assignee": {"id": 861}, "organization": {"id": 983}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 301, "owner": {"id": 414}, "assignee": {"id": 578}, "organization": {"id": 108}, "project": {"owner": {"id": 703}, "assignee": {"id": 825}, "organization": {"id": 987}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": null}, "resource": {"id": 340, "owner": {"id": 79}, "assignee": {"id": 517}, "organization": {"id": 647}, "project": {"owner": {"id": 711}, "assignee": {"id": 859}, "organization": {"id": 927}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"id": 394, "owner": {"id": 473}, "assignee": {"id": 517}, "organization": {"id": 697}, "project": {"owner": {"id": 712}, "assignee": {"id": 879}, "organization": {"id": 903}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": null}, "resource": {"id": 347, "owner": {"id": 400}, "assignee": {"id": 73}, "organization": {"id": 637}, "project": {"owner": {"id": 749}, "assignee": {"id": 889}, "organization": {"id": 935}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 315, "owner": {"id": 404}, "assignee": {"id": 598}, "organization": {"id": 184}, "project": {"owner": {"id": 737}, "assignee": {"id": 857}, "organization": {"id": 959}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": null}, "resource": {"id": 362, "owner": {"id": 435}, "assignee": {"id": 9}, "organization": {"id": 637}, "project": {"owner": {"id": 741}, "assignee": {"id": 888}, "organization": {"id": 924}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 470}, "assignee": {"id": 587}, "organization": {"id": 605}, "project": {"owner": {"id": 744}, "assignee": {"id": 823}, "organization": {"id": 903}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": null}, "resource": {"id": 374, "owner": {"id": 456}, "assignee": {"id": 50}, "organization": {"id": 628}, "project": {"owner": {"id": 724}, "assignee": {"id": 877}, "organization": {"id": 965}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 453}, "assignee": {"id": 561}, "organization": {"id": 148}, "project": {"owner": {"id": 774}, "assignee": {"id": 868}, "organization": {"id": 942}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": null}, "resource": {"id": 311, "owner": {"id": 475}, "assignee": {"id": 73}, "organization": {"id": 623}, "project": {"owner": {"id": 753}, "assignee": {"id": 855}, "organization": {"id": 912}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 282}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 483}, "assignee": {"id": 580}, "organization": {"id": 643}, "project": {"owner": {"id": 759}, "assignee": {"id": 857}, "organization": {"id": 944}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": null}, "resource": {"id": 325, "owner": {"id": 430}, "assignee": {"id": 74}, "organization": {"id": 623}, "project": {"owner": {"id": 734}, "assignee": {"id": 863}, "organization": {"id": 970}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"id": 334, "owner": {"id": 417}, "assignee": {"id": 556}, "organization": {"id": 155}, "project": {"owner": {"id": 705}, "assignee": {"id": 881}, "organization": {"id": 933}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": null}, "resource": {"id": 340, "owner": {"id": 403}, "assignee": {"id": 589}, "organization": {"id": 608}, "project": {"owner": {"id": 789}, "assignee": {"id": 831}, "organization": {"id": 963}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 216}, "user": {"role": "supervisor"}}}, "resource": {"id": 331, "owner": {"id": 437}, "assignee": {"id": 531}, "organization": {"id": 668}, "project": {"owner": {"id": 726}, "assignee": {"id": 882}, "organization": {"id": 960}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": null}, "resource": {"id": 304, "owner": {"id": 460}, "assignee": {"id": 562}, "organization": {"id": 627}, "project": {"owner": {"id": 716}, "assignee": {"id": 808}, "organization": {"id": 957}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"id": 358, "owner": {"id": 403}, "assignee": {"id": 576}, "organization": {"id": 193}, "project": {"owner": {"id": 734}, "assignee": {"id": 867}, "organization": {"id": 951}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": null}, "resource": {"id": 378, "owner": {"id": 443}, "assignee": {"id": 541}, "organization": {"id": 694}, "project": {"owner": {"id": 745}, "assignee": {"id": 837}, "organization": {"id": 924}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 450}, "assignee": {"id": 558}, "organization": {"id": 684}, "project": {"owner": {"id": 700}, "assignee": {"id": 876}, "organization": {"id": 998}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": null}, "resource": {"id": 371, "owner": {"id": 491}, "assignee": {"id": 555}, "organization": {"id": 608}, "project": {"owner": {"id": 718}, "assignee": {"id": 826}, "organization": {"id": 917}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 478}, "assignee": {"id": 528}, "organization": {"id": 153}, "project": {"owner": {"id": 718}, "assignee": {"id": 839}, "organization": {"id": 965}}}} } -test_scope_EXPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": null}, "resource": {"id": 315, "owner": {"id": 442}, "assignee": {"id": 544}, "organization": {"id": 644}, "project": {"owner": {"id": 786}, "assignee": {"id": 839}, "organization": {"id": 942}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 223}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 463}, "assignee": {"id": 549}, "organization": {"id": 614}, "project": {"owner": {"id": 712}, "assignee": {"id": 809}, "organization": {"id": 945}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 480}, "assignee": {"id": 565}, "organization": {"id": 121}, "project": {"owner": {"id": 44}, "assignee": {"id": 829}, "organization": {"id": 987}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 163, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 308, "owner": {"id": 400}, "assignee": {"id": 539}, "organization": {"id": 163}, "project": {"owner": {"id": 700}, "assignee": {"id": 837}, "organization": {"id": 902}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 382, "owner": {"id": 473}, "assignee": {"id": 583}, "organization": {"id": 614}, "project": {"owner": {"id": 9}, "assignee": {"id": 865}, "organization": {"id": 925}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 405}, "assignee": {"id": 598}, "organization": {"id": 610}, "project": {"owner": {"id": 781}, "assignee": {"id": 840}, "organization": {"id": 989}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 480}, "assignee": {"id": 585}, "organization": {"id": 176}, "project": {"owner": {"id": 23}, "assignee": {"id": 881}, "organization": {"id": 979}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:project", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 340, "owner": {"id": 496}, "assignee": {"id": 522}, "organization": {"id": 144}, "project": {"owner": {"id": 723}, "assignee": {"id": 882}, "organization": {"id": 979}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 456}, "assignee": {"id": 561}, "organization": {"id": 643}, "project": {"owner": {"id": 51}, "assignee": {"id": 829}, "organization": {"id": 988}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"id": 311, "owner": {"id": 471}, "assignee": {"id": 546}, "organization": {"id": 653}, "project": {"owner": {"id": 720}, "assignee": {"id": 871}, "organization": {"id": 960}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 466}, "assignee": {"id": 547}, "organization": {"id": 100}, "project": {"owner": {"id": 54}, "assignee": {"id": 863}, "organization": {"id": 963}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 308, "owner": {"id": 414}, "assignee": {"id": 552}, "organization": {"id": 175}, "project": {"owner": {"id": 720}, "assignee": {"id": 812}, "organization": {"id": 949}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 425}, "assignee": {"id": 581}, "organization": {"id": 690}, "project": {"owner": {"id": 17}, "assignee": {"id": 877}, "organization": {"id": 913}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 443}, "assignee": {"id": 596}, "organization": {"id": 645}, "project": {"owner": {"id": 727}, "assignee": {"id": 851}, "organization": {"id": 966}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 488}, "assignee": {"id": 572}, "organization": {"id": 171}, "project": {"owner": {"id": 20}, "assignee": {"id": 888}, "organization": {"id": 954}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 81, "privilege": "user"}, "organization": {"id": 149, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 338, "owner": {"id": 441}, "assignee": {"id": 535}, "organization": {"id": 149}, "project": {"owner": {"id": 770}, "assignee": {"id": 809}, "organization": {"id": 938}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 407}, "assignee": {"id": 597}, "organization": {"id": 683}, "project": {"owner": {"id": 30}, "assignee": {"id": 825}, "organization": {"id": 960}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 319, "owner": {"id": 446}, "assignee": {"id": 582}, "organization": {"id": 617}, "project": {"owner": {"id": 749}, "assignee": {"id": 887}, "organization": {"id": 998}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 197, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 412}, "assignee": {"id": 542}, "organization": {"id": 197}, "project": {"owner": {"id": 40}, "assignee": {"id": 802}, "organization": {"id": 946}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 342, "owner": {"id": 471}, "assignee": {"id": 546}, "organization": {"id": 112}, "project": {"owner": {"id": 788}, "assignee": {"id": 871}, "organization": {"id": 944}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": {"id": 170, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 457}, "assignee": {"id": 522}, "organization": {"id": 657}, "project": {"owner": {"id": 60}, "assignee": {"id": 801}, "organization": {"id": 935}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 226}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 404}, "assignee": {"id": 598}, "organization": {"id": 658}, "project": {"owner": {"id": 709}, "assignee": {"id": 865}, "organization": {"id": 934}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 402}, "assignee": {"id": 560}, "organization": {"id": 133}, "project": {"owner": {"id": 51}, "assignee": {"id": 807}, "organization": {"id": 932}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 471}, "assignee": {"id": 594}, "organization": {"id": 178}, "project": {"owner": {"id": 794}, "assignee": {"id": 883}, "organization": {"id": 987}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 471}, "assignee": {"id": 520}, "organization": {"id": 690}, "project": {"owner": {"id": 40}, "assignee": {"id": 821}, "organization": {"id": 943}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 112, "owner": {"id": 10}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 451}, "assignee": {"id": 546}, "organization": {"id": 605}, "project": {"owner": {"id": 769}, "assignee": {"id": 866}, "organization": {"id": 967}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 127, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 320, "owner": {"id": 437}, "assignee": {"id": 558}, "organization": {"id": 127}, "project": {"owner": {"id": 97}, "assignee": {"id": 886}, "organization": {"id": 982}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 297}, "user": {"role": "maintainer"}}}, "resource": {"id": 379, "owner": {"id": 456}, "assignee": {"id": 539}, "organization": {"id": 134}, "project": {"owner": {"id": 710}, "assignee": {"id": 891}, "organization": {"id": 934}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 384, "owner": {"id": 407}, "assignee": {"id": 515}, "organization": {"id": 679}, "project": {"owner": {"id": 65}, "assignee": {"id": 840}, "organization": {"id": 935}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 223}, "user": {"role": "maintainer"}}}, "resource": {"id": 387, "owner": {"id": 479}, "assignee": {"id": 518}, "organization": {"id": 654}, "project": {"owner": {"id": 795}, "assignee": {"id": 878}, "organization": {"id": 981}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 277}, "user": {"role": "supervisor"}}}, "resource": {"id": 362, "owner": {"id": 432}, "assignee": {"id": 508}, "organization": {"id": 135}, "project": {"owner": {"id": 40}, "assignee": {"id": 834}, "organization": {"id": 944}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 467}, "assignee": {"id": 553}, "organization": {"id": 160}, "project": {"owner": {"id": 712}, "assignee": {"id": 837}, "organization": {"id": 956}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 316, "owner": {"id": 401}, "assignee": {"id": 541}, "organization": {"id": 629}, "project": {"owner": {"id": 17}, "assignee": {"id": 895}, "organization": {"id": 945}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 446}, "assignee": {"id": 589}, "organization": {"id": 613}, "project": {"owner": {"id": 770}, "assignee": {"id": 878}, "organization": {"id": 918}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 463}, "assignee": {"id": 572}, "organization": {"id": 153}, "project": {"owner": {"id": 38}, "assignee": {"id": 894}, "organization": {"id": 991}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 407}, "assignee": {"id": 534}, "organization": {"id": 148}, "project": {"owner": {"id": 754}, "assignee": {"id": 878}, "organization": {"id": 987}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"id": 397, "owner": {"id": 413}, "assignee": {"id": 564}, "organization": {"id": 640}, "project": {"owner": {"id": 75}, "assignee": {"id": 839}, "organization": {"id": 941}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 309, "owner": {"id": 404}, "assignee": {"id": 503}, "organization": {"id": 632}, "project": {"owner": {"id": 753}, "assignee": {"id": 847}, "organization": {"id": 963}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 394, "owner": {"id": 431}, "assignee": {"id": 597}, "organization": {"id": 109}, "project": {"owner": {"id": 61}, "assignee": {"id": 829}, "organization": {"id": 928}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 135, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"id": 343, "owner": {"id": 448}, "assignee": {"id": 541}, "organization": {"id": 135}, "project": {"owner": {"id": 760}, "assignee": {"id": 821}, "organization": {"id": 955}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 459}, "assignee": {"id": 533}, "organization": {"id": 615}, "project": {"owner": {"id": 53}, "assignee": {"id": 813}, "organization": {"id": 908}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"id": 386, "owner": {"id": 430}, "assignee": {"id": 511}, "organization": {"id": 643}, "project": {"owner": {"id": 755}, "assignee": {"id": 800}, "organization": {"id": 955}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 8}, "user": {"role": "owner"}}}, "resource": {"id": 367, "owner": {"id": 481}, "assignee": {"id": 570}, "organization": {"id": 179}, "project": {"owner": {"id": 8}, "assignee": {"id": 839}, "organization": {"id": 977}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"id": 322, "owner": {"id": 422}, "assignee": {"id": 550}, "organization": {"id": 115}, "project": {"owner": {"id": 741}, "assignee": {"id": 886}, "organization": {"id": 907}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 478}, "assignee": {"id": 582}, "organization": {"id": 665}, "project": {"owner": {"id": 98}, "assignee": {"id": 869}, "organization": {"id": 976}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 80}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 455}, "assignee": {"id": 522}, "organization": {"id": 671}, "project": {"owner": {"id": 752}, "assignee": {"id": 806}, "organization": {"id": 931}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 220}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 416}, "assignee": {"id": 529}, "organization": {"id": 146}, "project": {"owner": {"id": 70}, "assignee": {"id": 824}, "organization": {"id": 910}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 297}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 450}, "assignee": {"id": 536}, "organization": {"id": 181}, "project": {"owner": {"id": 777}, "assignee": {"id": 844}, "organization": {"id": 948}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 365, "owner": {"id": 465}, "assignee": {"id": 533}, "organization": {"id": 683}, "project": {"owner": {"id": 91}, "assignee": {"id": 856}, "organization": {"id": 922}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 400}, "assignee": {"id": 565}, "organization": {"id": 636}, "project": {"owner": {"id": 703}, "assignee": {"id": 855}, "organization": {"id": 915}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 391, "owner": {"id": 454}, "assignee": {"id": 549}, "organization": {"id": 159}, "project": {"owner": {"id": 96}, "assignee": {"id": 875}, "organization": {"id": 938}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 461}, "assignee": {"id": 520}, "organization": {"id": 146}, "project": {"owner": {"id": 704}, "assignee": {"id": 815}, "organization": {"id": 995}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 242}, "user": {"role": "supervisor"}}}, "resource": {"id": 379, "owner": {"id": 465}, "assignee": {"id": 557}, "organization": {"id": 695}, "project": {"owner": {"id": 75}, "assignee": {"id": 802}, "organization": {"id": 970}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 304, "owner": {"id": 417}, "assignee": {"id": 544}, "organization": {"id": 631}, "project": {"owner": {"id": 769}, "assignee": {"id": 894}, "organization": {"id": 916}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"id": 365, "owner": {"id": 488}, "assignee": {"id": 508}, "organization": {"id": 108}, "project": {"owner": {"id": 36}, "assignee": {"id": 851}, "organization": {"id": 911}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 480}, "assignee": {"id": 505}, "organization": {"id": 140}, "project": {"owner": {"id": 767}, "assignee": {"id": 865}, "organization": {"id": 961}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 324, "owner": {"id": 416}, "assignee": {"id": 512}, "organization": {"id": 653}, "project": {"owner": {"id": 19}, "assignee": {"id": 881}, "organization": {"id": 902}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"id": 301, "owner": {"id": 416}, "assignee": {"id": 526}, "organization": {"id": 609}, "project": {"owner": {"id": 762}, "assignee": {"id": 876}, "organization": {"id": 986}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 488}, "assignee": {"id": 581}, "organization": {"id": 197}, "project": {"owner": {"id": 19}, "assignee": {"id": 881}, "organization": {"id": 928}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 382, "owner": {"id": 446}, "assignee": {"id": 548}, "organization": {"id": 105}, "project": {"owner": {"id": 702}, "assignee": {"id": 864}, "organization": {"id": 900}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 408}, "assignee": {"id": 541}, "organization": {"id": 695}, "project": {"owner": {"id": 46}, "assignee": {"id": 808}, "organization": {"id": 958}}}} +test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:project", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 423}, "assignee": {"id": 572}, "organization": {"id": 681}, "project": {"owner": {"id": 727}, "assignee": {"id": 855}, "organization": {"id": 985}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 436}, "assignee": {"id": 519}, "organization": {"id": 106}, "project": {"owner": {"id": 75}, "assignee": {"id": 830}, "organization": {"id": 973}}}} +test_scope_DELETE_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": null}, "resource": {"id": 337, "owner": {"id": 453}, "assignee": {"id": 599}, "organization": {"id": 622}, "project": {"owner": {"id": 92}, "assignee": {"id": 876}, "organization": {"id": 930}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"id": 300, "owner": {"id": 478}, "assignee": {"id": 550}, "organization": {"id": 685}, "project": {"owner": {"id": 43}, "assignee": {"id": 845}, "organization": {"id": 901}}}} +test_scope_DELETE_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": null}, "resource": {"id": 339, "owner": {"id": 475}, "assignee": {"id": 530}, "organization": {"id": 662}, "project": {"owner": {"id": 23}, "assignee": {"id": 809}, "organization": {"id": 931}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 270}, "user": {"role": "maintainer"}}}, "resource": {"id": 356, "owner": {"id": 448}, "assignee": {"id": 518}, "organization": {"id": 115}, "project": {"owner": {"id": 83}, "assignee": {"id": 888}, "organization": {"id": 949}}}} +test_scope_DELETE_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": null}, "resource": {"id": 300, "owner": {"id": 436}, "assignee": {"id": 548}, "organization": {"id": 671}, "project": {"owner": {"id": 63}, "assignee": {"id": 889}, "organization": {"id": 906}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 445}, "assignee": {"id": 593}, "organization": {"id": 622}, "project": {"owner": {"id": 61}, "assignee": {"id": 859}, "organization": {"id": 915}}}} +test_scope_DELETE_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": null}, "resource": {"id": 395, "owner": {"id": 436}, "assignee": {"id": 554}, "organization": {"id": 628}, "project": {"owner": {"id": 8}, "assignee": {"id": 882}, "organization": {"id": 975}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 3, "privilege": "worker"}, "organization": {"id": 156, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"id": 304, "owner": {"id": 422}, "assignee": {"id": 532}, "organization": {"id": 156}, "project": {"owner": {"id": 3}, "assignee": {"id": 839}, "organization": {"id": 992}}}} +test_scope_DELETE_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": null}, "resource": {"id": 333, "owner": {"id": 447}, "assignee": {"id": 528}, "organization": {"id": 630}, "project": {"owner": {"id": 38}, "assignee": {"id": 812}, "organization": {"id": 918}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 394, "owner": {"id": 464}, "assignee": {"id": 519}, "organization": {"id": 634}, "project": {"owner": {"id": 78}, "assignee": {"id": 892}, "organization": {"id": 951}}}} +test_scope_DELETE_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": null}, "resource": {"id": 386, "owner": {"id": 457}, "assignee": {"id": 504}, "organization": {"id": 692}, "project": {"owner": {"id": 772}, "assignee": {"id": 54}, "organization": {"id": 990}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"id": 322, "owner": {"id": 482}, "assignee": {"id": 516}, "organization": {"id": 130}, "project": {"owner": {"id": 95}, "assignee": {"id": 875}, "organization": {"id": 960}}}} +test_scope_DELETE_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": null}, "resource": {"id": 310, "owner": {"id": 473}, "assignee": {"id": 586}, "organization": {"id": 653}, "project": {"owner": {"id": 750}, "assignee": {"id": 42}, "organization": {"id": 921}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"id": 356, "owner": {"id": 444}, "assignee": {"id": 524}, "organization": {"id": 621}, "project": {"owner": {"id": 8}, "assignee": {"id": 859}, "organization": {"id": 905}}}} +test_scope_DELETE_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": null}, "resource": {"id": 306, "owner": {"id": 413}, "assignee": {"id": 502}, "organization": {"id": 603}, "project": {"owner": {"id": 712}, "assignee": {"id": 77}, "organization": {"id": 957}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 378, "owner": {"id": 464}, "assignee": {"id": 536}, "organization": {"id": 102}, "project": {"owner": {"id": 82}, "assignee": {"id": 822}, "organization": {"id": 976}}}} +test_scope_DELETE_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": null}, "resource": {"id": 385, "owner": {"id": 467}, "assignee": {"id": 557}, "organization": {"id": 647}, "project": {"owner": {"id": 700}, "assignee": {"id": 92}, "organization": {"id": 939}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 263}, "user": {"role": null}}}, "resource": {"id": 386, "owner": {"id": 460}, "assignee": {"id": 518}, "organization": {"id": 648}, "project": {"owner": {"id": 94}, "assignee": {"id": 801}, "organization": {"id": 938}}}} +test_scope_DELETE_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": null}, "resource": {"id": 315, "owner": {"id": 489}, "assignee": {"id": 562}, "organization": {"id": 695}, "project": {"owner": {"id": 718}, "assignee": {"id": 16}, "organization": {"id": 926}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 15}, "user": {"role": "owner"}}}, "resource": {"id": 386, "owner": {"id": 409}, "assignee": {"id": 519}, "organization": {"id": 113}, "project": {"owner": {"id": 15}, "assignee": {"id": 852}, "organization": {"id": 988}}}} +test_scope_DELETE_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": null}, "resource": {"id": 303, "owner": {"id": 35}, "assignee": {"id": 588}, "organization": {"id": 614}, "project": {"owner": {"id": 727}, "assignee": {"id": 873}, "organization": {"id": 924}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 409}, "assignee": {"id": 536}, "organization": {"id": 699}, "project": {"owner": {"id": 6}, "assignee": {"id": 834}, "organization": {"id": 902}}}} +test_scope_DELETE_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": null}, "resource": {"id": 328, "owner": {"id": 19}, "assignee": {"id": 555}, "organization": {"id": 638}, "project": {"owner": {"id": 772}, "assignee": {"id": 824}, "organization": {"id": 928}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 436}, "assignee": {"id": 586}, "organization": {"id": 145}, "project": {"owner": {"id": 85}, "assignee": {"id": 800}, "organization": {"id": 908}}}} +test_scope_DELETE_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": null}, "resource": {"id": 322, "owner": {"id": 60}, "assignee": {"id": 546}, "organization": {"id": 613}, "project": {"owner": {"id": 770}, "assignee": {"id": 812}, "organization": {"id": 998}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"id": 321, "owner": {"id": 404}, "assignee": {"id": 588}, "organization": {"id": 605}, "project": {"owner": {"id": 63}, "assignee": {"id": 853}, "organization": {"id": 942}}}} +test_scope_DELETE_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": null}, "resource": {"id": 364, "owner": {"id": 43}, "assignee": {"id": 522}, "organization": {"id": 611}, "project": {"owner": {"id": 722}, "assignee": {"id": 864}, "organization": {"id": 953}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"id": 327, "owner": {"id": 472}, "assignee": {"id": 558}, "organization": {"id": 104}, "project": {"owner": {"id": 84}, "assignee": {"id": 895}, "organization": {"id": 947}}}} +test_scope_DELETE_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": null}, "resource": {"id": 359, "owner": {"id": 13}, "assignee": {"id": 503}, "organization": {"id": 634}, "project": {"owner": {"id": 728}, "assignee": {"id": 899}, "organization": {"id": 921}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 404}, "assignee": {"id": 565}, "organization": {"id": 656}, "project": {"owner": {"id": 14}, "assignee": {"id": 815}, "organization": {"id": 989}}}} +test_scope_DELETE_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": null}, "resource": {"id": 331, "owner": {"id": 400}, "assignee": {"id": 66}, "organization": {"id": 655}, "project": {"owner": {"id": 740}, "assignee": {"id": 871}, "organization": {"id": 904}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"id": 365, "owner": {"id": 446}, "assignee": {"id": 590}, "organization": {"id": 112}, "project": {"owner": {"id": 89}, "assignee": {"id": 895}, "organization": {"id": 926}}}} +test_scope_DELETE_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": null}, "resource": {"id": 361, "owner": {"id": 444}, "assignee": {"id": 69}, "organization": {"id": 654}, "project": {"owner": {"id": 722}, "assignee": {"id": 847}, "organization": {"id": 952}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 150, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 491}, "assignee": {"id": 561}, "organization": {"id": 625}, "project": {"owner": {"id": 52}, "assignee": {"id": 893}, "organization": {"id": 930}}}} +test_scope_DELETE_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": null}, "resource": {"id": 323, "owner": {"id": 498}, "assignee": {"id": 63}, "organization": {"id": 643}, "project": {"owner": {"id": 777}, "assignee": {"id": 817}, "organization": {"id": 985}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 226}, "user": {"role": null}}}, "resource": {"id": 372, "owner": {"id": 454}, "assignee": {"id": 524}, "organization": {"id": 164}, "project": {"owner": {"id": 3}, "assignee": {"id": 816}, "organization": {"id": 947}}}} +test_scope_DELETE_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": null}, "resource": {"id": 394, "owner": {"id": 436}, "assignee": {"id": 50}, "organization": {"id": 666}, "project": {"owner": {"id": 755}, "assignee": {"id": 811}, "organization": {"id": 905}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 322, "owner": {"id": 427}, "assignee": {"id": 532}, "organization": {"id": 608}, "project": {"owner": {"id": 80}, "assignee": {"id": 852}, "organization": {"id": 987}}}} +test_scope_DELETE_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": null}, "resource": {"id": 322, "owner": {"id": 459}, "assignee": {"id": 95}, "organization": {"id": 677}, "project": {"owner": {"id": 727}, "assignee": {"id": 862}, "organization": {"id": 964}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 463}, "assignee": {"id": 575}, "organization": {"id": 161}, "project": {"owner": {"id": 786}, "assignee": {"id": 22}, "organization": {"id": 981}}}} +test_scope_DELETE_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": null}, "resource": {"id": 392, "owner": {"id": 419}, "assignee": {"id": 576}, "organization": {"id": 685}, "project": {"owner": {"id": 771}, "assignee": {"id": 883}, "organization": {"id": 914}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 10}, "user": {"role": "owner"}}}, "resource": {"id": 328, "owner": {"id": 486}, "assignee": {"id": 548}, "organization": {"id": 690}, "project": {"owner": {"id": 703}, "assignee": {"id": 10}, "organization": {"id": 943}}}} +test_scope_DELETE_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": null}, "resource": {"id": 333, "owner": {"id": 493}, "assignee": {"id": 544}, "organization": {"id": 628}, "project": {"owner": {"id": 764}, "assignee": {"id": 846}, "organization": {"id": 999}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 189, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 466}, "assignee": {"id": 582}, "organization": {"id": 189}, "project": {"owner": {"id": 749}, "assignee": {"id": 66}, "organization": {"id": 984}}}} +test_scope_DELETE_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": null}, "resource": {"id": 344, "owner": {"id": 461}, "assignee": {"id": 572}, "organization": {"id": 668}, "project": {"owner": {"id": 756}, "assignee": {"id": 832}, "organization": {"id": 915}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 170, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 410}, "assignee": {"id": 552}, "organization": {"id": 699}, "project": {"owner": {"id": 764}, "assignee": {"id": 27}, "organization": {"id": 983}}}} +test_scope_DELETE_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": null}, "resource": {"id": 387, "owner": {"id": 421}, "assignee": {"id": 584}, "organization": {"id": 684}, "project": {"owner": {"id": 717}, "assignee": {"id": 889}, "organization": {"id": 997}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 304, "owner": {"id": 493}, "assignee": {"id": 541}, "organization": {"id": 148}, "project": {"owner": {"id": 702}, "assignee": {"id": 57}, "organization": {"id": 976}}}} +test_scope_DELETE_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 482}, "assignee": {"id": 543}, "organization": {"id": 680}, "project": {"owner": {"id": 743}, "assignee": {"id": 869}, "organization": {"id": 983}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 335, "owner": {"id": 490}, "assignee": {"id": 579}, "organization": {"id": 696}, "project": {"owner": {"id": 773}, "assignee": {"id": 74}, "organization": {"id": 904}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 170, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 462}, "assignee": {"id": 573}, "organization": {"id": 170}, "project": {"owner": {"id": 36}, "assignee": {"id": 875}, "organization": {"id": 976}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"id": 353, "owner": {"id": 436}, "assignee": {"id": 527}, "organization": {"id": 193}, "project": {"owner": {"id": 744}, "assignee": {"id": 78}, "organization": {"id": 995}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 99, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 308, "owner": {"id": 492}, "assignee": {"id": 542}, "organization": {"id": 664}, "project": {"owner": {"id": 99}, "assignee": {"id": 855}, "organization": {"id": 992}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 262}, "user": {"role": "worker"}}}, "resource": {"id": 333, "owner": {"id": 403}, "assignee": {"id": 579}, "organization": {"id": 618}, "project": {"owner": {"id": 769}, "assignee": {"id": 80}, "organization": {"id": 926}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 441}, "assignee": {"id": 591}, "organization": {"id": 199}, "project": {"owner": {"id": 25}, "assignee": {"id": 892}, "organization": {"id": 978}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 313, "owner": {"id": 475}, "assignee": {"id": 547}, "organization": {"id": 154}, "project": {"owner": {"id": 786}, "assignee": {"id": 18}, "organization": {"id": 998}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 388, "owner": {"id": 411}, "assignee": {"id": 521}, "organization": {"id": 649}, "project": {"owner": {"id": 77}, "assignee": {"id": 843}, "organization": {"id": 946}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 374, "owner": {"id": 462}, "assignee": {"id": 575}, "organization": {"id": 613}, "project": {"owner": {"id": 768}, "assignee": {"id": 43}, "organization": {"id": 960}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 127, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"id": 323, "owner": {"id": 432}, "assignee": {"id": 543}, "organization": {"id": 127}, "project": {"owner": {"id": 35}, "assignee": {"id": 819}, "organization": {"id": 928}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 494}, "assignee": {"id": 597}, "organization": {"id": 179}, "project": {"owner": {"id": 738}, "assignee": {"id": 7}, "organization": {"id": 935}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 216}, "user": {"role": "supervisor"}}}, "resource": {"id": 340, "owner": {"id": 404}, "assignee": {"id": 527}, "organization": {"id": 672}, "project": {"owner": {"id": 90}, "assignee": {"id": 809}, "organization": {"id": 975}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 324, "owner": {"id": 462}, "assignee": {"id": 592}, "organization": {"id": 671}, "project": {"owner": {"id": 791}, "assignee": {"id": 89}, "organization": {"id": 983}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 102, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"id": 355, "owner": {"id": 451}, "assignee": {"id": 569}, "organization": {"id": 102}, "project": {"owner": {"id": 75}, "assignee": {"id": 894}, "organization": {"id": 994}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 64, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 479}, "assignee": {"id": 576}, "organization": {"id": 117}, "project": {"owner": {"id": 730}, "assignee": {"id": 64}, "organization": {"id": 917}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 367, "owner": {"id": 432}, "assignee": {"id": 580}, "organization": {"id": 667}, "project": {"owner": {"id": 27}, "assignee": {"id": 837}, "organization": {"id": 908}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 450}, "assignee": {"id": 517}, "organization": {"id": 693}, "project": {"owner": {"id": 769}, "assignee": {"id": 30}, "organization": {"id": 926}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"id": 382, "owner": {"id": 490}, "assignee": {"id": 519}, "organization": {"id": 148}, "project": {"owner": {"id": 93}, "assignee": {"id": 833}, "organization": {"id": 903}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 291}, "user": {"role": "supervisor"}}}, "resource": {"id": 367, "owner": {"id": 430}, "assignee": {"id": 591}, "organization": {"id": 136}, "project": {"owner": {"id": 704}, "assignee": {"id": 54}, "organization": {"id": 902}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 397, "owner": {"id": 431}, "assignee": {"id": 543}, "organization": {"id": 639}, "project": {"owner": {"id": 10}, "assignee": {"id": 893}, "organization": {"id": 989}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"id": 310, "owner": {"id": 415}, "assignee": {"id": 571}, "organization": {"id": 677}, "project": {"owner": {"id": 724}, "assignee": {"id": 12}, "organization": {"id": 997}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 492}, "assignee": {"id": 549}, "organization": {"id": 198}, "project": {"owner": {"id": 3}, "assignee": {"id": 814}, "organization": {"id": 918}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 409}, "assignee": {"id": 593}, "organization": {"id": 178}, "project": {"owner": {"id": 709}, "assignee": {"id": 42}, "organization": {"id": 909}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 487}, "assignee": {"id": 563}, "organization": {"id": 690}, "project": {"owner": {"id": 9}, "assignee": {"id": 894}, "organization": {"id": 993}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 351, "owner": {"id": 455}, "assignee": {"id": 525}, "organization": {"id": 685}, "project": {"owner": {"id": 724}, "assignee": {"id": 39}, "organization": {"id": 909}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 367, "owner": {"id": 444}, "assignee": {"id": 528}, "organization": {"id": 106}, "project": {"owner": {"id": 26}, "assignee": {"id": 833}, "organization": {"id": 920}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 64, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 429}, "assignee": {"id": 596}, "organization": {"id": 153}, "project": {"owner": {"id": 785}, "assignee": {"id": 64}, "organization": {"id": 912}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 412}, "assignee": {"id": 563}, "organization": {"id": 694}, "project": {"owner": {"id": 47}, "assignee": {"id": 846}, "organization": {"id": 910}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 366, "owner": {"id": 470}, "assignee": {"id": 550}, "organization": {"id": 639}, "project": {"owner": {"id": 728}, "assignee": {"id": 92}, "organization": {"id": 937}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"id": 322, "owner": {"id": 424}, "assignee": {"id": 571}, "organization": {"id": 112}, "project": {"owner": {"id": 25}, "assignee": {"id": 888}, "organization": {"id": 959}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 449}, "assignee": {"id": 599}, "organization": {"id": 187}, "project": {"owner": {"id": 778}, "assignee": {"id": 99}, "organization": {"id": 902}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 339, "owner": {"id": 447}, "assignee": {"id": 587}, "organization": {"id": 610}, "project": {"owner": {"id": 43}, "assignee": {"id": 854}, "organization": {"id": 947}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 110, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 406}, "assignee": {"id": 563}, "organization": {"id": 622}, "project": {"owner": {"id": 720}, "assignee": {"id": 88}, "organization": {"id": 997}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"id": 367, "owner": {"id": 488}, "assignee": {"id": 553}, "organization": {"id": 182}, "project": {"owner": {"id": 28}, "assignee": {"id": 822}, "organization": {"id": 917}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 446}, "assignee": {"id": 513}, "organization": {"id": 113}, "project": {"owner": {"id": 732}, "assignee": {"id": 74}, "organization": {"id": 971}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 258}, "user": {"role": "worker"}}}, "resource": {"id": 389, "owner": {"id": 483}, "assignee": {"id": 577}, "organization": {"id": 616}, "project": {"owner": {"id": 6}, "assignee": {"id": 895}, "organization": {"id": 950}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 333, "owner": {"id": 499}, "assignee": {"id": 580}, "organization": {"id": 627}, "project": {"owner": {"id": 748}, "assignee": {"id": 23}, "organization": {"id": 900}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 479}, "assignee": {"id": 550}, "organization": {"id": 183}, "project": {"owner": {"id": 98}, "assignee": {"id": 805}, "organization": {"id": 983}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 345, "owner": {"id": 447}, "assignee": {"id": 562}, "organization": {"id": 199}, "project": {"owner": {"id": 736}, "assignee": {"id": 31}, "organization": {"id": 974}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 237}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 414}, "assignee": {"id": 530}, "organization": {"id": 621}, "project": {"owner": {"id": 80}, "assignee": {"id": 811}, "organization": {"id": 925}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 282}, "user": {"role": "supervisor"}}}, "resource": {"id": 339, "owner": {"id": 400}, "assignee": {"id": 551}, "organization": {"id": 635}, "project": {"owner": {"id": 708}, "assignee": {"id": 35}, "organization": {"id": 992}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 438}, "assignee": {"id": 573}, "organization": {"id": 175}, "project": {"owner": {"id": 12}, "assignee": {"id": 825}, "organization": {"id": 907}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 90, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 403}, "assignee": {"id": 576}, "organization": {"id": 104}, "project": {"owner": {"id": 724}, "assignee": {"id": 90}, "organization": {"id": 921}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 336, "owner": {"id": 436}, "assignee": {"id": 534}, "organization": {"id": 628}, "project": {"owner": {"id": 74}, "assignee": {"id": 873}, "organization": {"id": 936}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 377, "owner": {"id": 429}, "assignee": {"id": 569}, "organization": {"id": 650}, "project": {"owner": {"id": 730}, "assignee": {"id": 82}, "organization": {"id": 951}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"id": 311, "owner": {"id": 410}, "assignee": {"id": 561}, "organization": {"id": 146}, "project": {"owner": {"id": 28}, "assignee": {"id": 832}, "organization": {"id": 929}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"id": 320, "owner": {"id": 412}, "assignee": {"id": 511}, "organization": {"id": 126}, "project": {"owner": {"id": 766}, "assignee": {"id": 49}, "organization": {"id": 939}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 193, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"id": 387, "owner": {"id": 487}, "assignee": {"id": 598}, "organization": {"id": 631}, "project": {"owner": {"id": 34}, "assignee": {"id": 836}, "organization": {"id": 938}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 405}, "assignee": {"id": 535}, "organization": {"id": 611}, "project": {"owner": {"id": 723}, "assignee": {"id": 60}, "organization": {"id": 968}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 325, "owner": {"id": 469}, "assignee": {"id": 592}, "organization": {"id": 107}, "project": {"owner": {"id": 18}, "assignee": {"id": 899}, "organization": {"id": 923}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 417}, "assignee": {"id": 558}, "organization": {"id": 180}, "project": {"owner": {"id": 762}, "assignee": {"id": 0}, "organization": {"id": 958}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 367, "owner": {"id": 413}, "assignee": {"id": 545}, "organization": {"id": 684}, "project": {"owner": {"id": 91}, "assignee": {"id": 821}, "organization": {"id": 946}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"id": 306, "owner": {"id": 462}, "assignee": {"id": 522}, "organization": {"id": 605}, "project": {"owner": {"id": 750}, "assignee": {"id": 16}, "organization": {"id": 965}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 403}, "assignee": {"id": 527}, "organization": {"id": 125}, "project": {"owner": {"id": 77}, "assignee": {"id": 874}, "organization": {"id": 920}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 434}, "assignee": {"id": 552}, "organization": {"id": 154}, "project": {"owner": {"id": 708}, "assignee": {"id": 21}, "organization": {"id": 972}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"id": 310, "owner": {"id": 431}, "assignee": {"id": 527}, "organization": {"id": 696}, "project": {"owner": {"id": 28}, "assignee": {"id": 861}, "organization": {"id": 976}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 484}, "assignee": {"id": 547}, "organization": {"id": 629}, "project": {"owner": {"id": 745}, "assignee": {"id": 79}, "organization": {"id": 978}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 222}, "user": {"role": null}}}, "resource": {"id": 331, "owner": {"id": 455}, "assignee": {"id": 565}, "organization": {"id": 125}, "project": {"owner": {"id": 87}, "assignee": {"id": 852}, "organization": {"id": 911}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 476}, "assignee": {"id": 579}, "organization": {"id": 109}, "project": {"owner": {"id": 767}, "assignee": {"id": 94}, "organization": {"id": 922}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 438}, "assignee": {"id": 592}, "organization": {"id": 682}, "project": {"owner": {"id": 52}, "assignee": {"id": 811}, "organization": {"id": 977}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"id": 397, "owner": {"id": 438}, "assignee": {"id": 528}, "organization": {"id": 659}, "project": {"owner": {"id": 708}, "assignee": {"id": 37}, "organization": {"id": 921}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 406}, "assignee": {"id": 511}, "organization": {"id": 148}, "project": {"owner": {"id": 37}, "assignee": {"id": 887}, "organization": {"id": 905}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 496}, "assignee": {"id": 524}, "organization": {"id": 187}, "project": {"owner": {"id": 784}, "assignee": {"id": 64}, "organization": {"id": 968}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 494}, "assignee": {"id": 513}, "organization": {"id": 690}, "project": {"owner": {"id": 86}, "assignee": {"id": 848}, "organization": {"id": 909}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 466}, "assignee": {"id": 561}, "organization": {"id": 691}, "project": {"owner": {"id": 713}, "assignee": {"id": 13}, "organization": {"id": 908}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 30, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 486}, "assignee": {"id": 586}, "organization": {"id": 105}, "project": {"owner": {"id": 30}, "assignee": {"id": 868}, "organization": {"id": 939}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"id": 319, "owner": {"id": 421}, "assignee": {"id": 509}, "organization": {"id": 114}, "project": {"owner": {"id": 709}, "assignee": {"id": 28}, "organization": {"id": 947}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"id": 303, "owner": {"id": 494}, "assignee": {"id": 515}, "organization": {"id": 631}, "project": {"owner": {"id": 45}, "assignee": {"id": 833}, "organization": {"id": 994}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 465}, "assignee": {"id": 589}, "organization": {"id": 638}, "project": {"owner": {"id": 711}, "assignee": {"id": 88}, "organization": {"id": 997}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 362, "owner": {"id": 400}, "assignee": {"id": 585}, "organization": {"id": 142}, "project": {"owner": {"id": 2}, "assignee": {"id": 877}, "organization": {"id": 996}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 495}, "assignee": {"id": 547}, "organization": {"id": 139}, "project": {"owner": {"id": 746}, "assignee": {"id": 27}, "organization": {"id": 942}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"id": 333, "owner": {"id": 448}, "assignee": {"id": 558}, "organization": {"id": 627}, "project": {"owner": {"id": 36}, "assignee": {"id": 861}, "organization": {"id": 905}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"id": 340, "owner": {"id": 409}, "assignee": {"id": 506}, "organization": {"id": 649}, "project": {"owner": {"id": 703}, "assignee": {"id": 5}, "organization": {"id": 949}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 209}, "user": {"role": "worker"}}}, "resource": {"id": 383, "owner": {"id": 422}, "assignee": {"id": 594}, "organization": {"id": 147}, "project": {"owner": {"id": 76}, "assignee": {"id": 804}, "organization": {"id": 991}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 324, "owner": {"id": 478}, "assignee": {"id": 554}, "organization": {"id": 184}, "project": {"owner": {"id": 752}, "assignee": {"id": 89}, "organization": {"id": 903}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 343, "owner": {"id": 444}, "assignee": {"id": 569}, "organization": {"id": 637}, "project": {"owner": {"id": 55}, "assignee": {"id": 842}, "organization": {"id": 912}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 282}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 445}, "assignee": {"id": 562}, "organization": {"id": 645}, "project": {"owner": {"id": 767}, "assignee": {"id": 85}, "organization": {"id": 948}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 313, "owner": {"id": 462}, "assignee": {"id": 546}, "organization": {"id": 136}, "project": {"owner": {"id": 23}, "assignee": {"id": 844}, "organization": {"id": 937}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 478}, "assignee": {"id": 568}, "organization": {"id": 113}, "project": {"owner": {"id": 712}, "assignee": {"id": 46}, "organization": {"id": 906}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 498}, "assignee": {"id": 580}, "organization": {"id": 631}, "project": {"owner": {"id": 89}, "assignee": {"id": 856}, "organization": {"id": 962}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 467}, "assignee": {"id": 534}, "organization": {"id": 654}, "project": {"owner": {"id": 756}, "assignee": {"id": 98}, "organization": {"id": 964}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 423}, "assignee": {"id": 582}, "organization": {"id": 169}, "project": {"owner": {"id": 36}, "assignee": {"id": 896}, "organization": {"id": 993}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"id": 322, "owner": {"id": 417}, "assignee": {"id": 580}, "organization": {"id": 163}, "project": {"owner": {"id": 721}, "assignee": {"id": 27}, "organization": {"id": 934}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 8}, "user": {"role": "owner"}}}, "resource": {"id": 396, "owner": {"id": 497}, "assignee": {"id": 573}, "organization": {"id": 667}, "project": {"owner": {"id": 8}, "assignee": {"id": 818}, "organization": {"id": 939}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"id": 305, "owner": {"id": 476}, "assignee": {"id": 556}, "organization": {"id": 622}, "project": {"owner": {"id": 757}, "assignee": {"id": 50}, "organization": {"id": 904}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": {"id": 132, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"id": 382, "owner": {"id": 470}, "assignee": {"id": 579}, "organization": {"id": 132}, "project": {"owner": {"id": 47}, "assignee": {"id": 891}, "organization": {"id": 955}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 362, "owner": {"id": 497}, "assignee": {"id": 509}, "organization": {"id": 127}, "project": {"owner": {"id": 700}, "assignee": {"id": 48}, "organization": {"id": 974}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 205}, "user": {"role": "maintainer"}}}, "resource": {"id": 353, "owner": {"id": 464}, "assignee": {"id": 566}, "organization": {"id": 690}, "project": {"owner": {"id": 43}, "assignee": {"id": 858}, "organization": {"id": 958}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 425}, "assignee": {"id": 559}, "organization": {"id": 663}, "project": {"owner": {"id": 756}, "assignee": {"id": 52}, "organization": {"id": 908}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 367, "owner": {"id": 479}, "assignee": {"id": 588}, "organization": {"id": 127}, "project": {"owner": {"id": 72}, "assignee": {"id": 805}, "organization": {"id": 927}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 306, "owner": {"id": 63}, "assignee": {"id": 595}, "organization": {"id": 164}, "project": {"owner": {"id": 781}, "assignee": {"id": 866}, "organization": {"id": 958}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 323, "owner": {"id": 496}, "assignee": {"id": 538}, "organization": {"id": 644}, "project": {"owner": {"id": 84}, "assignee": {"id": 848}, "organization": {"id": 908}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"id": 372, "owner": {"id": 47}, "assignee": {"id": 537}, "organization": {"id": 611}, "project": {"owner": {"id": 701}, "assignee": {"id": 871}, "organization": {"id": 986}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"id": 309, "owner": {"id": 485}, "assignee": {"id": 528}, "organization": {"id": 177}, "project": {"owner": {"id": 18}, "assignee": {"id": 859}, "organization": {"id": 983}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 329, "owner": {"id": 65}, "assignee": {"id": 594}, "organization": {"id": 165}, "project": {"owner": {"id": 730}, "assignee": {"id": 823}, "organization": {"id": 999}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"id": 334, "owner": {"id": 444}, "assignee": {"id": 530}, "organization": {"id": 683}, "project": {"owner": {"id": 65}, "assignee": {"id": 821}, "organization": {"id": 932}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 74}, "assignee": {"id": 502}, "organization": {"id": 698}, "project": {"owner": {"id": 763}, "assignee": {"id": 833}, "organization": {"id": 995}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 416}, "assignee": {"id": 539}, "organization": {"id": 167}, "project": {"owner": {"id": 33}, "assignee": {"id": 810}, "organization": {"id": 959}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 82}, "assignee": {"id": 514}, "organization": {"id": 164}, "project": {"owner": {"id": 703}, "assignee": {"id": 898}, "organization": {"id": 967}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 439}, "assignee": {"id": 565}, "organization": {"id": 638}, "project": {"owner": {"id": 77}, "assignee": {"id": 842}, "organization": {"id": 986}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 40}, "assignee": {"id": 508}, "organization": {"id": 641}, "project": {"owner": {"id": 744}, "assignee": {"id": 835}, "organization": {"id": 955}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 398, "owner": {"id": 440}, "assignee": {"id": 505}, "organization": {"id": 134}, "project": {"owner": {"id": 717}, "assignee": {"id": 96}, "organization": {"id": 920}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 224}, "user": {"role": "worker"}}}, "resource": {"id": 322, "owner": {"id": 4}, "assignee": {"id": 500}, "organization": {"id": 175}, "project": {"owner": {"id": 703}, "assignee": {"id": 841}, "organization": {"id": 943}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 45}, "user": {"role": "owner"}}}, "resource": {"id": 333, "owner": {"id": 451}, "assignee": {"id": 544}, "organization": {"id": 679}, "project": {"owner": {"id": 759}, "assignee": {"id": 45}, "organization": {"id": 964}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 73}, "assignee": {"id": 599}, "organization": {"id": 658}, "project": {"owner": {"id": 714}, "assignee": {"id": 888}, "organization": {"id": 946}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 495}, "assignee": {"id": 524}, "organization": {"id": 142}, "project": {"owner": {"id": 740}, "assignee": {"id": 43}, "organization": {"id": 911}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"id": 354, "owner": {"id": 86}, "assignee": {"id": 543}, "organization": {"id": 180}, "project": {"owner": {"id": 799}, "assignee": {"id": 855}, "organization": {"id": 932}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 458}, "assignee": {"id": 513}, "organization": {"id": 635}, "project": {"owner": {"id": 734}, "assignee": {"id": 23}, "organization": {"id": 954}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"id": 340, "owner": {"id": 17}, "assignee": {"id": 534}, "organization": {"id": 682}, "project": {"owner": {"id": 702}, "assignee": {"id": 822}, "organization": {"id": 915}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"id": 370, "owner": {"id": 433}, "assignee": {"id": 521}, "organization": {"id": 118}, "project": {"owner": {"id": 725}, "assignee": {"id": 86}, "organization": {"id": 902}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 97}, "assignee": {"id": 522}, "organization": {"id": 100}, "project": {"owner": {"id": 770}, "assignee": {"id": 816}, "organization": {"id": 958}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 238}, "user": {"role": "supervisor"}}}, "resource": {"id": 330, "owner": {"id": 421}, "assignee": {"id": 517}, "organization": {"id": 667}, "project": {"owner": {"id": 792}, "assignee": {"id": 89}, "organization": {"id": 959}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 51}, "assignee": {"id": 541}, "organization": {"id": 618}, "project": {"owner": {"id": 748}, "assignee": {"id": 865}, "organization": {"id": 931}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 377, "owner": {"id": 405}, "assignee": {"id": 552}, "organization": {"id": 150}, "project": {"owner": {"id": 732}, "assignee": {"id": 55}, "organization": {"id": 936}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"id": 382, "owner": {"id": 10}, "assignee": {"id": 549}, "organization": {"id": 132}, "project": {"owner": {"id": 740}, "assignee": {"id": 866}, "organization": {"id": 987}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 347, "owner": {"id": 462}, "assignee": {"id": 585}, "organization": {"id": 675}, "project": {"owner": {"id": 725}, "assignee": {"id": 54}, "organization": {"id": 942}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"id": 353, "owner": {"id": 59}, "assignee": {"id": 535}, "organization": {"id": 616}, "project": {"owner": {"id": 708}, "assignee": {"id": 819}, "organization": {"id": 961}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 463}, "assignee": {"id": 504}, "organization": {"id": 109}, "project": {"owner": {"id": 736}, "assignee": {"id": 46}, "organization": {"id": 988}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 376, "owner": {"id": 50}, "assignee": {"id": 502}, "organization": {"id": 169}, "project": {"owner": {"id": 710}, "assignee": {"id": 884}, "organization": {"id": 990}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 447}, "assignee": {"id": 565}, "organization": {"id": 650}, "project": {"owner": {"id": 718}, "assignee": {"id": 86}, "organization": {"id": 967}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 245}, "user": {"role": "supervisor"}}}, "resource": {"id": 334, "owner": {"id": 71}, "assignee": {"id": 513}, "organization": {"id": 608}, "project": {"owner": {"id": 771}, "assignee": {"id": 829}, "organization": {"id": 962}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"id": 319, "owner": {"id": 448}, "assignee": {"id": 565}, "organization": {"id": 195}, "project": {"owner": {"id": 777}, "assignee": {"id": 57}, "organization": {"id": 933}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 202}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 4}, "assignee": {"id": 551}, "organization": {"id": 194}, "project": {"owner": {"id": 764}, "assignee": {"id": 815}, "organization": {"id": 923}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 495}, "assignee": {"id": 574}, "organization": {"id": 659}, "project": {"owner": {"id": 771}, "assignee": {"id": 0}, "organization": {"id": 939}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 301, "owner": {"id": 46}, "assignee": {"id": 574}, "organization": {"id": 622}, "project": {"owner": {"id": 777}, "assignee": {"id": 895}, "organization": {"id": 971}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 407}, "assignee": {"id": 542}, "organization": {"id": 137}, "project": {"owner": {"id": 767}, "assignee": {"id": 21}, "organization": {"id": 945}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 73}, "assignee": {"id": 509}, "organization": {"id": 125}, "project": {"owner": {"id": 797}, "assignee": {"id": 805}, "organization": {"id": 918}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 91, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 314, "owner": {"id": 446}, "assignee": {"id": 557}, "organization": {"id": 655}, "project": {"owner": {"id": 728}, "assignee": {"id": 91}, "organization": {"id": 971}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"id": 363, "owner": {"id": 71}, "assignee": {"id": 535}, "organization": {"id": 697}, "project": {"owner": {"id": 720}, "assignee": {"id": 863}, "organization": {"id": 987}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"id": 321, "owner": {"id": 483}, "assignee": {"id": 539}, "organization": {"id": 178}, "project": {"owner": {"id": 759}, "assignee": {"id": 72}, "organization": {"id": 911}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 54}, "assignee": {"id": 573}, "organization": {"id": 196}, "project": {"owner": {"id": 745}, "assignee": {"id": 838}, "organization": {"id": 928}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 208}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 476}, "assignee": {"id": 580}, "organization": {"id": 617}, "project": {"owner": {"id": 763}, "assignee": {"id": 57}, "organization": {"id": 986}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"id": 379, "owner": {"id": 91}, "assignee": {"id": 596}, "organization": {"id": 652}, "project": {"owner": {"id": 715}, "assignee": {"id": 862}, "organization": {"id": 950}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 307, "owner": {"id": 460}, "assignee": {"id": 516}, "organization": {"id": 183}, "project": {"owner": {"id": 798}, "assignee": {"id": 33}, "organization": {"id": 998}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 154, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 88}, "assignee": {"id": 551}, "organization": {"id": 154}, "project": {"owner": {"id": 748}, "assignee": {"id": 834}, "organization": {"id": 970}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"id": 394, "owner": {"id": 475}, "assignee": {"id": 527}, "organization": {"id": 626}, "project": {"owner": {"id": 753}, "assignee": {"id": 21}, "organization": {"id": 987}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 5}, "assignee": {"id": 562}, "organization": {"id": 682}, "project": {"owner": {"id": 751}, "assignee": {"id": 892}, "organization": {"id": 984}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 496}, "assignee": {"id": 572}, "organization": {"id": 121}, "project": {"owner": {"id": 730}, "assignee": {"id": 9}, "organization": {"id": 954}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 328, "owner": {"id": 44}, "assignee": {"id": 562}, "organization": {"id": 108}, "project": {"owner": {"id": 727}, "assignee": {"id": 886}, "organization": {"id": 987}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 349, "owner": {"id": 475}, "assignee": {"id": 568}, "organization": {"id": 672}, "project": {"owner": {"id": 704}, "assignee": {"id": 90}, "organization": {"id": 998}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 174, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"id": 384, "owner": {"id": 25}, "assignee": {"id": 599}, "organization": {"id": 657}, "project": {"owner": {"id": 722}, "assignee": {"id": 837}, "organization": {"id": 986}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 373, "owner": {"id": 414}, "assignee": {"id": 569}, "organization": {"id": 108}, "project": {"owner": {"id": 778}, "assignee": {"id": 25}, "organization": {"id": 904}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"id": 383, "owner": {"id": 17}, "assignee": {"id": 554}, "organization": {"id": 186}, "project": {"owner": {"id": 737}, "assignee": {"id": 826}, "organization": {"id": 935}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 381, "owner": {"id": 474}, "assignee": {"id": 532}, "organization": {"id": 683}, "project": {"owner": {"id": 700}, "assignee": {"id": 25}, "organization": {"id": 945}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"id": 301, "owner": {"id": 21}, "assignee": {"id": 596}, "organization": {"id": 639}, "project": {"owner": {"id": 752}, "assignee": {"id": 822}, "organization": {"id": 943}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 495}, "assignee": {"id": 569}, "organization": {"id": 136}, "project": {"owner": {"id": 747}, "assignee": {"id": 19}, "organization": {"id": 952}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 273}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 49}, "assignee": {"id": 544}, "organization": {"id": 173}, "project": {"owner": {"id": 765}, "assignee": {"id": 822}, "organization": {"id": 957}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 485}, "assignee": {"id": 577}, "organization": {"id": 652}, "project": {"owner": {"id": 700}, "assignee": {"id": 31}, "organization": {"id": 907}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"id": 387, "owner": {"id": 15}, "assignee": {"id": 596}, "organization": {"id": 643}, "project": {"owner": {"id": 712}, "assignee": {"id": 846}, "organization": {"id": 987}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"id": 395, "owner": {"id": 474}, "assignee": {"id": 559}, "organization": {"id": 129}, "project": {"owner": {"id": 705}, "assignee": {"id": 18}, "organization": {"id": 939}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 195, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"id": 367, "owner": {"id": 56}, "assignee": {"id": 545}, "organization": {"id": 195}, "project": {"owner": {"id": 718}, "assignee": {"id": 886}, "organization": {"id": 995}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 343, "owner": {"id": 408}, "assignee": {"id": 529}, "organization": {"id": 637}, "project": {"owner": {"id": 792}, "assignee": {"id": 39}, "organization": {"id": 916}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 41}, "assignee": {"id": 514}, "organization": {"id": 635}, "project": {"owner": {"id": 795}, "assignee": {"id": 857}, "organization": {"id": 944}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 485}, "assignee": {"id": 519}, "organization": {"id": 140}, "project": {"owner": {"id": 779}, "assignee": {"id": 47}, "organization": {"id": 921}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"id": 390, "owner": {"id": 42}, "assignee": {"id": 516}, "organization": {"id": 119}, "project": {"owner": {"id": 702}, "assignee": {"id": 804}, "organization": {"id": 993}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"id": 305, "owner": {"id": 466}, "assignee": {"id": 560}, "organization": {"id": 648}, "project": {"owner": {"id": 729}, "assignee": {"id": 69}, "organization": {"id": 988}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 364, "owner": {"id": 60}, "assignee": {"id": 549}, "organization": {"id": 691}, "project": {"owner": {"id": 742}, "assignee": {"id": 809}, "organization": {"id": 976}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 415}, "assignee": {"id": 598}, "organization": {"id": 161}, "project": {"owner": {"id": 711}, "assignee": {"id": 55}, "organization": {"id": 940}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 27}, "assignee": {"id": 576}, "organization": {"id": 153}, "project": {"owner": {"id": 719}, "assignee": {"id": 873}, "organization": {"id": 973}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"id": 332, "owner": {"id": 468}, "assignee": {"id": 526}, "organization": {"id": 681}, "project": {"owner": {"id": 723}, "assignee": {"id": 59}, "organization": {"id": 982}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"id": 378, "owner": {"id": 38}, "assignee": {"id": 529}, "organization": {"id": 660}, "project": {"owner": {"id": 786}, "assignee": {"id": 829}, "organization": {"id": 942}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 80}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 410}, "assignee": {"id": 548}, "organization": {"id": 184}, "project": {"owner": {"id": 712}, "assignee": {"id": 80}, "organization": {"id": 979}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 333, "owner": {"id": 85}, "assignee": {"id": 586}, "organization": {"id": 181}, "project": {"owner": {"id": 787}, "assignee": {"id": 861}, "organization": {"id": 958}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"id": 399, "owner": {"id": 446}, "assignee": {"id": 531}, "organization": {"id": 699}, "project": {"owner": {"id": 757}, "assignee": {"id": 43}, "organization": {"id": 984}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 95}, "assignee": {"id": 579}, "organization": {"id": 603}, "project": {"owner": {"id": 734}, "assignee": {"id": 887}, "organization": {"id": 902}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"id": 324, "owner": {"id": 411}, "assignee": {"id": 511}, "organization": {"id": 172}, "project": {"owner": {"id": 762}, "assignee": {"id": 35}, "organization": {"id": 907}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": {"id": 186, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 398, "owner": {"id": 14}, "assignee": {"id": 570}, "organization": {"id": 186}, "project": {"owner": {"id": 755}, "assignee": {"id": 879}, "organization": {"id": 917}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 493}, "assignee": {"id": 516}, "organization": {"id": 661}, "project": {"owner": {"id": 788}, "assignee": {"id": 79}, "organization": {"id": 967}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"id": 334, "owner": {"id": 79}, "assignee": {"id": 501}, "organization": {"id": 677}, "project": {"owner": {"id": 782}, "assignee": {"id": 800}, "organization": {"id": 990}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 210}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 450}, "assignee": {"id": 562}, "organization": {"id": 131}, "project": {"owner": {"id": 756}, "assignee": {"id": 65}, "organization": {"id": 997}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 69}, "assignee": {"id": 516}, "organization": {"id": 184}, "project": {"owner": {"id": 791}, "assignee": {"id": 814}, "organization": {"id": 967}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 103, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 373, "owner": {"id": 417}, "assignee": {"id": 519}, "organization": {"id": 640}, "project": {"owner": {"id": 766}, "assignee": {"id": 66}, "organization": {"id": 974}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 72}, "user": {"role": "owner"}}}, "resource": {"id": 379, "owner": {"id": 72}, "assignee": {"id": 565}, "organization": {"id": 635}, "project": {"owner": {"id": 784}, "assignee": {"id": 829}, "organization": {"id": 996}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"id": 330, "owner": {"id": 430}, "assignee": {"id": 590}, "organization": {"id": 111}, "project": {"owner": {"id": 707}, "assignee": {"id": 28}, "organization": {"id": 910}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 276}, "user": {"role": "maintainer"}}}, "resource": {"id": 320, "owner": {"id": 29}, "assignee": {"id": 503}, "organization": {"id": 127}, "project": {"owner": {"id": 742}, "assignee": {"id": 811}, "organization": {"id": 988}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"id": 383, "owner": {"id": 436}, "assignee": {"id": 585}, "organization": {"id": 602}, "project": {"owner": {"id": 715}, "assignee": {"id": 23}, "organization": {"id": 994}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 46}, "assignee": {"id": 510}, "organization": {"id": 652}, "project": {"owner": {"id": 775}, "assignee": {"id": 892}, "organization": {"id": 994}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"id": 349, "owner": {"id": 453}, "assignee": {"id": 504}, "organization": {"id": 148}, "project": {"owner": {"id": 794}, "assignee": {"id": 33}, "organization": {"id": 940}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"id": 379, "owner": {"id": 5}, "assignee": {"id": 586}, "organization": {"id": 113}, "project": {"owner": {"id": 719}, "assignee": {"id": 840}, "organization": {"id": 925}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 254}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 426}, "assignee": {"id": 531}, "organization": {"id": 615}, "project": {"owner": {"id": 716}, "assignee": {"id": 60}, "organization": {"id": 924}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 66}, "assignee": {"id": 563}, "organization": {"id": 686}, "project": {"owner": {"id": 718}, "assignee": {"id": 843}, "organization": {"id": 951}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 45}, "user": {"role": "owner"}}}, "resource": {"id": 397, "owner": {"id": 461}, "assignee": {"id": 518}, "organization": {"id": 131}, "project": {"owner": {"id": 779}, "assignee": {"id": 45}, "organization": {"id": 917}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"id": 317, "owner": {"id": 49}, "assignee": {"id": 528}, "organization": {"id": 163}, "project": {"owner": {"id": 706}, "assignee": {"id": 853}, "organization": {"id": 977}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 428}, "assignee": {"id": 577}, "organization": {"id": 695}, "project": {"owner": {"id": 709}, "assignee": {"id": 16}, "organization": {"id": 979}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 347, "owner": {"id": 18}, "assignee": {"id": 555}, "organization": {"id": 669}, "project": {"owner": {"id": 770}, "assignee": {"id": 817}, "organization": {"id": 994}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 300, "owner": {"id": 435}, "assignee": {"id": 536}, "organization": {"id": 167}, "project": {"owner": {"id": 724}, "assignee": {"id": 75}, "organization": {"id": 931}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 0}, "assignee": {"id": 512}, "organization": {"id": 120}, "project": {"owner": {"id": 764}, "assignee": {"id": 881}, "organization": {"id": 964}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 436}, "assignee": {"id": 525}, "organization": {"id": 691}, "project": {"owner": {"id": 792}, "assignee": {"id": 56}, "organization": {"id": 971}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 57}, "assignee": {"id": 567}, "organization": {"id": 600}, "project": {"owner": {"id": 747}, "assignee": {"id": 897}, "organization": {"id": 964}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"id": 397, "owner": {"id": 445}, "assignee": {"id": 599}, "organization": {"id": 171}, "project": {"owner": {"id": 789}, "assignee": {"id": 63}, "organization": {"id": 962}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 435}, "assignee": {"id": 22}, "organization": {"id": 165}, "project": {"owner": {"id": 754}, "assignee": {"id": 831}, "organization": {"id": 926}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 282}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 426}, "assignee": {"id": 564}, "organization": {"id": 628}, "project": {"owner": {"id": 750}, "assignee": {"id": 1}, "organization": {"id": 997}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 424}, "assignee": {"id": 73}, "organization": {"id": 629}, "project": {"owner": {"id": 790}, "assignee": {"id": 834}, "organization": {"id": 945}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"id": 396, "owner": {"id": 438}, "assignee": {"id": 512}, "organization": {"id": 195}, "project": {"owner": {"id": 718}, "assignee": {"id": 49}, "organization": {"id": 938}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 163, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 383, "owner": {"id": 461}, "assignee": {"id": 38}, "organization": {"id": 163}, "project": {"owner": {"id": 719}, "assignee": {"id": 861}, "organization": {"id": 976}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 209}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 433}, "assignee": {"id": 548}, "organization": {"id": 672}, "project": {"owner": {"id": 746}, "assignee": {"id": 39}, "organization": {"id": 976}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"id": 311, "owner": {"id": 407}, "assignee": {"id": 85}, "organization": {"id": 673}, "project": {"owner": {"id": 711}, "assignee": {"id": 826}, "organization": {"id": 988}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 393, "owner": {"id": 419}, "assignee": {"id": 503}, "organization": {"id": 104}, "project": {"owner": {"id": 741}, "assignee": {"id": 95}, "organization": {"id": 968}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 450}, "assignee": {"id": 83}, "organization": {"id": 131}, "project": {"owner": {"id": 750}, "assignee": {"id": 807}, "organization": {"id": 992}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 405}, "assignee": {"id": 510}, "organization": {"id": 643}, "project": {"owner": {"id": 733}, "assignee": {"id": 92}, "organization": {"id": 901}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"id": 346, "owner": {"id": 432}, "assignee": {"id": 9}, "organization": {"id": 622}, "project": {"owner": {"id": 791}, "assignee": {"id": 878}, "organization": {"id": 953}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 101, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 42}, "assignee": {"id": 500}, "organization": {"id": 101}, "project": {"owner": {"id": 722}, "assignee": {"id": 852}, "organization": {"id": 990}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"id": 373, "owner": {"id": 493}, "assignee": {"id": 47}, "organization": {"id": 195}, "project": {"owner": {"id": 792}, "assignee": {"id": 897}, "organization": {"id": 974}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 5}, "assignee": {"id": 582}, "organization": {"id": 669}, "project": {"owner": {"id": 781}, "assignee": {"id": 823}, "organization": {"id": 978}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 328, "owner": {"id": 469}, "assignee": {"id": 84}, "organization": {"id": 667}, "project": {"owner": {"id": 766}, "assignee": {"id": 828}, "organization": {"id": 975}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 22}, "assignee": {"id": 598}, "organization": {"id": 124}, "project": {"owner": {"id": 774}, "assignee": {"id": 865}, "organization": {"id": 945}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 189, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 307, "owner": {"id": 466}, "assignee": {"id": 27}, "organization": {"id": 189}, "project": {"owner": {"id": 733}, "assignee": {"id": 881}, "organization": {"id": 947}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 83}, "assignee": {"id": 596}, "organization": {"id": 663}, "project": {"owner": {"id": 700}, "assignee": {"id": 833}, "organization": {"id": 904}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"id": 328, "owner": {"id": 491}, "assignee": {"id": 96}, "organization": {"id": 637}, "project": {"owner": {"id": 783}, "assignee": {"id": 869}, "organization": {"id": 926}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 97}, "assignee": {"id": 594}, "organization": {"id": 147}, "project": {"owner": {"id": 743}, "assignee": {"id": 897}, "organization": {"id": 911}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 45}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 499}, "assignee": {"id": 45}, "organization": {"id": 191}, "project": {"owner": {"id": 779}, "assignee": {"id": 880}, "organization": {"id": 921}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 28}, "assignee": {"id": 543}, "organization": {"id": 675}, "project": {"owner": {"id": 773}, "assignee": {"id": 809}, "organization": {"id": 974}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 80}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 447}, "assignee": {"id": 80}, "organization": {"id": 616}, "project": {"owner": {"id": 788}, "assignee": {"id": 865}, "organization": {"id": 941}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 92}, "assignee": {"id": 588}, "organization": {"id": 173}, "project": {"owner": {"id": 769}, "assignee": {"id": 871}, "organization": {"id": 992}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 412}, "assignee": {"id": 4}, "organization": {"id": 143}, "project": {"owner": {"id": 786}, "assignee": {"id": 807}, "organization": {"id": 964}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"id": 394, "owner": {"id": 86}, "assignee": {"id": 514}, "organization": {"id": 638}, "project": {"owner": {"id": 714}, "assignee": {"id": 800}, "organization": {"id": 937}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 255}, "user": {"role": "maintainer"}}}, "resource": {"id": 333, "owner": {"id": 473}, "assignee": {"id": 35}, "organization": {"id": 656}, "project": {"owner": {"id": 741}, "assignee": {"id": 890}, "organization": {"id": 995}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 380, "owner": {"id": 41}, "assignee": {"id": 598}, "organization": {"id": 129}, "project": {"owner": {"id": 786}, "assignee": {"id": 855}, "organization": {"id": 992}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 338, "owner": {"id": 409}, "assignee": {"id": 3}, "organization": {"id": 108}, "project": {"owner": {"id": 753}, "assignee": {"id": 867}, "organization": {"id": 908}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 396, "owner": {"id": 75}, "assignee": {"id": 585}, "organization": {"id": 675}, "project": {"owner": {"id": 774}, "assignee": {"id": 817}, "organization": {"id": 924}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 319, "owner": {"id": 465}, "assignee": {"id": 70}, "organization": {"id": 658}, "project": {"owner": {"id": 764}, "assignee": {"id": 810}, "organization": {"id": 918}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"id": 393, "owner": {"id": 42}, "assignee": {"id": 596}, "organization": {"id": 169}, "project": {"owner": {"id": 720}, "assignee": {"id": 840}, "organization": {"id": 911}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 420}, "assignee": {"id": 98}, "organization": {"id": 183}, "project": {"owner": {"id": 767}, "assignee": {"id": 839}, "organization": {"id": 919}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 56}, "assignee": {"id": 532}, "organization": {"id": 627}, "project": {"owner": {"id": 721}, "assignee": {"id": 831}, "organization": {"id": 943}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"id": 383, "owner": {"id": 419}, "assignee": {"id": 40}, "organization": {"id": 637}, "project": {"owner": {"id": 716}, "assignee": {"id": 873}, "organization": {"id": 919}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 227}, "user": {"role": "maintainer"}}}, "resource": {"id": 345, "owner": {"id": 98}, "assignee": {"id": 509}, "organization": {"id": 198}, "project": {"owner": {"id": 703}, "assignee": {"id": 801}, "organization": {"id": 978}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 450}, "assignee": {"id": 45}, "organization": {"id": 163}, "project": {"owner": {"id": 700}, "assignee": {"id": 808}, "organization": {"id": 954}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 387, "owner": {"id": 60}, "assignee": {"id": 592}, "organization": {"id": 661}, "project": {"owner": {"id": 724}, "assignee": {"id": 884}, "organization": {"id": 996}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"id": 354, "owner": {"id": 489}, "assignee": {"id": 42}, "organization": {"id": 668}, "project": {"owner": {"id": 746}, "assignee": {"id": 881}, "organization": {"id": 948}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 196, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"id": 352, "owner": {"id": 25}, "assignee": {"id": 506}, "organization": {"id": 196}, "project": {"owner": {"id": 774}, "assignee": {"id": 827}, "organization": {"id": 923}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"id": 347, "owner": {"id": 471}, "assignee": {"id": 91}, "organization": {"id": 147}, "project": {"owner": {"id": 715}, "assignee": {"id": 836}, "organization": {"id": 966}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 46}, "assignee": {"id": 505}, "organization": {"id": 666}, "project": {"owner": {"id": 782}, "assignee": {"id": 860}, "organization": {"id": 922}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 465}, "assignee": {"id": 43}, "organization": {"id": 605}, "project": {"owner": {"id": 797}, "assignee": {"id": 883}, "organization": {"id": 998}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 292}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 28}, "assignee": {"id": 577}, "organization": {"id": 171}, "project": {"owner": {"id": 769}, "assignee": {"id": 827}, "organization": {"id": 915}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 182, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 379, "owner": {"id": 460}, "assignee": {"id": 26}, "organization": {"id": 182}, "project": {"owner": {"id": 709}, "assignee": {"id": 802}, "organization": {"id": 972}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 15}, "assignee": {"id": 515}, "organization": {"id": 685}, "project": {"owner": {"id": 730}, "assignee": {"id": 894}, "organization": {"id": 918}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 68, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 330, "owner": {"id": 472}, "assignee": {"id": 68}, "organization": {"id": 620}, "project": {"owner": {"id": 779}, "assignee": {"id": 835}, "organization": {"id": 929}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"id": 354, "owner": {"id": 7}, "assignee": {"id": 535}, "organization": {"id": 140}, "project": {"owner": {"id": 757}, "assignee": {"id": 896}, "organization": {"id": 918}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 283}, "user": {"role": "supervisor"}}}, "resource": {"id": 314, "owner": {"id": 466}, "assignee": {"id": 4}, "organization": {"id": 134}, "project": {"owner": {"id": 784}, "assignee": {"id": 825}, "organization": {"id": 935}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 286}, "user": {"role": null}}}, "resource": {"id": 331, "owner": {"id": 32}, "assignee": {"id": 561}, "organization": {"id": 625}, "project": {"owner": {"id": 749}, "assignee": {"id": 869}, "organization": {"id": 959}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 128, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 305, "owner": {"id": 442}, "assignee": {"id": 16}, "organization": {"id": 600}, "project": {"owner": {"id": 770}, "assignee": {"id": 866}, "organization": {"id": 909}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 80}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 80}, "assignee": {"id": 539}, "organization": {"id": 140}, "project": {"owner": {"id": 785}, "assignee": {"id": 886}, "organization": {"id": 964}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 367, "owner": {"id": 435}, "assignee": {"id": 99}, "organization": {"id": 198}, "project": {"owner": {"id": 779}, "assignee": {"id": 862}, "organization": {"id": 981}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 72}, "user": {"role": "owner"}}}, "resource": {"id": 340, "owner": {"id": 72}, "assignee": {"id": 571}, "organization": {"id": 625}, "project": {"owner": {"id": 777}, "assignee": {"id": 892}, "organization": {"id": 963}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 471}, "assignee": {"id": 30}, "organization": {"id": 604}, "project": {"owner": {"id": 754}, "assignee": {"id": 802}, "organization": {"id": 956}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 289}, "user": {"role": "maintainer"}}}, "resource": {"id": 303, "owner": {"id": 13}, "assignee": {"id": 590}, "organization": {"id": 101}, "project": {"owner": {"id": 702}, "assignee": {"id": 887}, "organization": {"id": 994}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 154, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 459}, "assignee": {"id": 19}, "organization": {"id": 154}, "project": {"owner": {"id": 713}, "assignee": {"id": 869}, "organization": {"id": 967}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 312, "owner": {"id": 64}, "assignee": {"id": 541}, "organization": {"id": 665}, "project": {"owner": {"id": 705}, "assignee": {"id": 851}, "organization": {"id": 936}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 286}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 476}, "assignee": {"id": 80}, "organization": {"id": 692}, "project": {"owner": {"id": 764}, "assignee": {"id": 873}, "organization": {"id": 986}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 30}, "assignee": {"id": 563}, "organization": {"id": 159}, "project": {"owner": {"id": 776}, "assignee": {"id": 826}, "organization": {"id": 930}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 313, "owner": {"id": 437}, "assignee": {"id": 27}, "organization": {"id": 155}, "project": {"owner": {"id": 753}, "assignee": {"id": 859}, "organization": {"id": 920}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 238}, "user": {"role": "supervisor"}}}, "resource": {"id": 379, "owner": {"id": 32}, "assignee": {"id": 516}, "organization": {"id": 681}, "project": {"owner": {"id": 785}, "assignee": {"id": 856}, "organization": {"id": 997}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 348, "owner": {"id": 443}, "assignee": {"id": 99}, "organization": {"id": 682}, "project": {"owner": {"id": 725}, "assignee": {"id": 807}, "organization": {"id": 979}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 18}, "assignee": {"id": 575}, "organization": {"id": 198}, "project": {"owner": {"id": 713}, "assignee": {"id": 853}, "organization": {"id": 909}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 374, "owner": {"id": 402}, "assignee": {"id": 89}, "organization": {"id": 181}, "project": {"owner": {"id": 775}, "assignee": {"id": 899}, "organization": {"id": 975}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 396, "owner": {"id": 71}, "assignee": {"id": 508}, "organization": {"id": 683}, "project": {"owner": {"id": 733}, "assignee": {"id": 887}, "organization": {"id": 984}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 459}, "assignee": {"id": 67}, "organization": {"id": 602}, "project": {"owner": {"id": 719}, "assignee": {"id": 813}, "organization": {"id": 974}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 154, "owner": {"id": 207}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 60}, "assignee": {"id": 518}, "organization": {"id": 154}, "project": {"owner": {"id": 745}, "assignee": {"id": 865}, "organization": {"id": 997}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 456}, "assignee": {"id": 44}, "organization": {"id": 143}, "project": {"owner": {"id": 784}, "assignee": {"id": 851}, "organization": {"id": 940}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 398, "owner": {"id": 5}, "assignee": {"id": 595}, "organization": {"id": 627}, "project": {"owner": {"id": 708}, "assignee": {"id": 869}, "organization": {"id": 943}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 135, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 456}, "assignee": {"id": 99}, "organization": {"id": 623}, "project": {"owner": {"id": 732}, "assignee": {"id": 834}, "organization": {"id": 968}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 309, "owner": {"id": 81}, "assignee": {"id": 533}, "organization": {"id": 124}, "project": {"owner": {"id": 777}, "assignee": {"id": 819}, "organization": {"id": 903}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 378, "owner": {"id": 444}, "assignee": {"id": 5}, "organization": {"id": 171}, "project": {"owner": {"id": 714}, "assignee": {"id": 884}, "organization": {"id": 998}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 54}, "assignee": {"id": 598}, "organization": {"id": 626}, "project": {"owner": {"id": 729}, "assignee": {"id": 880}, "organization": {"id": 910}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 426}, "assignee": {"id": 55}, "organization": {"id": 611}, "project": {"owner": {"id": 706}, "assignee": {"id": 871}, "organization": {"id": 910}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 227}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 44}, "assignee": {"id": 585}, "organization": {"id": 106}, "project": {"owner": {"id": 770}, "assignee": {"id": 863}, "organization": {"id": 933}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 488}, "assignee": {"id": 76}, "organization": {"id": 189}, "project": {"owner": {"id": 705}, "assignee": {"id": 803}, "organization": {"id": 940}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 20}, "assignee": {"id": 584}, "organization": {"id": 658}, "project": {"owner": {"id": 789}, "assignee": {"id": 845}, "organization": {"id": 975}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 349, "owner": {"id": 473}, "assignee": {"id": 39}, "organization": {"id": 623}, "project": {"owner": {"id": 737}, "assignee": {"id": 805}, "organization": {"id": 920}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 357, "owner": {"id": 24}, "assignee": {"id": 536}, "organization": {"id": 155}, "project": {"owner": {"id": 774}, "assignee": {"id": 828}, "organization": {"id": 970}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": {"id": 176, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 325, "owner": {"id": 489}, "assignee": {"id": 34}, "organization": {"id": 176}, "project": {"owner": {"id": 799}, "assignee": {"id": 866}, "organization": {"id": 994}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 25, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 304, "owner": {"id": 25}, "assignee": {"id": 568}, "organization": {"id": 666}, "project": {"owner": {"id": 772}, "assignee": {"id": 818}, "organization": {"id": 910}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 65, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 443}, "assignee": {"id": 65}, "organization": {"id": 691}, "project": {"owner": {"id": 700}, "assignee": {"id": 898}, "organization": {"id": 996}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"id": 322, "owner": {"id": 65}, "assignee": {"id": 594}, "organization": {"id": 134}, "project": {"owner": {"id": 750}, "assignee": {"id": 815}, "organization": {"id": 998}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 334, "owner": {"id": 404}, "assignee": {"id": 8}, "organization": {"id": 182}, "project": {"owner": {"id": 791}, "assignee": {"id": 896}, "organization": {"id": 936}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 286}, "user": {"role": "worker"}}}, "resource": {"id": 334, "owner": {"id": 65}, "assignee": {"id": 552}, "organization": {"id": 661}, "project": {"owner": {"id": 778}, "assignee": {"id": 832}, "organization": {"id": 913}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 366, "owner": {"id": 459}, "assignee": {"id": 78}, "organization": {"id": 647}, "project": {"owner": {"id": 795}, "assignee": {"id": 887}, "organization": {"id": 950}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 223}, "user": {"role": null}}}, "resource": {"id": 372, "owner": {"id": 94}, "assignee": {"id": 520}, "organization": {"id": 132}, "project": {"owner": {"id": 729}, "assignee": {"id": 812}, "organization": {"id": 924}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 471}, "assignee": {"id": 63}, "organization": {"id": 123}, "project": {"owner": {"id": 749}, "assignee": {"id": 835}, "organization": {"id": 982}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 67}, "assignee": {"id": 542}, "organization": {"id": 637}, "project": {"owner": {"id": 757}, "assignee": {"id": 831}, "organization": {"id": 920}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"id": 356, "owner": {"id": 429}, "assignee": {"id": 7}, "organization": {"id": 653}, "project": {"owner": {"id": 747}, "assignee": {"id": 886}, "organization": {"id": 935}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 32}, "assignee": {"id": 590}, "organization": {"id": 168}, "project": {"owner": {"id": 797}, "assignee": {"id": 892}, "organization": {"id": 931}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 202}, "user": {"role": "worker"}}}, "resource": {"id": 372, "owner": {"id": 485}, "assignee": {"id": 27}, "organization": {"id": 147}, "project": {"owner": {"id": 715}, "assignee": {"id": 876}, "organization": {"id": 927}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 58}, "assignee": {"id": 543}, "organization": {"id": 619}, "project": {"owner": {"id": 798}, "assignee": {"id": 876}, "organization": {"id": 904}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": {"id": 176, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"id": 342, "owner": {"id": 483}, "assignee": {"id": 47}, "organization": {"id": 688}, "project": {"owner": {"id": 787}, "assignee": {"id": 881}, "organization": {"id": 969}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 327, "owner": {"id": 72}, "assignee": {"id": 561}, "organization": {"id": 162}, "project": {"owner": {"id": 789}, "assignee": {"id": 889}, "organization": {"id": 965}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 326, "owner": {"id": 457}, "assignee": {"id": 13}, "organization": {"id": 170}, "project": {"owner": {"id": 749}, "assignee": {"id": 861}, "organization": {"id": 988}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 364, "owner": {"id": 98}, "assignee": {"id": 501}, "organization": {"id": 607}, "project": {"owner": {"id": 792}, "assignee": {"id": 871}, "organization": {"id": 905}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 249}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 438}, "assignee": {"id": 84}, "organization": {"id": 672}, "project": {"owner": {"id": 753}, "assignee": {"id": 831}, "organization": {"id": 927}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 54}, "assignee": {"id": 504}, "organization": {"id": 128}, "project": {"owner": {"id": 704}, "assignee": {"id": 825}, "organization": {"id": 952}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"id": 391, "owner": {"id": 445}, "assignee": {"id": 542}, "organization": {"id": 139}, "project": {"owner": {"id": 705}, "assignee": {"id": 860}, "organization": {"id": 909}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"id": 345, "owner": {"id": 96}, "assignee": {"id": 507}, "organization": {"id": 688}, "project": {"owner": {"id": 793}, "assignee": {"id": 895}, "organization": {"id": 993}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 64}, "user": {"role": "owner"}}}, "resource": {"id": 382, "owner": {"id": 463}, "assignee": {"id": 572}, "organization": {"id": 623}, "project": {"owner": {"id": 781}, "assignee": {"id": 860}, "organization": {"id": 960}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"id": 391, "owner": {"id": 40}, "assignee": {"id": 515}, "organization": {"id": 170}, "project": {"owner": {"id": 710}, "assignee": {"id": 820}, "organization": {"id": 988}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 220}, "user": {"role": "maintainer"}}}, "resource": {"id": 389, "owner": {"id": 416}, "assignee": {"id": 505}, "organization": {"id": 194}, "project": {"owner": {"id": 736}, "assignee": {"id": 837}, "organization": {"id": 982}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 46}, "assignee": {"id": 579}, "organization": {"id": 659}, "project": {"owner": {"id": 753}, "assignee": {"id": 814}, "organization": {"id": 976}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 427}, "assignee": {"id": 588}, "organization": {"id": 697}, "project": {"owner": {"id": 717}, "assignee": {"id": 823}, "organization": {"id": 942}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"id": 382, "owner": {"id": 48}, "assignee": {"id": 592}, "organization": {"id": 117}, "project": {"owner": {"id": 775}, "assignee": {"id": 880}, "organization": {"id": 996}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 160, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 484}, "assignee": {"id": 545}, "organization": {"id": 160}, "project": {"owner": {"id": 725}, "assignee": {"id": 871}, "organization": {"id": 970}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 44}, "assignee": {"id": 540}, "organization": {"id": 623}, "project": {"owner": {"id": 791}, "assignee": {"id": 808}, "organization": {"id": 947}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 440}, "assignee": {"id": 513}, "organization": {"id": 623}, "project": {"owner": {"id": 744}, "assignee": {"id": 848}, "organization": {"id": 996}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 397, "owner": {"id": 411}, "assignee": {"id": 19}, "organization": {"id": 162}, "project": {"owner": {"id": 731}, "assignee": {"id": 885}, "organization": {"id": 940}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 37, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 431}, "assignee": {"id": 599}, "organization": {"id": 144}, "project": {"owner": {"id": 792}, "assignee": {"id": 849}, "organization": {"id": 971}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 321, "owner": {"id": 479}, "assignee": {"id": 34}, "organization": {"id": 699}, "project": {"owner": {"id": 726}, "assignee": {"id": 873}, "organization": {"id": 970}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 410}, "assignee": {"id": 564}, "organization": {"id": 699}, "project": {"owner": {"id": 757}, "assignee": {"id": 872}, "organization": {"id": 981}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 400}, "assignee": {"id": 45}, "organization": {"id": 122}, "project": {"owner": {"id": 781}, "assignee": {"id": 835}, "organization": {"id": 921}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 360, "owner": {"id": 427}, "assignee": {"id": 536}, "organization": {"id": 118}, "project": {"owner": {"id": 729}, "assignee": {"id": 877}, "organization": {"id": 971}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 123, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 401}, "assignee": {"id": 84}, "organization": {"id": 668}, "project": {"owner": {"id": 720}, "assignee": {"id": 821}, "organization": {"id": 968}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"id": 393, "owner": {"id": 409}, "assignee": {"id": 562}, "organization": {"id": 606}, "project": {"owner": {"id": 731}, "assignee": {"id": 885}, "organization": {"id": 942}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 346, "owner": {"id": 450}, "assignee": {"id": 8}, "organization": {"id": 168}, "project": {"owner": {"id": 718}, "assignee": {"id": 858}, "organization": {"id": 906}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 311, "owner": {"id": 439}, "assignee": {"id": 584}, "organization": {"id": 181}, "project": {"owner": {"id": 758}, "assignee": {"id": 855}, "organization": {"id": 953}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 390, "owner": {"id": 445}, "assignee": {"id": 72}, "organization": {"id": 638}, "project": {"owner": {"id": 798}, "assignee": {"id": 818}, "organization": {"id": 903}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"id": 313, "owner": {"id": 400}, "assignee": {"id": 511}, "organization": {"id": 694}, "project": {"owner": {"id": 743}, "assignee": {"id": 872}, "organization": {"id": 963}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 447}, "assignee": {"id": 36}, "organization": {"id": 187}, "project": {"owner": {"id": 753}, "assignee": {"id": 894}, "organization": {"id": 980}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 450}, "assignee": {"id": 567}, "organization": {"id": 145}, "project": {"owner": {"id": 703}, "assignee": {"id": 862}, "organization": {"id": 940}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 172, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 404}, "assignee": {"id": 19}, "organization": {"id": 670}, "project": {"owner": {"id": 794}, "assignee": {"id": 825}, "organization": {"id": 952}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 382, "owner": {"id": 440}, "assignee": {"id": 583}, "organization": {"id": 630}, "project": {"owner": {"id": 707}, "assignee": {"id": 833}, "organization": {"id": 955}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 266}, "user": {"role": null}}}, "resource": {"id": 371, "owner": {"id": 412}, "assignee": {"id": 64}, "organization": {"id": 121}, "project": {"owner": {"id": 757}, "assignee": {"id": 813}, "organization": {"id": 956}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 370, "owner": {"id": 471}, "assignee": {"id": 576}, "organization": {"id": 151}, "project": {"owner": {"id": 701}, "assignee": {"id": 852}, "organization": {"id": 946}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 119, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 477}, "assignee": {"id": 5}, "organization": {"id": 693}, "project": {"owner": {"id": 746}, "assignee": {"id": 854}, "organization": {"id": 996}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 475}, "assignee": {"id": 542}, "organization": {"id": 640}, "project": {"owner": {"id": 757}, "assignee": {"id": 800}, "organization": {"id": 978}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"id": 322, "owner": {"id": 476}, "assignee": {"id": 57}, "organization": {"id": 195}, "project": {"owner": {"id": 791}, "assignee": {"id": 887}, "organization": {"id": 977}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 353, "owner": {"id": 456}, "assignee": {"id": 596}, "organization": {"id": 100}, "project": {"owner": {"id": 733}, "assignee": {"id": 862}, "organization": {"id": 900}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 481}, "assignee": {"id": 90}, "organization": {"id": 671}, "project": {"owner": {"id": 758}, "assignee": {"id": 850}, "organization": {"id": 927}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 423}, "assignee": {"id": 592}, "organization": {"id": 604}, "project": {"owner": {"id": 778}, "assignee": {"id": 821}, "organization": {"id": 987}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"id": 329, "owner": {"id": 464}, "assignee": {"id": 23}, "organization": {"id": 107}, "project": {"owner": {"id": 759}, "assignee": {"id": 854}, "organization": {"id": 950}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 166, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"id": 302, "owner": {"id": 453}, "assignee": {"id": 532}, "organization": {"id": 166}, "project": {"owner": {"id": 765}, "assignee": {"id": 821}, "organization": {"id": 982}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 324, "owner": {"id": 471}, "assignee": {"id": 5}, "organization": {"id": 663}, "project": {"owner": {"id": 704}, "assignee": {"id": 857}, "organization": {"id": 901}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 307, "owner": {"id": 445}, "assignee": {"id": 524}, "organization": {"id": 699}, "project": {"owner": {"id": 794}, "assignee": {"id": 826}, "organization": {"id": 928}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 404}, "assignee": {"id": 38}, "organization": {"id": 197}, "project": {"owner": {"id": 724}, "assignee": {"id": 891}, "organization": {"id": 913}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"id": 315, "owner": {"id": 454}, "assignee": {"id": 512}, "organization": {"id": 173}, "project": {"owner": {"id": 740}, "assignee": {"id": 821}, "organization": {"id": 935}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 282}, "user": {"role": "supervisor"}}}, "resource": {"id": 343, "owner": {"id": 438}, "assignee": {"id": 83}, "organization": {"id": 695}, "project": {"owner": {"id": 721}, "assignee": {"id": 887}, "organization": {"id": 961}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 497}, "assignee": {"id": 571}, "organization": {"id": 638}, "project": {"owner": {"id": 729}, "assignee": {"id": 888}, "organization": {"id": 944}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 492}, "assignee": {"id": 72}, "organization": {"id": 136}, "project": {"owner": {"id": 792}, "assignee": {"id": 843}, "organization": {"id": 971}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 422}, "assignee": {"id": 574}, "organization": {"id": 158}, "project": {"owner": {"id": 762}, "assignee": {"id": 833}, "organization": {"id": 961}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 489}, "assignee": {"id": 63}, "organization": {"id": 628}, "project": {"owner": {"id": 722}, "assignee": {"id": 856}, "organization": {"id": 967}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 424}, "assignee": {"id": 581}, "organization": {"id": 625}, "project": {"owner": {"id": 790}, "assignee": {"id": 896}, "organization": {"id": 929}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 374, "owner": {"id": 417}, "assignee": {"id": 39}, "organization": {"id": 104}, "project": {"owner": {"id": 727}, "assignee": {"id": 897}, "organization": {"id": 988}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 462}, "assignee": {"id": 517}, "organization": {"id": 167}, "project": {"owner": {"id": 763}, "assignee": {"id": 890}, "organization": {"id": 958}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 226}, "user": {"role": null}}}, "resource": {"id": 372, "owner": {"id": 424}, "assignee": {"id": 75}, "organization": {"id": 626}, "project": {"owner": {"id": 737}, "assignee": {"id": 836}, "organization": {"id": 993}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 410}, "assignee": {"id": 555}, "organization": {"id": 698}, "project": {"owner": {"id": 787}, "assignee": {"id": 834}, "organization": {"id": 971}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 320, "owner": {"id": 448}, "assignee": {"id": 21}, "organization": {"id": 198}, "project": {"owner": {"id": 729}, "assignee": {"id": 865}, "organization": {"id": 961}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 145, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"id": 347, "owner": {"id": 451}, "assignee": {"id": 579}, "organization": {"id": 145}, "project": {"owner": {"id": 758}, "assignee": {"id": 876}, "organization": {"id": 979}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 433}, "assignee": {"id": 0}, "organization": {"id": 669}, "project": {"owner": {"id": 765}, "assignee": {"id": 844}, "organization": {"id": 941}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 420}, "assignee": {"id": 548}, "organization": {"id": 678}, "project": {"owner": {"id": 797}, "assignee": {"id": 845}, "organization": {"id": 911}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 427}, "assignee": {"id": 31}, "organization": {"id": 187}, "project": {"owner": {"id": 764}, "assignee": {"id": 832}, "organization": {"id": 978}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 495}, "assignee": {"id": 542}, "organization": {"id": 151}, "project": {"owner": {"id": 743}, "assignee": {"id": 885}, "organization": {"id": 932}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"id": 317, "owner": {"id": 413}, "assignee": {"id": 58}, "organization": {"id": 600}, "project": {"owner": {"id": 730}, "assignee": {"id": 885}, "organization": {"id": 985}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"id": 399, "owner": {"id": 457}, "assignee": {"id": 565}, "organization": {"id": 611}, "project": {"owner": {"id": 747}, "assignee": {"id": 839}, "organization": {"id": 955}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 350, "owner": {"id": 473}, "assignee": {"id": 17}, "organization": {"id": 120}, "project": {"owner": {"id": 784}, "assignee": {"id": 818}, "organization": {"id": 950}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 397, "owner": {"id": 406}, "assignee": {"id": 508}, "organization": {"id": 139}, "project": {"owner": {"id": 741}, "assignee": {"id": 803}, "organization": {"id": 951}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 486}, "assignee": {"id": 42}, "organization": {"id": 646}, "project": {"owner": {"id": 713}, "assignee": {"id": 838}, "organization": {"id": 972}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 38}, "user": {"role": "owner"}}}, "resource": {"id": 364, "owner": {"id": 462}, "assignee": {"id": 587}, "organization": {"id": 630}, "project": {"owner": {"id": 785}, "assignee": {"id": 816}, "organization": {"id": 933}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"id": 307, "owner": {"id": 451}, "assignee": {"id": 69}, "organization": {"id": 187}, "project": {"owner": {"id": 730}, "assignee": {"id": 819}, "organization": {"id": 966}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 479}, "assignee": {"id": 537}, "organization": {"id": 101}, "project": {"owner": {"id": 785}, "assignee": {"id": 876}, "organization": {"id": 991}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 163, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 325, "owner": {"id": 497}, "assignee": {"id": 44}, "organization": {"id": 624}, "project": {"owner": {"id": 768}, "assignee": {"id": 866}, "organization": {"id": 973}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 30, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"id": 336, "owner": {"id": 477}, "assignee": {"id": 511}, "organization": {"id": 673}, "project": {"owner": {"id": 719}, "assignee": {"id": 814}, "organization": {"id": 930}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 411}, "assignee": {"id": 6}, "organization": {"id": 189}, "project": {"owner": {"id": 714}, "assignee": {"id": 842}, "organization": {"id": 913}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 466}, "assignee": {"id": 553}, "organization": {"id": 148}, "project": {"owner": {"id": 713}, "assignee": {"id": 821}, "organization": {"id": 956}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 131, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 485}, "assignee": {"id": 78}, "organization": {"id": 684}, "project": {"owner": {"id": 798}, "assignee": {"id": 894}, "organization": {"id": 946}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 384, "owner": {"id": 428}, "assignee": {"id": 523}, "organization": {"id": 651}, "project": {"owner": {"id": 737}, "assignee": {"id": 816}, "organization": {"id": 973}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"id": 349, "owner": {"id": 469}, "assignee": {"id": 2}, "organization": {"id": 194}, "project": {"owner": {"id": 790}, "assignee": {"id": 893}, "organization": {"id": 913}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 402}, "assignee": {"id": 566}, "organization": {"id": 147}, "project": {"owner": {"id": 715}, "assignee": {"id": 889}, "organization": {"id": 931}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 487}, "assignee": {"id": 84}, "organization": {"id": 685}, "project": {"owner": {"id": 784}, "assignee": {"id": 821}, "organization": {"id": 903}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"id": 300, "owner": {"id": 424}, "assignee": {"id": 521}, "organization": {"id": 607}, "project": {"owner": {"id": 789}, "assignee": {"id": 848}, "organization": {"id": 982}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 308, "owner": {"id": 443}, "assignee": {"id": 29}, "organization": {"id": 167}, "project": {"owner": {"id": 750}, "assignee": {"id": 837}, "organization": {"id": 935}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 450}, "assignee": {"id": 570}, "organization": {"id": 125}, "project": {"owner": {"id": 774}, "assignee": {"id": 847}, "organization": {"id": 937}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 331, "owner": {"id": 426}, "assignee": {"id": 61}, "organization": {"id": 665}, "project": {"owner": {"id": 794}, "assignee": {"id": 846}, "organization": {"id": 967}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 249}, "user": {"role": null}}}, "resource": {"id": 315, "owner": {"id": 479}, "assignee": {"id": 501}, "organization": {"id": 693}, "project": {"owner": {"id": 761}, "assignee": {"id": 834}, "organization": {"id": 973}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 457}, "assignee": {"id": 44}, "organization": {"id": 148}, "project": {"owner": {"id": 789}, "assignee": {"id": 883}, "organization": {"id": 980}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 14}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 414}, "assignee": {"id": 592}, "organization": {"id": 179}, "project": {"owner": {"id": 742}, "assignee": {"id": 814}, "organization": {"id": 902}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 397, "owner": {"id": 404}, "assignee": {"id": 97}, "organization": {"id": 667}, "project": {"owner": {"id": 796}, "assignee": {"id": 803}, "organization": {"id": 922}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"id": 396, "owner": {"id": 463}, "assignee": {"id": 540}, "organization": {"id": 632}, "project": {"owner": {"id": 720}, "assignee": {"id": 894}, "organization": {"id": 900}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 402}, "assignee": {"id": 34}, "organization": {"id": 105}, "project": {"owner": {"id": 716}, "assignee": {"id": 863}, "organization": {"id": 950}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 41, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 334, "owner": {"id": 458}, "assignee": {"id": 520}, "organization": {"id": 151}, "project": {"owner": {"id": 735}, "assignee": {"id": 858}, "organization": {"id": 997}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 409}, "assignee": {"id": 0}, "organization": {"id": 636}, "project": {"owner": {"id": 709}, "assignee": {"id": 822}, "organization": {"id": 916}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 418}, "assignee": {"id": 511}, "organization": {"id": 653}, "project": {"owner": {"id": 712}, "assignee": {"id": 823}, "organization": {"id": 915}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 398, "owner": {"id": 462}, "assignee": {"id": 88}, "organization": {"id": 128}, "project": {"owner": {"id": 752}, "assignee": {"id": 866}, "organization": {"id": 961}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 200}, "user": {"role": "supervisor"}}}, "resource": {"id": 343, "owner": {"id": 419}, "assignee": {"id": 525}, "organization": {"id": 134}, "project": {"owner": {"id": 791}, "assignee": {"id": 805}, "organization": {"id": 913}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 150, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 341, "owner": {"id": 417}, "assignee": {"id": 1}, "organization": {"id": 626}, "project": {"owner": {"id": 793}, "assignee": {"id": 898}, "organization": {"id": 913}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 465}, "assignee": {"id": 591}, "organization": {"id": 614}, "project": {"owner": {"id": 710}, "assignee": {"id": 877}, "organization": {"id": 901}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 15}, "user": {"role": "owner"}}}, "resource": {"id": 395, "owner": {"id": 473}, "assignee": {"id": 15}, "organization": {"id": 164}, "project": {"owner": {"id": 769}, "assignee": {"id": 839}, "organization": {"id": 965}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"id": 366, "owner": {"id": 409}, "assignee": {"id": 568}, "organization": {"id": 108}, "project": {"owner": {"id": 792}, "assignee": {"id": 854}, "organization": {"id": 936}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 395, "owner": {"id": 436}, "assignee": {"id": 40}, "organization": {"id": 687}, "project": {"owner": {"id": 792}, "assignee": {"id": 824}, "organization": {"id": 904}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"id": 347, "owner": {"id": 492}, "assignee": {"id": 573}, "organization": {"id": 664}, "project": {"owner": {"id": 784}, "assignee": {"id": 834}, "organization": {"id": 967}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 349, "owner": {"id": 439}, "assignee": {"id": 5}, "organization": {"id": 177}, "project": {"owner": {"id": 709}, "assignee": {"id": 872}, "organization": {"id": 986}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 345, "owner": {"id": 407}, "assignee": {"id": 519}, "organization": {"id": 169}, "project": {"owner": {"id": 720}, "assignee": {"id": 876}, "organization": {"id": 984}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 418}, "assignee": {"id": 86}, "organization": {"id": 644}, "project": {"owner": {"id": 729}, "assignee": {"id": 893}, "organization": {"id": 953}}}} } -test_scope_EXPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:annotations", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 499}, "assignee": {"id": 576}, "organization": {"id": 663}, "project": {"owner": {"id": 707}, "assignee": {"id": 883}, "organization": {"id": 947}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"id": 346, "owner": {"id": 455}, "assignee": {"id": 94}, "organization": {"id": 100}, "project": {"owner": {"id": 793}, "assignee": {"id": 837}, "organization": {"id": 976}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 466}, "assignee": {"id": 598}, "organization": {"id": 625}, "project": {"owner": {"id": 66}, "assignee": {"id": 812}, "organization": {"id": 961}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 142, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 425}, "assignee": {"id": 92}, "organization": {"id": 683}, "project": {"owner": {"id": 735}, "assignee": {"id": 807}, "organization": {"id": 971}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": null}, "resource": {"id": 335, "owner": {"id": 493}, "assignee": {"id": 573}, "organization": {"id": 682}, "project": {"owner": {"id": 3}, "assignee": {"id": 873}, "organization": {"id": 931}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 449}, "assignee": {"id": 69}, "organization": {"id": 104}, "project": {"owner": {"id": 701}, "assignee": {"id": 804}, "organization": {"id": 930}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": null}, "resource": {"id": 341, "owner": {"id": 472}, "assignee": {"id": 522}, "organization": {"id": 658}, "project": {"owner": {"id": 29}, "assignee": {"id": 874}, "organization": {"id": 978}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 409}, "assignee": {"id": 28}, "organization": {"id": 604}, "project": {"owner": {"id": 761}, "assignee": {"id": 844}, "organization": {"id": 913}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": null}, "resource": {"id": 387, "owner": {"id": 425}, "assignee": {"id": 532}, "organization": {"id": 665}, "project": {"owner": {"id": 36}, "assignee": {"id": 898}, "organization": {"id": 954}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 489}, "assignee": {"id": 38}, "organization": {"id": 106}, "project": {"owner": {"id": 758}, "assignee": {"id": 800}, "organization": {"id": 942}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": null}, "resource": {"id": 383, "owner": {"id": 479}, "assignee": {"id": 597}, "organization": {"id": 694}, "project": {"owner": {"id": 80}, "assignee": {"id": 806}, "organization": {"id": 980}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"id": 369, "owner": {"id": 461}, "assignee": {"id": 15}, "organization": {"id": 611}, "project": {"owner": {"id": 710}, "assignee": {"id": 856}, "organization": {"id": 947}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": null}, "resource": {"id": 356, "owner": {"id": 416}, "assignee": {"id": 560}, "organization": {"id": 688}, "project": {"owner": {"id": 731}, "assignee": {"id": 11}, "organization": {"id": 962}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 77}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 438}, "assignee": {"id": 568}, "organization": {"id": 182}, "project": {"owner": {"id": 750}, "assignee": {"id": 854}, "organization": {"id": 904}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 498}, "assignee": {"id": 591}, "organization": {"id": 634}, "project": {"owner": {"id": 736}, "assignee": {"id": 38}, "organization": {"id": 923}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 375, "owner": {"id": 472}, "assignee": {"id": 560}, "organization": {"id": 636}, "project": {"owner": {"id": 764}, "assignee": {"id": 866}, "organization": {"id": 923}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": null}, "resource": {"id": 317, "owner": {"id": 426}, "assignee": {"id": 501}, "organization": {"id": 695}, "project": {"owner": {"id": 756}, "assignee": {"id": 82}, "organization": {"id": 917}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 419}, "assignee": {"id": 541}, "organization": {"id": 128}, "project": {"owner": {"id": 704}, "assignee": {"id": 835}, "organization": {"id": 960}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": null}, "resource": {"id": 396, "owner": {"id": 440}, "assignee": {"id": 587}, "organization": {"id": 656}, "project": {"owner": {"id": 795}, "assignee": {"id": 37}, "organization": {"id": 990}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 422}, "assignee": {"id": 547}, "organization": {"id": 668}, "project": {"owner": {"id": 759}, "assignee": {"id": 855}, "organization": {"id": 936}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": null}, "resource": {"id": 396, "owner": {"id": 408}, "assignee": {"id": 549}, "organization": {"id": 675}, "project": {"owner": {"id": 711}, "assignee": {"id": 24}, "organization": {"id": 911}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 132, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 405}, "assignee": {"id": 540}, "organization": {"id": 132}, "project": {"owner": {"id": 731}, "assignee": {"id": 827}, "organization": {"id": 919}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": null}, "resource": {"id": 319, "owner": {"id": 14}, "assignee": {"id": 500}, "organization": {"id": 660}, "project": {"owner": {"id": 749}, "assignee": {"id": 884}, "organization": {"id": 975}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 405}, "assignee": {"id": 507}, "organization": {"id": 651}, "project": {"owner": {"id": 711}, "assignee": {"id": 811}, "organization": {"id": 990}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": null}, "resource": {"id": 309, "owner": {"id": 79}, "assignee": {"id": 522}, "organization": {"id": 626}, "project": {"owner": {"id": 778}, "assignee": {"id": 830}, "organization": {"id": 928}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 353, "owner": {"id": 444}, "assignee": {"id": 572}, "organization": {"id": 134}, "project": {"owner": {"id": 775}, "assignee": {"id": 862}, "organization": {"id": 982}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": null}, "resource": {"id": 310, "owner": {"id": 58}, "assignee": {"id": 558}, "organization": {"id": 692}, "project": {"owner": {"id": 763}, "assignee": {"id": 809}, "organization": {"id": 971}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"id": 378, "owner": {"id": 445}, "assignee": {"id": 518}, "organization": {"id": 684}, "project": {"owner": {"id": 749}, "assignee": {"id": 896}, "organization": {"id": 976}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": null}, "resource": {"id": 314, "owner": {"id": 36}, "assignee": {"id": 530}, "organization": {"id": 645}, "project": {"owner": {"id": 731}, "assignee": {"id": 836}, "organization": {"id": 974}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 421}, "assignee": {"id": 594}, "organization": {"id": 196}, "project": {"owner": {"id": 777}, "assignee": {"id": 812}, "organization": {"id": 986}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": null}, "resource": {"id": 360, "owner": {"id": 23}, "assignee": {"id": 506}, "organization": {"id": 654}, "project": {"owner": {"id": 799}, "assignee": {"id": 897}, "organization": {"id": 906}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 419}, "assignee": {"id": 556}, "organization": {"id": 682}, "project": {"owner": {"id": 753}, "assignee": {"id": 881}, "organization": {"id": 990}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": null}, "resource": {"id": 399, "owner": {"id": 408}, "assignee": {"id": 62}, "organization": {"id": 693}, "project": {"owner": {"id": 737}, "assignee": {"id": 831}, "organization": {"id": 913}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"id": 322, "owner": {"id": 471}, "assignee": {"id": 510}, "organization": {"id": 176}, "project": {"owner": {"id": 750}, "assignee": {"id": 889}, "organization": {"id": 909}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": null}, "resource": {"id": 361, "owner": {"id": 434}, "assignee": {"id": 25}, "organization": {"id": 675}, "project": {"owner": {"id": 758}, "assignee": {"id": 845}, "organization": {"id": 911}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 426}, "assignee": {"id": 506}, "organization": {"id": 637}, "project": {"owner": {"id": 723}, "assignee": {"id": 838}, "organization": {"id": 979}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": null}, "resource": {"id": 318, "owner": {"id": 456}, "assignee": {"id": 17}, "organization": {"id": 601}, "project": {"owner": {"id": 715}, "assignee": {"id": 823}, "organization": {"id": 989}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 424}, "assignee": {"id": 525}, "organization": {"id": 120}, "project": {"owner": {"id": 763}, "assignee": {"id": 891}, "organization": {"id": 996}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": null}, "resource": {"id": 343, "owner": {"id": 437}, "assignee": {"id": 92}, "organization": {"id": 606}, "project": {"owner": {"id": 773}, "assignee": {"id": 832}, "organization": {"id": 961}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"id": 361, "owner": {"id": 462}, "assignee": {"id": 582}, "organization": {"id": 679}, "project": {"owner": {"id": 776}, "assignee": {"id": 838}, "organization": {"id": 958}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": null}, "resource": {"id": 389, "owner": {"id": 474}, "assignee": {"id": 91}, "organization": {"id": 664}, "project": {"owner": {"id": 795}, "assignee": {"id": 885}, "organization": {"id": 971}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 282}, "user": {"role": "supervisor"}}}, "resource": {"id": 399, "owner": {"id": 436}, "assignee": {"id": 541}, "organization": {"id": 178}, "project": {"owner": {"id": 712}, "assignee": {"id": 840}, "organization": {"id": 989}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": null}, "resource": {"id": 397, "owner": {"id": 481}, "assignee": {"id": 545}, "organization": {"id": 606}, "project": {"owner": {"id": 786}, "assignee": {"id": 802}, "organization": {"id": 913}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 491}, "assignee": {"id": 530}, "organization": {"id": 637}, "project": {"owner": {"id": 777}, "assignee": {"id": 867}, "organization": {"id": 950}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": null}, "resource": {"id": 376, "owner": {"id": 479}, "assignee": {"id": 581}, "organization": {"id": 609}, "project": {"owner": {"id": 746}, "assignee": {"id": 840}, "organization": {"id": 997}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 463}, "assignee": {"id": 587}, "organization": {"id": 161}, "project": {"owner": {"id": 752}, "assignee": {"id": 872}, "organization": {"id": 919}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": null}, "resource": {"id": 393, "owner": {"id": 496}, "assignee": {"id": 577}, "organization": {"id": 653}, "project": {"owner": {"id": 719}, "assignee": {"id": 883}, "organization": {"id": 989}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 412}, "assignee": {"id": 550}, "organization": {"id": 635}, "project": {"owner": {"id": 795}, "assignee": {"id": 879}, "organization": {"id": 923}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 48, "privilege": "worker"}, "organization": null}, "resource": {"id": 333, "owner": {"id": 452}, "assignee": {"id": 545}, "organization": {"id": 638}, "project": {"owner": {"id": 779}, "assignee": {"id": 858}, "organization": {"id": 991}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 333, "owner": {"id": 451}, "assignee": {"id": 516}, "organization": {"id": 146}, "project": {"owner": {"id": 711}, "assignee": {"id": 849}, "organization": {"id": 900}}}} } -test_scope_UPDATE_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": null}, "resource": {"id": 367, "owner": {"id": 488}, "assignee": {"id": 509}, "organization": {"id": 609}, "project": {"owner": {"id": 758}, "assignee": {"id": 839}, "organization": {"id": 952}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 428}, "assignee": {"id": 551}, "organization": {"id": 625}, "project": {"owner": {"id": 731}, "assignee": {"id": 886}, "organization": {"id": 955}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 315, "owner": {"id": 417}, "assignee": {"id": 554}, "organization": {"id": 188}, "project": {"owner": {"id": 86}, "assignee": {"id": 866}, "organization": {"id": 926}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 334, "owner": {"id": 407}, "assignee": {"id": 533}, "organization": {"id": 166}, "project": {"owner": {"id": 786}, "assignee": {"id": 825}, "organization": {"id": 964}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 422}, "assignee": {"id": 591}, "organization": {"id": 633}, "project": {"owner": {"id": 57}, "assignee": {"id": 850}, "organization": {"id": 956}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 10}, "user": {"role": "owner"}}}, "resource": {"id": 328, "owner": {"id": 424}, "assignee": {"id": 535}, "organization": {"id": 613}, "project": {"owner": {"id": 797}, "assignee": {"id": 838}, "organization": {"id": 993}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 123, "owner": {"id": 227}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 476}, "assignee": {"id": 561}, "organization": {"id": 123}, "project": {"owner": {"id": 10}, "assignee": {"id": 866}, "organization": {"id": 925}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "delete", "auth": {"user": {"id": 22, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 270}, "user": {"role": "maintainer"}}}, "resource": {"id": 376, "owner": {"id": 425}, "assignee": {"id": 573}, "organization": {"id": 129}, "project": {"owner": {"id": 792}, "assignee": {"id": 880}, "organization": {"id": 905}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 37, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 439}, "assignee": {"id": 538}, "organization": {"id": 684}, "project": {"owner": {"id": 37}, "assignee": {"id": 888}, "organization": {"id": 972}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"id": 388, "owner": {"id": 472}, "assignee": {"id": 506}, "organization": {"id": 691}, "project": {"owner": {"id": 756}, "assignee": {"id": 801}, "organization": {"id": 988}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"id": 322, "owner": {"id": 490}, "assignee": {"id": 542}, "organization": {"id": 136}, "project": {"owner": {"id": 32}, "assignee": {"id": 865}, "organization": {"id": 931}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 11, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 417}, "assignee": {"id": 542}, "organization": {"id": 156}, "project": {"owner": {"id": 743}, "assignee": {"id": 889}, "organization": {"id": 914}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 335, "owner": {"id": 482}, "assignee": {"id": 546}, "organization": {"id": 601}, "project": {"owner": {"id": 54}, "assignee": {"id": 853}, "organization": {"id": 907}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 321, "owner": {"id": 459}, "assignee": {"id": 526}, "organization": {"id": 622}, "project": {"owner": {"id": 761}, "assignee": {"id": 812}, "organization": {"id": 997}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 465}, "assignee": {"id": 537}, "organization": {"id": 106}, "project": {"owner": {"id": 68}, "assignee": {"id": 850}, "organization": {"id": 909}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 415}, "assignee": {"id": 589}, "organization": {"id": 194}, "project": {"owner": {"id": 715}, "assignee": {"id": 827}, "organization": {"id": 948}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 286}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 412}, "assignee": {"id": 568}, "organization": {"id": 630}, "project": {"owner": {"id": 39}, "assignee": {"id": 842}, "organization": {"id": 928}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 423}, "assignee": {"id": 524}, "organization": {"id": 652}, "project": {"owner": {"id": 759}, "assignee": {"id": 885}, "organization": {"id": 917}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"id": 378, "owner": {"id": 494}, "assignee": {"id": 514}, "organization": {"id": 196}, "project": {"owner": {"id": 65}, "assignee": {"id": 896}, "organization": {"id": 979}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 270}, "user": {"role": null}}}, "resource": {"id": 343, "owner": {"id": 498}, "assignee": {"id": 531}, "organization": {"id": 100}, "project": {"owner": {"id": 757}, "assignee": {"id": 865}, "organization": {"id": 971}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"id": 319, "owner": {"id": 404}, "assignee": {"id": 596}, "organization": {"id": 693}, "project": {"owner": {"id": 85}, "assignee": {"id": 811}, "organization": {"id": 941}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"id": 369, "owner": {"id": 435}, "assignee": {"id": 509}, "organization": {"id": 658}, "project": {"owner": {"id": 709}, "assignee": {"id": 878}, "organization": {"id": 939}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 419}, "assignee": {"id": 549}, "organization": {"id": 116}, "project": {"owner": {"id": 9}, "assignee": {"id": 833}, "organization": {"id": 904}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 59}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 407}, "assignee": {"id": 531}, "organization": {"id": 127}, "project": {"owner": {"id": 781}, "assignee": {"id": 826}, "organization": {"id": 951}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 450}, "assignee": {"id": 543}, "organization": {"id": 666}, "project": {"owner": {"id": 31}, "assignee": {"id": 843}, "organization": {"id": 906}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 334, "owner": {"id": 427}, "assignee": {"id": 586}, "organization": {"id": 695}, "project": {"owner": {"id": 747}, "assignee": {"id": 815}, "organization": {"id": 913}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 427}, "assignee": {"id": 583}, "organization": {"id": 107}, "project": {"owner": {"id": 23}, "assignee": {"id": 888}, "organization": {"id": 972}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 491}, "assignee": {"id": 525}, "organization": {"id": 149}, "project": {"owner": {"id": 708}, "assignee": {"id": 892}, "organization": {"id": 920}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 349, "owner": {"id": 440}, "assignee": {"id": 573}, "organization": {"id": 615}, "project": {"owner": {"id": 13}, "assignee": {"id": 804}, "organization": {"id": 902}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 242}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 488}, "assignee": {"id": 532}, "organization": {"id": 680}, "project": {"owner": {"id": 773}, "assignee": {"id": 804}, "organization": {"id": 974}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 303, "owner": {"id": 485}, "assignee": {"id": 552}, "organization": {"id": 153}, "project": {"owner": {"id": 47}, "assignee": {"id": 892}, "organization": {"id": 937}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 411}, "assignee": {"id": 584}, "organization": {"id": 184}, "project": {"owner": {"id": 756}, "assignee": {"id": 835}, "organization": {"id": 976}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 471}, "assignee": {"id": 541}, "organization": {"id": 689}, "project": {"owner": {"id": 21}, "assignee": {"id": 800}, "organization": {"id": 920}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 208}, "user": {"role": "supervisor"}}}, "resource": {"id": 393, "owner": {"id": 430}, "assignee": {"id": 580}, "organization": {"id": 636}, "project": {"owner": {"id": 749}, "assignee": {"id": 838}, "organization": {"id": 966}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 300, "owner": {"id": 477}, "assignee": {"id": 517}, "organization": {"id": 134}, "project": {"owner": {"id": 28}, "assignee": {"id": 816}, "organization": {"id": 956}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 482}, "assignee": {"id": 519}, "organization": {"id": 180}, "project": {"owner": {"id": 712}, "assignee": {"id": 830}, "organization": {"id": 955}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"id": 305, "owner": {"id": 492}, "assignee": {"id": 535}, "organization": {"id": 654}, "project": {"owner": {"id": 70}, "assignee": {"id": 836}, "organization": {"id": 940}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 228}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 403}, "assignee": {"id": 530}, "organization": {"id": 625}, "project": {"owner": {"id": 752}, "assignee": {"id": 833}, "organization": {"id": 969}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 383, "owner": {"id": 483}, "assignee": {"id": 567}, "organization": {"id": 186}, "project": {"owner": {"id": 2}, "assignee": {"id": 855}, "organization": {"id": 906}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 431}, "assignee": {"id": 503}, "organization": {"id": 118}, "project": {"owner": {"id": 721}, "assignee": {"id": 848}, "organization": {"id": 978}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 457}, "assignee": {"id": 540}, "organization": {"id": 616}, "project": {"owner": {"id": 97}, "assignee": {"id": 890}, "organization": {"id": 991}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 103, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 362, "owner": {"id": 499}, "assignee": {"id": 592}, "organization": {"id": 688}, "project": {"owner": {"id": 796}, "assignee": {"id": 836}, "organization": {"id": 962}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 327, "owner": {"id": 470}, "assignee": {"id": 501}, "organization": {"id": 141}, "project": {"owner": {"id": 25}, "assignee": {"id": 895}, "organization": {"id": 967}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"id": 398, "owner": {"id": 429}, "assignee": {"id": 541}, "organization": {"id": 111}, "project": {"owner": {"id": 781}, "assignee": {"id": 801}, "organization": {"id": 966}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 486}, "assignee": {"id": 590}, "organization": {"id": 628}, "project": {"owner": {"id": 99}, "assignee": {"id": 856}, "organization": {"id": 939}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 403}, "assignee": {"id": 523}, "organization": {"id": 610}, "project": {"owner": {"id": 777}, "assignee": {"id": 801}, "organization": {"id": 921}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 145, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 448}, "assignee": {"id": 526}, "organization": {"id": 145}, "project": {"owner": {"id": 26}, "assignee": {"id": 871}, "organization": {"id": 951}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"id": 304, "owner": {"id": 417}, "assignee": {"id": 595}, "organization": {"id": 152}, "project": {"owner": {"id": 727}, "assignee": {"id": 825}, "organization": {"id": 923}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 424}, "assignee": {"id": 559}, "organization": {"id": 654}, "project": {"owner": {"id": 52}, "assignee": {"id": 864}, "organization": {"id": 937}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 429}, "assignee": {"id": 547}, "organization": {"id": 600}, "project": {"owner": {"id": 715}, "assignee": {"id": 836}, "organization": {"id": 986}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 328, "owner": {"id": 412}, "assignee": {"id": 531}, "organization": {"id": 162}, "project": {"owner": {"id": 16}, "assignee": {"id": 827}, "organization": {"id": 965}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 465}, "assignee": {"id": 579}, "organization": {"id": 133}, "project": {"owner": {"id": 753}, "assignee": {"id": 897}, "organization": {"id": 974}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 321, "owner": {"id": 451}, "assignee": {"id": 514}, "organization": {"id": 664}, "project": {"owner": {"id": 89}, "assignee": {"id": 869}, "organization": {"id": 926}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 154, "owner": {"id": 218}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 471}, "assignee": {"id": 542}, "organization": {"id": 609}, "project": {"owner": {"id": 773}, "assignee": {"id": 880}, "organization": {"id": 914}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 93, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"id": 374, "owner": {"id": 480}, "assignee": {"id": 500}, "organization": {"id": 130}, "project": {"owner": {"id": 93}, "assignee": {"id": 880}, "organization": {"id": 922}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 214}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 453}, "assignee": {"id": 580}, "organization": {"id": 172}, "project": {"owner": {"id": 778}, "assignee": {"id": 846}, "organization": {"id": 909}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"id": 372, "owner": {"id": 448}, "assignee": {"id": 590}, "organization": {"id": 690}, "project": {"owner": {"id": 41}, "assignee": {"id": 866}, "organization": {"id": 946}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 450}, "assignee": {"id": 588}, "organization": {"id": 660}, "project": {"owner": {"id": 724}, "assignee": {"id": 846}, "organization": {"id": 997}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 343, "owner": {"id": 491}, "assignee": {"id": 531}, "organization": {"id": 116}, "project": {"owner": {"id": 95}, "assignee": {"id": 839}, "organization": {"id": 975}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 417}, "assignee": {"id": 525}, "organization": {"id": 152}, "project": {"owner": {"id": 717}, "assignee": {"id": 819}, "organization": {"id": 902}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 499}, "assignee": {"id": 545}, "organization": {"id": 613}, "project": {"owner": {"id": 41}, "assignee": {"id": 877}, "organization": {"id": 945}}}} +test_scope_DELETE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "delete", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 382, "owner": {"id": 410}, "assignee": {"id": 559}, "organization": {"id": 672}, "project": {"owner": {"id": 716}, "assignee": {"id": 861}, "organization": {"id": 947}}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 330, "owner": {"id": 449}, "assignee": {"id": 545}, "organization": {"id": 159}, "project": {"owner": {"id": 7}, "assignee": {"id": 833}, "organization": {"id": 961}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 409}, "assignee": {"id": 573}, "organization": {"id": 602}, "project": {"owner": {"id": 74}, "assignee": {"id": 841}, "organization": {"id": 988}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 413}, "assignee": {"id": 532}, "organization": {"id": 667}, "project": {"owner": {"id": 66}, "assignee": {"id": 866}, "organization": {"id": 911}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 483}, "assignee": {"id": 574}, "organization": {"id": 602}, "project": {"owner": {"id": 51}, "assignee": {"id": 893}, "organization": {"id": 968}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 396, "owner": {"id": 457}, "assignee": {"id": 583}, "organization": {"id": 163}, "project": {"owner": {"id": 39}, "assignee": {"id": 841}, "organization": {"id": 908}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 459}, "assignee": {"id": 541}, "organization": {"id": 627}, "project": {"owner": {"id": 20}, "assignee": {"id": 867}, "organization": {"id": 923}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 353, "owner": {"id": 412}, "assignee": {"id": 575}, "organization": {"id": 675}, "project": {"owner": {"id": 35}, "assignee": {"id": 828}, "organization": {"id": 927}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 408}, "assignee": {"id": 597}, "organization": {"id": 694}, "project": {"owner": {"id": 94}, "assignee": {"id": 833}, "organization": {"id": 944}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 48, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 412}, "assignee": {"id": 525}, "organization": {"id": 155}, "project": {"owner": {"id": 48}, "assignee": {"id": 846}, "organization": {"id": 966}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 482}, "assignee": {"id": 510}, "organization": {"id": 664}, "project": {"owner": {"id": 61}, "assignee": {"id": 813}, "organization": {"id": 989}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 319, "owner": {"id": 412}, "assignee": {"id": 511}, "organization": {"id": 627}, "project": {"owner": {"id": 71}, "assignee": {"id": 857}, "organization": {"id": 924}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 454}, "assignee": {"id": 530}, "organization": {"id": 618}, "project": {"owner": {"id": 96}, "assignee": {"id": 837}, "organization": {"id": 938}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 141, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 341, "owner": {"id": 457}, "assignee": {"id": 515}, "organization": {"id": 141}, "project": {"owner": {"id": 15}, "assignee": {"id": 869}, "organization": {"id": 944}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 495}, "assignee": {"id": 563}, "organization": {"id": 632}, "project": {"owner": {"id": 12}, "assignee": {"id": 865}, "organization": {"id": 925}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 394, "owner": {"id": 485}, "assignee": {"id": 506}, "organization": {"id": 646}, "project": {"owner": {"id": 86}, "assignee": {"id": 876}, "organization": {"id": 997}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 433}, "assignee": {"id": 503}, "organization": {"id": 687}, "project": {"owner": {"id": 64}, "assignee": {"id": 880}, "organization": {"id": 979}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 302, "owner": {"id": 403}, "assignee": {"id": 595}, "organization": {"id": 181}, "project": {"owner": {"id": 16}, "assignee": {"id": 855}, "organization": {"id": 968}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 400}, "assignee": {"id": 547}, "organization": {"id": 653}, "project": {"owner": {"id": 26}, "assignee": {"id": 823}, "organization": {"id": 960}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"id": 345, "owner": {"id": 418}, "assignee": {"id": 511}, "organization": {"id": 664}, "project": {"owner": {"id": 59}, "assignee": {"id": 822}, "organization": {"id": 983}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 413}, "assignee": {"id": 515}, "organization": {"id": 617}, "project": {"owner": {"id": 32}, "assignee": {"id": 800}, "organization": {"id": 960}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"id": 393, "owner": {"id": 475}, "assignee": {"id": 583}, "organization": {"id": 195}, "project": {"owner": {"id": 57}, "assignee": {"id": 835}, "organization": {"id": 976}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 3, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 424}, "assignee": {"id": 579}, "organization": {"id": 641}, "project": {"owner": {"id": 3}, "assignee": {"id": 877}, "organization": {"id": 969}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 429}, "assignee": {"id": 586}, "organization": {"id": 695}, "project": {"owner": {"id": 22}, "assignee": {"id": 853}, "organization": {"id": 943}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 494}, "assignee": {"id": 512}, "organization": {"id": 676}, "project": {"owner": {"id": 87}, "assignee": {"id": 830}, "organization": {"id": 997}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 498}, "assignee": {"id": 575}, "organization": {"id": 183}, "project": {"owner": {"id": 52}, "assignee": {"id": 807}, "organization": {"id": 952}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 462}, "assignee": {"id": 586}, "organization": {"id": 614}, "project": {"owner": {"id": 51}, "assignee": {"id": 845}, "organization": {"id": 906}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 494}, "assignee": {"id": 541}, "organization": {"id": 691}, "project": {"owner": {"id": 1}, "assignee": {"id": 843}, "organization": {"id": 978}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 445}, "assignee": {"id": 516}, "organization": {"id": 601}, "project": {"owner": {"id": 61}, "assignee": {"id": 857}, "organization": {"id": 942}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": {"id": 178, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"id": 334, "owner": {"id": 417}, "assignee": {"id": 594}, "organization": {"id": 178}, "project": {"owner": {"id": 34}, "assignee": {"id": 845}, "organization": {"id": 983}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 469}, "assignee": {"id": 558}, "organization": {"id": 600}, "project": {"owner": {"id": 36}, "assignee": {"id": 872}, "organization": {"id": 974}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 107, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 467}, "assignee": {"id": 564}, "organization": {"id": 655}, "project": {"owner": {"id": 5}, "assignee": {"id": 851}, "organization": {"id": 945}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 460}, "assignee": {"id": 507}, "organization": {"id": 607}, "project": {"owner": {"id": 762}, "assignee": {"id": 56}, "organization": {"id": 992}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 428}, "assignee": {"id": 503}, "organization": {"id": 100}, "project": {"owner": {"id": 62}, "assignee": {"id": 896}, "organization": {"id": 937}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 450}, "assignee": {"id": 582}, "organization": {"id": 633}, "project": {"owner": {"id": 771}, "assignee": {"id": 45}, "organization": {"id": 936}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 395, "owner": {"id": 465}, "assignee": {"id": 592}, "organization": {"id": 639}, "project": {"owner": {"id": 83}, "assignee": {"id": 832}, "organization": {"id": 909}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 430}, "assignee": {"id": 575}, "organization": {"id": 636}, "project": {"owner": {"id": 787}, "assignee": {"id": 58}, "organization": {"id": 995}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 317, "owner": {"id": 440}, "assignee": {"id": 550}, "organization": {"id": 100}, "project": {"owner": {"id": 58}, "assignee": {"id": 811}, "organization": {"id": 928}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 493}, "assignee": {"id": 599}, "organization": {"id": 643}, "project": {"owner": {"id": 734}, "assignee": {"id": 97}, "organization": {"id": 972}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 422}, "assignee": {"id": 578}, "organization": {"id": 607}, "project": {"owner": {"id": 35}, "assignee": {"id": 861}, "organization": {"id": 964}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 11, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 481}, "assignee": {"id": 531}, "organization": {"id": 608}, "project": {"owner": {"id": 765}, "assignee": {"id": 11}, "organization": {"id": 949}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 438}, "assignee": {"id": 564}, "organization": {"id": 129}, "project": {"owner": {"id": 793}, "assignee": {"id": 60}, "organization": {"id": 988}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 452}, "assignee": {"id": 584}, "organization": {"id": 629}, "project": {"owner": {"id": 719}, "assignee": {"id": 99}, "organization": {"id": 937}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 38}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 465}, "assignee": {"id": 561}, "organization": {"id": 632}, "project": {"owner": {"id": 760}, "assignee": {"id": 38}, "organization": {"id": 944}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 408}, "assignee": {"id": 516}, "organization": {"id": 645}, "project": {"owner": {"id": 728}, "assignee": {"id": 44}, "organization": {"id": 936}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"id": 387, "owner": {"id": 435}, "assignee": {"id": 566}, "organization": {"id": 126}, "project": {"owner": {"id": 725}, "assignee": {"id": 11}, "organization": {"id": 952}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 432}, "assignee": {"id": 544}, "organization": {"id": 658}, "project": {"owner": {"id": 760}, "assignee": {"id": 65}, "organization": {"id": 945}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 442}, "assignee": {"id": 505}, "organization": {"id": 666}, "project": {"owner": {"id": 765}, "assignee": {"id": 2}, "organization": {"id": 912}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 474}, "assignee": {"id": 522}, "organization": {"id": 686}, "project": {"owner": {"id": 762}, "assignee": {"id": 49}, "organization": {"id": 918}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 264}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 435}, "assignee": {"id": 549}, "organization": {"id": 194}, "project": {"owner": {"id": 757}, "assignee": {"id": 84}, "organization": {"id": 955}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 478}, "assignee": {"id": 558}, "organization": {"id": 666}, "project": {"owner": {"id": 748}, "assignee": {"id": 20}, "organization": {"id": 910}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 37, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 424}, "assignee": {"id": 513}, "organization": {"id": 685}, "project": {"owner": {"id": 725}, "assignee": {"id": 37}, "organization": {"id": 918}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 484}, "assignee": {"id": 529}, "organization": {"id": 651}, "project": {"owner": {"id": 797}, "assignee": {"id": 87}, "organization": {"id": 915}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"id": 396, "owner": {"id": 412}, "assignee": {"id": 506}, "organization": {"id": 187}, "project": {"owner": {"id": 749}, "assignee": {"id": 62}, "organization": {"id": 932}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 444}, "assignee": {"id": 552}, "organization": {"id": 638}, "project": {"owner": {"id": 783}, "assignee": {"id": 15}, "organization": {"id": 951}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 228}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 413}, "assignee": {"id": 587}, "organization": {"id": 617}, "project": {"owner": {"id": 782}, "assignee": {"id": 5}, "organization": {"id": 939}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 485}, "assignee": {"id": 567}, "organization": {"id": 629}, "project": {"owner": {"id": 768}, "assignee": {"id": 34}, "organization": {"id": 998}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"id": 332, "owner": {"id": 460}, "assignee": {"id": 587}, "organization": {"id": 106}, "project": {"owner": {"id": 733}, "assignee": {"id": 3}, "organization": {"id": 930}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 475}, "assignee": {"id": 557}, "organization": {"id": 659}, "project": {"owner": {"id": 754}, "assignee": {"id": 73}, "organization": {"id": 905}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 491}, "assignee": {"id": 553}, "organization": {"id": 625}, "project": {"owner": {"id": 724}, "assignee": {"id": 23}, "organization": {"id": 945}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 427}, "assignee": {"id": 576}, "organization": {"id": 630}, "project": {"owner": {"id": 747}, "assignee": {"id": 61}, "organization": {"id": 981}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"id": 396, "owner": {"id": 440}, "assignee": {"id": 547}, "organization": {"id": 147}, "project": {"owner": {"id": 728}, "assignee": {"id": 47}, "organization": {"id": 957}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 475}, "assignee": {"id": 592}, "organization": {"id": 613}, "project": {"owner": {"id": 780}, "assignee": {"id": 892}, "organization": {"id": 963}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 429}, "assignee": {"id": 504}, "organization": {"id": 692}, "project": {"owner": {"id": 723}, "assignee": {"id": 7}, "organization": {"id": 973}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 421}, "assignee": {"id": 519}, "organization": {"id": 619}, "project": {"owner": {"id": 773}, "assignee": {"id": 839}, "organization": {"id": 920}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"id": 348, "owner": {"id": 401}, "assignee": {"id": 513}, "organization": {"id": 192}, "project": {"owner": {"id": 721}, "assignee": {"id": 9}, "organization": {"id": 929}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": null}, "resource": {"owner": {"id": 457}, "assignee": {"id": 569}, "organization": {"id": 605}, "project": {"owner": {"id": 730}, "assignee": {"id": 898}, "organization": {"id": 976}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"id": 327, "owner": {"id": 474}, "assignee": {"id": 596}, "organization": {"id": 670}, "project": {"owner": {"id": 785}, "assignee": {"id": 22}, "organization": {"id": 947}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 404}, "assignee": {"id": 554}, "organization": {"id": 626}, "project": {"owner": {"id": 701}, "assignee": {"id": 876}, "organization": {"id": 914}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 359, "owner": {"id": 475}, "assignee": {"id": 514}, "organization": {"id": 131}, "project": {"owner": {"id": 756}, "assignee": {"id": 95}, "organization": {"id": 993}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 450}, "assignee": {"id": 529}, "organization": {"id": 606}, "project": {"owner": {"id": 733}, "assignee": {"id": 855}, "organization": {"id": 943}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"id": 373, "owner": {"id": 483}, "assignee": {"id": 598}, "organization": {"id": 660}, "project": {"owner": {"id": 798}, "assignee": {"id": 15}, "organization": {"id": 904}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": null}, "resource": {"owner": {"id": 417}, "assignee": {"id": 577}, "organization": {"id": 610}, "project": {"owner": {"id": 799}, "assignee": {"id": 846}, "organization": {"id": 968}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"id": 398, "owner": {"id": 417}, "assignee": {"id": 592}, "organization": {"id": 181}, "project": {"owner": {"id": 781}, "assignee": {"id": 73}, "organization": {"id": 997}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 468}, "assignee": {"id": 567}, "organization": {"id": 699}, "project": {"owner": {"id": 786}, "assignee": {"id": 803}, "organization": {"id": 950}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 459}, "assignee": {"id": 593}, "organization": {"id": 620}, "project": {"owner": {"id": 755}, "assignee": {"id": 39}, "organization": {"id": 903}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 441}, "assignee": {"id": 574}, "organization": {"id": 620}, "project": {"owner": {"id": 729}, "assignee": {"id": 837}, "organization": {"id": 978}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 404}, "assignee": {"id": 516}, "organization": {"id": 163}, "project": {"owner": {"id": 703}, "assignee": {"id": 71}, "organization": {"id": 982}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": null}, "resource": {"owner": {"id": 445}, "assignee": {"id": 536}, "organization": {"id": 611}, "project": {"owner": {"id": 765}, "assignee": {"id": 842}, "organization": {"id": 981}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 233}, "user": {"role": null}}}, "resource": {"id": 364, "owner": {"id": 438}, "assignee": {"id": 585}, "organization": {"id": 602}, "project": {"owner": {"id": 765}, "assignee": {"id": 70}, "organization": {"id": 990}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 406}, "assignee": {"id": 502}, "organization": {"id": 676}, "project": {"owner": {"id": 727}, "assignee": {"id": 881}, "organization": {"id": 957}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 399, "owner": {"id": 425}, "assignee": {"id": 562}, "organization": {"id": 180}, "project": {"owner": {"id": 742}, "assignee": {"id": 89}, "organization": {"id": 939}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 419}, "assignee": {"id": 513}, "organization": {"id": 604}, "project": {"owner": {"id": 772}, "assignee": {"id": 831}, "organization": {"id": 931}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 485}, "assignee": {"id": 595}, "organization": {"id": 606}, "project": {"owner": {"id": 774}, "assignee": {"id": 88}, "organization": {"id": 946}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": null}, "resource": {"owner": {"id": 428}, "assignee": {"id": 532}, "organization": {"id": 627}, "project": {"owner": {"id": 795}, "assignee": {"id": 877}, "organization": {"id": 997}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 149, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 417}, "assignee": {"id": 526}, "organization": {"id": 149}, "project": {"owner": {"id": 759}, "assignee": {"id": 23}, "organization": {"id": 944}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 460}, "assignee": {"id": 507}, "organization": {"id": 694}, "project": {"owner": {"id": 798}, "assignee": {"id": 817}, "organization": {"id": 940}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 431}, "assignee": {"id": 562}, "organization": {"id": 657}, "project": {"owner": {"id": 709}, "assignee": {"id": 49}, "organization": {"id": 912}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 469}, "assignee": {"id": 594}, "organization": {"id": 603}, "project": {"owner": {"id": 778}, "assignee": {"id": 863}, "organization": {"id": 910}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 472}, "assignee": {"id": 556}, "organization": {"id": 146}, "project": {"owner": {"id": 783}, "assignee": {"id": 51}, "organization": {"id": 904}}}} +test_scope_CREATE_IN_PROJECT_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": null}, "resource": {"owner": {"id": 425}, "assignee": {"id": 572}, "organization": {"id": 699}, "project": {"owner": {"id": 712}, "assignee": {"id": 896}, "organization": {"id": 920}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"id": 322, "owner": {"id": 446}, "assignee": {"id": 505}, "organization": {"id": 601}, "project": {"owner": {"id": 773}, "assignee": {"id": 75}, "organization": {"id": 943}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 127, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 517}, "organization": {"id": 127}, "project": {"owner": {"id": 9}, "assignee": {"id": 873}, "organization": {"id": 906}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 438}, "assignee": {"id": 584}, "organization": {"id": 146}, "project": {"owner": {"id": 709}, "assignee": {"id": 46}, "organization": {"id": 974}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": {"id": 119, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 500}, "organization": {"id": 119}, "project": {"owner": {"id": 60}, "assignee": {"id": 893}, "organization": {"id": 971}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 93, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 258}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 457}, "assignee": {"id": 535}, "organization": {"id": 666}, "project": {"owner": {"id": 726}, "assignee": {"id": 93}, "organization": {"id": 936}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 590}, "organization": {"id": 111}, "project": {"owner": {"id": 86}, "assignee": {"id": 892}, "organization": {"id": 945}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"id": 374, "owner": {"id": 427}, "assignee": {"id": 581}, "organization": {"id": 166}, "project": {"owner": {"id": 719}, "assignee": {"id": 62}, "organization": {"id": 959}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 568}, "organization": {"id": 644}, "project": {"owner": {"id": 91}, "assignee": {"id": 821}, "organization": {"id": 945}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 452}, "assignee": {"id": 587}, "organization": {"id": 695}, "project": {"owner": {"id": 764}, "assignee": {"id": 79}, "organization": {"id": 927}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 160, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 521}, "organization": {"id": 646}, "project": {"owner": {"id": 23}, "assignee": {"id": 878}, "organization": {"id": 997}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 325, "owner": {"id": 436}, "assignee": {"id": 561}, "organization": {"id": 164}, "project": {"owner": {"id": 783}, "assignee": {"id": 39}, "organization": {"id": 916}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 548}, "organization": {"id": 609}, "project": {"owner": {"id": 68}, "assignee": {"id": 863}, "organization": {"id": 911}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 20}, "user": {"role": "owner"}}}, "resource": {"id": 301, "owner": {"id": 417}, "assignee": {"id": 532}, "organization": {"id": 622}, "project": {"owner": {"id": 743}, "assignee": {"id": 20}, "organization": {"id": 953}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 434}, "assignee": {"id": 546}, "organization": {"id": 152}, "project": {"owner": {"id": 41}, "assignee": {"id": 888}, "organization": {"id": 942}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 186, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"id": 330, "owner": {"id": 456}, "assignee": {"id": 590}, "organization": {"id": 186}, "project": {"owner": {"id": 717}, "assignee": {"id": 43}, "organization": {"id": 930}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 116, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 566}, "organization": {"id": 116}, "project": {"owner": {"id": 53}, "assignee": {"id": 891}, "organization": {"id": 904}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 467}, "assignee": {"id": 592}, "organization": {"id": 611}, "project": {"owner": {"id": 730}, "assignee": {"id": 57}, "organization": {"id": 902}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 443}, "assignee": {"id": 568}, "organization": {"id": 167}, "project": {"owner": {"id": 35}, "assignee": {"id": 806}, "organization": {"id": 952}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 421}, "assignee": {"id": 558}, "organization": {"id": 110}, "project": {"owner": {"id": 735}, "assignee": {"id": 28}, "organization": {"id": 995}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 583}, "organization": {"id": 693}, "project": {"owner": {"id": 26}, "assignee": {"id": 823}, "organization": {"id": 997}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"id": 331, "owner": {"id": 466}, "assignee": {"id": 587}, "organization": {"id": 629}, "project": {"owner": {"id": 781}, "assignee": {"id": 85}, "organization": {"id": 921}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 558}, "organization": {"id": 634}, "project": {"owner": {"id": 30}, "assignee": {"id": 830}, "organization": {"id": 973}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 322, "owner": {"id": 492}, "assignee": {"id": 549}, "organization": {"id": 131}, "project": {"owner": {"id": 779}, "assignee": {"id": 83}, "organization": {"id": 998}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 81, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 463}, "assignee": {"id": 596}, "organization": {"id": 640}, "project": {"owner": {"id": 81}, "assignee": {"id": 812}, "organization": {"id": 900}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 491}, "assignee": {"id": 532}, "organization": {"id": 678}, "project": {"owner": {"id": 795}, "assignee": {"id": 0}, "organization": {"id": 957}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 71, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 557}, "organization": {"id": 106}, "project": {"owner": {"id": 71}, "assignee": {"id": 817}, "organization": {"id": 938}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 439}, "assignee": {"id": 599}, "organization": {"id": 126}, "project": {"owner": {"id": 797}, "assignee": {"id": 18}, "organization": {"id": 911}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 578}, "organization": {"id": 133}, "project": {"owner": {"id": 75}, "assignee": {"id": 807}, "organization": {"id": 973}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 318, "owner": {"id": 480}, "assignee": {"id": 581}, "organization": {"id": 609}, "project": {"owner": {"id": 707}, "assignee": {"id": 50}, "organization": {"id": 930}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 559}, "organization": {"id": 128}, "project": {"owner": {"id": 63}, "assignee": {"id": 830}, "organization": {"id": 992}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 453}, "assignee": {"id": 551}, "organization": {"id": 121}, "project": {"owner": {"id": 786}, "assignee": {"id": 54}, "organization": {"id": 925}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 524}, "organization": {"id": 649}, "project": {"owner": {"id": 67}, "assignee": {"id": 888}, "organization": {"id": 995}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 350, "owner": {"id": 449}, "assignee": {"id": 544}, "organization": {"id": 628}, "project": {"owner": {"id": 723}, "assignee": {"id": 29}, "organization": {"id": 948}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 592}, "organization": {"id": 668}, "project": {"owner": {"id": 41}, "assignee": {"id": 888}, "organization": {"id": 921}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 154, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"id": 300, "owner": {"id": 491}, "assignee": {"id": 531}, "organization": {"id": 154}, "project": {"owner": {"id": 703}, "assignee": {"id": 98}, "organization": {"id": 954}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 210}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 519}, "organization": {"id": 610}, "project": {"owner": {"id": 11}, "assignee": {"id": 821}, "organization": {"id": 988}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 415}, "assignee": {"id": 571}, "organization": {"id": 684}, "project": {"owner": {"id": 746}, "assignee": {"id": 40}, "organization": {"id": 902}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 525}, "organization": {"id": 176}, "project": {"owner": {"id": 53}, "assignee": {"id": 895}, "organization": {"id": 999}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 245}, "user": {"role": "supervisor"}}}, "resource": {"id": 369, "owner": {"id": 460}, "assignee": {"id": 509}, "organization": {"id": 128}, "project": {"owner": {"id": 718}, "assignee": {"id": 93}, "organization": {"id": 969}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 571}, "organization": {"id": 143}, "project": {"owner": {"id": 40}, "assignee": {"id": 848}, "organization": {"id": 908}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 432}, "assignee": {"id": 574}, "organization": {"id": 620}, "project": {"owner": {"id": 781}, "assignee": {"id": 12}, "organization": {"id": 967}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 137, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 580}, "organization": {"id": 137}, "project": {"owner": {"id": 93}, "assignee": {"id": 820}, "organization": {"id": 967}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 442}, "assignee": {"id": 518}, "organization": {"id": 145}, "project": {"owner": {"id": 730}, "assignee": {"id": 44}, "organization": {"id": 939}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 536}, "organization": {"id": 697}, "project": {"owner": {"id": 32}, "assignee": {"id": 873}, "organization": {"id": 904}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"id": 383, "owner": {"id": 469}, "assignee": {"id": 582}, "organization": {"id": 659}, "project": {"owner": {"id": 765}, "assignee": {"id": 28}, "organization": {"id": 958}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 512}, "organization": {"id": 675}, "project": {"owner": {"id": 31}, "assignee": {"id": 823}, "organization": {"id": 932}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 398, "owner": {"id": 403}, "assignee": {"id": 594}, "organization": {"id": 165}, "project": {"owner": {"id": 756}, "assignee": {"id": 98}, "organization": {"id": 997}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 429}, "assignee": {"id": 504}, "organization": {"id": 697}, "project": {"owner": {"id": 80}, "assignee": {"id": 899}, "organization": {"id": 963}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 451}, "assignee": {"id": 541}, "organization": {"id": 618}, "project": {"owner": {"id": 729}, "assignee": {"id": 0}, "organization": {"id": 972}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 543}, "organization": {"id": 141}, "project": {"owner": {"id": 69}, "assignee": {"id": 879}, "organization": {"id": 947}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 163, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 21}, "assignee": {"id": 553}, "organization": {"id": 163}, "project": {"owner": {"id": 702}, "assignee": {"id": 832}, "organization": {"id": 949}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 189, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 523}, "organization": {"id": 189}, "project": {"owner": {"id": 47}, "assignee": {"id": 816}, "organization": {"id": 999}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 28}, "user": {"role": "owner"}}}, "resource": {"id": 383, "owner": {"id": 28}, "assignee": {"id": 522}, "organization": {"id": 698}, "project": {"owner": {"id": 722}, "assignee": {"id": 822}, "organization": {"id": 973}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"owner": {"id": 476}, "assignee": {"id": 512}, "organization": {"id": 140}, "project": {"owner": {"id": 93}, "assignee": {"id": 836}, "organization": {"id": 907}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 60}, "assignee": {"id": 577}, "organization": {"id": 112}, "project": {"owner": {"id": 794}, "assignee": {"id": 813}, "organization": {"id": 956}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 593}, "organization": {"id": 601}, "project": {"owner": {"id": 33}, "assignee": {"id": 854}, "organization": {"id": 906}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 9}, "assignee": {"id": 552}, "organization": {"id": 661}, "project": {"owner": {"id": 759}, "assignee": {"id": 839}, "organization": {"id": 972}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 264}, "user": {"role": null}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 544}, "organization": {"id": 697}, "project": {"owner": {"id": 19}, "assignee": {"id": 812}, "organization": {"id": 916}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 132, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 48}, "assignee": {"id": 500}, "organization": {"id": 132}, "project": {"owner": {"id": 764}, "assignee": {"id": 867}, "organization": {"id": 939}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 548}, "organization": {"id": 635}, "project": {"owner": {"id": 3}, "assignee": {"id": 874}, "organization": {"id": 945}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"id": 379, "owner": {"id": 4}, "assignee": {"id": 565}, "organization": {"id": 616}, "project": {"owner": {"id": 765}, "assignee": {"id": 808}, "organization": {"id": 941}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 524}, "organization": {"id": 109}, "project": {"owner": {"id": 73}, "assignee": {"id": 813}, "organization": {"id": 969}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 15, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 15}, "assignee": {"id": 500}, "organization": {"id": 135}, "project": {"owner": {"id": 772}, "assignee": {"id": 841}, "organization": {"id": 963}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 554}, "organization": {"id": 137}, "project": {"owner": {"id": 26}, "assignee": {"id": 876}, "organization": {"id": 916}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 45}, "assignee": {"id": 515}, "organization": {"id": 658}, "project": {"owner": {"id": 792}, "assignee": {"id": 819}, "organization": {"id": 964}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 424}, "assignee": {"id": 508}, "organization": {"id": 109}, "project": {"owner": {"id": 79}, "assignee": {"id": 864}, "organization": {"id": 927}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 65}, "assignee": {"id": 593}, "organization": {"id": 133}, "project": {"owner": {"id": 764}, "assignee": {"id": 823}, "organization": {"id": 998}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 503}, "organization": {"id": 680}, "project": {"owner": {"id": 73}, "assignee": {"id": 873}, "organization": {"id": 949}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"id": 373, "owner": {"id": 77}, "assignee": {"id": 589}, "organization": {"id": 655}, "project": {"owner": {"id": 745}, "assignee": {"id": 808}, "organization": {"id": 915}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 515}, "organization": {"id": 688}, "project": {"owner": {"id": 50}, "assignee": {"id": 898}, "organization": {"id": 991}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 199, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 330, "owner": {"id": 53}, "assignee": {"id": 563}, "organization": {"id": 199}, "project": {"owner": {"id": 747}, "assignee": {"id": 826}, "organization": {"id": 920}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 582}, "organization": {"id": 604}, "project": {"owner": {"id": 85}, "assignee": {"id": 832}, "organization": {"id": 915}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"id": 399, "owner": {"id": 87}, "assignee": {"id": 593}, "organization": {"id": 659}, "project": {"owner": {"id": 758}, "assignee": {"id": 853}, "organization": {"id": 915}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 429}, "assignee": {"id": 555}, "organization": {"id": 151}, "project": {"owner": {"id": 96}, "assignee": {"id": 898}, "organization": {"id": 986}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 166, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 95}, "assignee": {"id": 574}, "organization": {"id": 166}, "project": {"owner": {"id": 720}, "assignee": {"id": 842}, "organization": {"id": 968}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 149, "owner": {"id": 289}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 525}, "organization": {"id": 149}, "project": {"owner": {"id": 56}, "assignee": {"id": 819}, "organization": {"id": 965}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 35}, "assignee": {"id": 599}, "organization": {"id": 643}, "project": {"owner": {"id": 709}, "assignee": {"id": 808}, "organization": {"id": 911}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 217}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 481}, "assignee": {"id": 557}, "organization": {"id": 108}, "project": {"owner": {"id": 27}, "assignee": {"id": 810}, "organization": {"id": 913}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"id": 328, "owner": {"id": 3}, "assignee": {"id": 598}, "organization": {"id": 106}, "project": {"owner": {"id": 737}, "assignee": {"id": 859}, "organization": {"id": 967}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 556}, "organization": {"id": 646}, "project": {"owner": {"id": 0}, "assignee": {"id": 898}, "organization": {"id": 958}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 348, "owner": {"id": 75}, "assignee": {"id": 555}, "organization": {"id": 685}, "project": {"owner": {"id": 774}, "assignee": {"id": 837}, "organization": {"id": 913}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 442}, "assignee": {"id": 574}, "organization": {"id": 602}, "project": {"owner": {"id": 29}, "assignee": {"id": 875}, "organization": {"id": 936}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 175, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 41}, "assignee": {"id": 576}, "organization": {"id": 175}, "project": {"owner": {"id": 789}, "assignee": {"id": 864}, "organization": {"id": 995}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 588}, "organization": {"id": 615}, "project": {"owner": {"id": 94}, "assignee": {"id": 858}, "organization": {"id": 991}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 97}, "assignee": {"id": 527}, "organization": {"id": 651}, "project": {"owner": {"id": 794}, "assignee": {"id": 815}, "organization": {"id": 910}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 166, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 556}, "organization": {"id": 166}, "project": {"owner": {"id": 17}, "assignee": {"id": 885}, "organization": {"id": 969}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 199, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 312, "owner": {"id": 83}, "assignee": {"id": 569}, "organization": {"id": 199}, "project": {"owner": {"id": 749}, "assignee": {"id": 862}, "organization": {"id": 937}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 517}, "organization": {"id": 144}, "project": {"owner": {"id": 43}, "assignee": {"id": 832}, "organization": {"id": 959}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 2}, "assignee": {"id": 531}, "organization": {"id": 694}, "project": {"owner": {"id": 776}, "assignee": {"id": 894}, "organization": {"id": 900}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 466}, "assignee": {"id": 546}, "organization": {"id": 143}, "project": {"owner": {"id": 78}, "assignee": {"id": 802}, "organization": {"id": 980}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 92}, "user": {"role": "owner"}}}, "resource": {"id": 350, "owner": {"id": 92}, "assignee": {"id": 599}, "organization": {"id": 158}, "project": {"owner": {"id": 721}, "assignee": {"id": 863}, "organization": {"id": 992}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 516}, "organization": {"id": 684}, "project": {"owner": {"id": 32}, "assignee": {"id": 889}, "organization": {"id": 995}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 45, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 45}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 45}, "assignee": {"id": 522}, "organization": {"id": 673}, "project": {"owner": {"id": 748}, "assignee": {"id": 884}, "organization": {"id": 992}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 522}, "organization": {"id": 611}, "project": {"owner": {"id": 71}, "assignee": {"id": 860}, "organization": {"id": 987}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"id": 343, "owner": {"id": 6}, "assignee": {"id": 535}, "organization": {"id": 153}, "project": {"owner": {"id": 732}, "assignee": {"id": 809}, "organization": {"id": 992}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 581}, "organization": {"id": 689}, "project": {"owner": {"id": 20}, "assignee": {"id": 858}, "organization": {"id": 969}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 29}, "assignee": {"id": 520}, "organization": {"id": 632}, "project": {"owner": {"id": 771}, "assignee": {"id": 876}, "organization": {"id": 949}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 560}, "organization": {"id": 184}, "project": {"owner": {"id": 77}, "assignee": {"id": 813}, "organization": {"id": 947}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 378, "owner": {"id": 69}, "assignee": {"id": 539}, "organization": {"id": 155}, "project": {"owner": {"id": 728}, "assignee": {"id": 835}, "organization": {"id": 955}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 463}, "assignee": {"id": 590}, "organization": {"id": 168}, "project": {"owner": {"id": 63}, "assignee": {"id": 854}, "organization": {"id": 943}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 335, "owner": {"id": 74}, "assignee": {"id": 582}, "organization": {"id": 688}, "project": {"owner": {"id": 797}, "assignee": {"id": 893}, "organization": {"id": 992}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 526}, "organization": {"id": 137}, "project": {"owner": {"id": 60}, "assignee": {"id": 839}, "organization": {"id": 934}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 37}, "assignee": {"id": 509}, "organization": {"id": 135}, "project": {"owner": {"id": 757}, "assignee": {"id": 869}, "organization": {"id": 906}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 542}, "organization": {"id": 695}, "project": {"owner": {"id": 69}, "assignee": {"id": 810}, "organization": {"id": 977}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"id": 358, "owner": {"id": 96}, "assignee": {"id": 531}, "organization": {"id": 648}, "project": {"owner": {"id": 739}, "assignee": {"id": 803}, "organization": {"id": 988}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 409}, "assignee": {"id": 575}, "organization": {"id": 624}, "project": {"owner": {"id": 37}, "assignee": {"id": 892}, "organization": {"id": 956}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 382, "owner": {"id": 84}, "assignee": {"id": 524}, "organization": {"id": 132}, "project": {"owner": {"id": 701}, "assignee": {"id": 813}, "organization": {"id": 917}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 569}, "organization": {"id": 632}, "project": {"owner": {"id": 80}, "assignee": {"id": 849}, "organization": {"id": 946}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"id": 354, "owner": {"id": 84}, "assignee": {"id": 569}, "organization": {"id": 681}, "project": {"owner": {"id": 780}, "assignee": {"id": 834}, "organization": {"id": 952}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 204}, "user": {"role": null}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 512}, "organization": {"id": 141}, "project": {"owner": {"id": 50}, "assignee": {"id": 889}, "organization": {"id": 922}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 81}, "assignee": {"id": 543}, "organization": {"id": 194}, "project": {"owner": {"id": 765}, "assignee": {"id": 874}, "organization": {"id": 999}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 595}, "organization": {"id": 128}, "project": {"owner": {"id": 66}, "assignee": {"id": 862}, "organization": {"id": 952}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 64}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 64}, "assignee": {"id": 549}, "organization": {"id": 668}, "project": {"owner": {"id": 717}, "assignee": {"id": 818}, "organization": {"id": 918}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 224}, "user": {"role": null}}}, "resource": {"owner": {"id": 461}, "assignee": {"id": 563}, "organization": {"id": 191}, "project": {"owner": {"id": 78}, "assignee": {"id": 857}, "organization": {"id": 935}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 376, "owner": {"id": 52}, "assignee": {"id": 588}, "organization": {"id": 165}, "project": {"owner": {"id": 747}, "assignee": {"id": 864}, "organization": {"id": 974}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 196, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"owner": {"id": 479}, "assignee": {"id": 571}, "organization": {"id": 624}, "project": {"owner": {"id": 37}, "assignee": {"id": 885}, "organization": {"id": 963}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 30, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 30}, "assignee": {"id": 501}, "organization": {"id": 684}, "project": {"owner": {"id": 735}, "assignee": {"id": 854}, "organization": {"id": 907}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"owner": {"id": 452}, "assignee": {"id": 549}, "organization": {"id": 685}, "project": {"owner": {"id": 69}, "assignee": {"id": 886}, "organization": {"id": 961}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 87}, "assignee": {"id": 509}, "organization": {"id": 125}, "project": {"owner": {"id": 742}, "assignee": {"id": 800}, "organization": {"id": 980}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 226}, "user": {"role": null}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 548}, "organization": {"id": 607}, "project": {"owner": {"id": 95}, "assignee": {"id": 800}, "organization": {"id": 926}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 10}, "assignee": {"id": 525}, "organization": {"id": 628}, "project": {"owner": {"id": 777}, "assignee": {"id": 802}, "organization": {"id": 906}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 531}, "organization": {"id": 161}, "project": {"owner": {"id": 41}, "assignee": {"id": 823}, "organization": {"id": 960}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"id": 381, "owner": {"id": 66}, "assignee": {"id": 556}, "organization": {"id": 122}, "project": {"owner": {"id": 771}, "assignee": {"id": 859}, "organization": {"id": 996}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 131, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 456}, "assignee": {"id": 555}, "organization": {"id": 131}, "project": {"owner": {"id": 43}, "assignee": {"id": 844}, "organization": {"id": 923}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 27}, "assignee": {"id": 549}, "organization": {"id": 671}, "project": {"owner": {"id": 704}, "assignee": {"id": 816}, "organization": {"id": 984}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 578}, "organization": {"id": 125}, "project": {"owner": {"id": 75}, "assignee": {"id": 898}, "organization": {"id": 931}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 393, "owner": {"id": 99}, "assignee": {"id": 523}, "organization": {"id": 166}, "project": {"owner": {"id": 732}, "assignee": {"id": 839}, "organization": {"id": 998}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 521}, "organization": {"id": 640}, "project": {"owner": {"id": 48}, "assignee": {"id": 871}, "organization": {"id": 998}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"id": 312, "owner": {"id": 64}, "assignee": {"id": 568}, "organization": {"id": 604}, "project": {"owner": {"id": 703}, "assignee": {"id": 853}, "organization": {"id": 918}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 528}, "organization": {"id": 660}, "project": {"owner": {"id": 26}, "assignee": {"id": 833}, "organization": {"id": 950}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 38}, "user": {"role": "owner"}}}, "resource": {"id": 364, "owner": {"id": 38}, "assignee": {"id": 524}, "organization": {"id": 131}, "project": {"owner": {"id": 754}, "assignee": {"id": 847}, "organization": {"id": 974}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 192, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 540}, "organization": {"id": 610}, "project": {"owner": {"id": 87}, "assignee": {"id": 837}, "organization": {"id": 944}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 3}, "assignee": {"id": 503}, "organization": {"id": 652}, "project": {"owner": {"id": 785}, "assignee": {"id": 850}, "organization": {"id": 999}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 270}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 501}, "organization": {"id": 159}, "project": {"owner": {"id": 65}, "assignee": {"id": 816}, "organization": {"id": 990}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 72}, "assignee": {"id": 559}, "organization": {"id": 151}, "project": {"owner": {"id": 738}, "assignee": {"id": 891}, "organization": {"id": 992}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 505}, "organization": {"id": 136}, "project": {"owner": {"id": 53}, "assignee": {"id": 844}, "organization": {"id": 947}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 205}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 30}, "assignee": {"id": 583}, "organization": {"id": 655}, "project": {"owner": {"id": 713}, "assignee": {"id": 823}, "organization": {"id": 965}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 289}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 473}, "assignee": {"id": 560}, "organization": {"id": 152}, "project": {"owner": {"id": 96}, "assignee": {"id": 807}, "organization": {"id": 943}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 340, "owner": {"id": 20}, "assignee": {"id": 583}, "organization": {"id": 119}, "project": {"owner": {"id": 757}, "assignee": {"id": 835}, "organization": {"id": 928}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 290}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 550}, "organization": {"id": 627}, "project": {"owner": {"id": 26}, "assignee": {"id": 855}, "organization": {"id": 979}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 53}, "assignee": {"id": 593}, "organization": {"id": 611}, "project": {"owner": {"id": 762}, "assignee": {"id": 806}, "organization": {"id": 973}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 535}, "organization": {"id": 681}, "project": {"owner": {"id": 25}, "assignee": {"id": 837}, "organization": {"id": 935}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 96}, "assignee": {"id": 518}, "organization": {"id": 180}, "project": {"owner": {"id": 759}, "assignee": {"id": 869}, "organization": {"id": 978}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 409}, "assignee": {"id": 542}, "organization": {"id": 674}, "project": {"owner": {"id": 41}, "assignee": {"id": 868}, "organization": {"id": 988}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"id": 351, "owner": {"id": 35}, "assignee": {"id": 596}, "organization": {"id": 642}, "project": {"owner": {"id": 741}, "assignee": {"id": 849}, "organization": {"id": 962}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 456}, "assignee": {"id": 538}, "organization": {"id": 164}, "project": {"owner": {"id": 39}, "assignee": {"id": 809}, "organization": {"id": 925}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"id": 390, "owner": {"id": 4}, "assignee": {"id": 519}, "organization": {"id": 125}, "project": {"owner": {"id": 725}, "assignee": {"id": 829}, "organization": {"id": 981}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 584}, "organization": {"id": 197}, "project": {"owner": {"id": 3}, "assignee": {"id": 894}, "organization": {"id": 956}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"id": 342, "owner": {"id": 40}, "assignee": {"id": 591}, "organization": {"id": 614}, "project": {"owner": {"id": 783}, "assignee": {"id": 896}, "organization": {"id": 967}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 426}, "assignee": {"id": 508}, "organization": {"id": 169}, "project": {"owner": {"id": 62}, "assignee": {"id": 829}, "organization": {"id": 972}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 95}, "user": {"role": "owner"}}}, "resource": {"id": 307, "owner": {"id": 428}, "assignee": {"id": 95}, "organization": {"id": 112}, "project": {"owner": {"id": 732}, "assignee": {"id": 883}, "organization": {"id": 944}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 558}, "organization": {"id": 684}, "project": {"owner": {"id": 12}, "assignee": {"id": 868}, "organization": {"id": 969}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 376, "owner": {"id": 408}, "assignee": {"id": 40}, "organization": {"id": 661}, "project": {"owner": {"id": 730}, "assignee": {"id": 854}, "organization": {"id": 905}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 454}, "assignee": {"id": 545}, "organization": {"id": 605}, "project": {"owner": {"id": 70}, "assignee": {"id": 844}, "organization": {"id": 935}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"id": 320, "owner": {"id": 430}, "assignee": {"id": 3}, "organization": {"id": 165}, "project": {"owner": {"id": 747}, "assignee": {"id": 877}, "organization": {"id": 964}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 565}, "organization": {"id": 677}, "project": {"owner": {"id": 29}, "assignee": {"id": 830}, "organization": {"id": 974}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 396, "owner": {"id": 440}, "assignee": {"id": 13}, "organization": {"id": 652}, "project": {"owner": {"id": 725}, "assignee": {"id": 855}, "organization": {"id": 978}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 214}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 591}, "organization": {"id": 155}, "project": {"owner": {"id": 30}, "assignee": {"id": 815}, "organization": {"id": 918}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 149, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 455}, "assignee": {"id": 26}, "organization": {"id": 149}, "project": {"owner": {"id": 702}, "assignee": {"id": 823}, "organization": {"id": 972}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 575}, "organization": {"id": 161}, "project": {"owner": {"id": 28}, "assignee": {"id": 880}, "organization": {"id": 993}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 163, "owner": {"id": 265}, "user": {"role": "supervisor"}}}, "resource": {"id": 361, "owner": {"id": 486}, "assignee": {"id": 92}, "organization": {"id": 699}, "project": {"owner": {"id": 783}, "assignee": {"id": 851}, "organization": {"id": 972}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 461}, "assignee": {"id": 591}, "organization": {"id": 183}, "project": {"owner": {"id": 2}, "assignee": {"id": 881}, "organization": {"id": 949}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"id": 397, "owner": {"id": 420}, "assignee": {"id": 31}, "organization": {"id": 179}, "project": {"owner": {"id": 783}, "assignee": {"id": 894}, "organization": {"id": 917}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 555}, "organization": {"id": 693}, "project": {"owner": {"id": 38}, "assignee": {"id": 843}, "organization": {"id": 959}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 319, "owner": {"id": 451}, "assignee": {"id": 80}, "organization": {"id": 660}, "project": {"owner": {"id": 713}, "assignee": {"id": 894}, "organization": {"id": 917}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 558}, "organization": {"id": 663}, "project": {"owner": {"id": 29}, "assignee": {"id": 870}, "organization": {"id": 964}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 156, "owner": {"id": 214}, "user": {"role": null}}}, "resource": {"id": 363, "owner": {"id": 435}, "assignee": {"id": 4}, "organization": {"id": 156}, "project": {"owner": {"id": 738}, "assignee": {"id": 862}, "organization": {"id": 938}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 535}, "organization": {"id": 625}, "project": {"owner": {"id": 1}, "assignee": {"id": 815}, "organization": {"id": 956}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 349, "owner": {"id": 443}, "assignee": {"id": 66}, "organization": {"id": 675}, "project": {"owner": {"id": 755}, "assignee": {"id": 879}, "organization": {"id": 931}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 172, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 594}, "organization": {"id": 172}, "project": {"owner": {"id": 47}, "assignee": {"id": 803}, "organization": {"id": 996}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 411}, "assignee": {"id": 25}, "organization": {"id": 172}, "project": {"owner": {"id": 724}, "assignee": {"id": 888}, "organization": {"id": 944}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 93, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 244}, "user": {"role": null}}}, "resource": {"owner": {"id": 443}, "assignee": {"id": 584}, "organization": {"id": 194}, "project": {"owner": {"id": 93}, "assignee": {"id": 827}, "organization": {"id": 962}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 319, "owner": {"id": 492}, "assignee": {"id": 63}, "organization": {"id": 646}, "project": {"owner": {"id": 721}, "assignee": {"id": 824}, "organization": {"id": 997}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 110, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"owner": {"id": 429}, "assignee": {"id": 567}, "organization": {"id": 110}, "project": {"owner": {"id": 26}, "assignee": {"id": 884}, "organization": {"id": 917}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"id": 321, "owner": {"id": 407}, "assignee": {"id": 18}, "organization": {"id": 193}, "project": {"owner": {"id": 746}, "assignee": {"id": 827}, "organization": {"id": 937}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 544}, "organization": {"id": 659}, "project": {"owner": {"id": 37}, "assignee": {"id": 842}, "organization": {"id": 975}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"id": 343, "owner": {"id": 459}, "assignee": {"id": 40}, "organization": {"id": 663}, "project": {"owner": {"id": 786}, "assignee": {"id": 875}, "organization": {"id": 986}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"owner": {"id": 443}, "assignee": {"id": 544}, "organization": {"id": 605}, "project": {"owner": {"id": 35}, "assignee": {"id": 838}, "organization": {"id": 938}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 316, "owner": {"id": 444}, "assignee": {"id": 66}, "organization": {"id": 118}, "project": {"owner": {"id": 715}, "assignee": {"id": 891}, "organization": {"id": 919}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 533}, "organization": {"id": 675}, "project": {"owner": {"id": 6}, "assignee": {"id": 864}, "organization": {"id": 956}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"id": 307, "owner": {"id": 428}, "assignee": {"id": 52}, "organization": {"id": 621}, "project": {"owner": {"id": 778}, "assignee": {"id": 809}, "organization": {"id": 968}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 482}, "assignee": {"id": 568}, "organization": {"id": 122}, "project": {"owner": {"id": 40}, "assignee": {"id": 840}, "organization": {"id": 973}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"id": 397, "owner": {"id": 471}, "assignee": {"id": 69}, "organization": {"id": 182}, "project": {"owner": {"id": 730}, "assignee": {"id": 867}, "organization": {"id": 925}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 552}, "organization": {"id": 120}, "project": {"owner": {"id": 71}, "assignee": {"id": 877}, "organization": {"id": 911}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 432}, "assignee": {"id": 54}, "organization": {"id": 677}, "project": {"owner": {"id": 776}, "assignee": {"id": 889}, "organization": {"id": 945}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 419}, "assignee": {"id": 561}, "organization": {"id": 162}, "project": {"owner": {"id": 93}, "assignee": {"id": 870}, "organization": {"id": 932}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 224}, "user": {"role": null}}}, "resource": {"id": 302, "owner": {"id": 441}, "assignee": {"id": 39}, "organization": {"id": 140}, "project": {"owner": {"id": 782}, "assignee": {"id": 831}, "organization": {"id": 987}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 598}, "organization": {"id": 638}, "project": {"owner": {"id": 56}, "assignee": {"id": 834}, "organization": {"id": 942}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 437}, "assignee": {"id": 84}, "organization": {"id": 626}, "project": {"owner": {"id": 708}, "assignee": {"id": 806}, "organization": {"id": 992}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 483}, "assignee": {"id": 528}, "organization": {"id": 608}, "project": {"owner": {"id": 67}, "assignee": {"id": 876}, "organization": {"id": 960}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"id": 398, "owner": {"id": 480}, "assignee": {"id": 4}, "organization": {"id": 178}, "project": {"owner": {"id": 772}, "assignee": {"id": 806}, "organization": {"id": 981}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 546}, "organization": {"id": 636}, "project": {"owner": {"id": 67}, "assignee": {"id": 893}, "organization": {"id": 949}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 123, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 495}, "assignee": {"id": 13}, "organization": {"id": 637}, "project": {"owner": {"id": 775}, "assignee": {"id": 827}, "organization": {"id": 963}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 557}, "organization": {"id": 147}, "project": {"owner": {"id": 78}, "assignee": {"id": 870}, "organization": {"id": 967}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 496}, "assignee": {"id": 29}, "organization": {"id": 189}, "project": {"owner": {"id": 774}, "assignee": {"id": 843}, "organization": {"id": 978}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 107, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 579}, "organization": {"id": 107}, "project": {"owner": {"id": 7}, "assignee": {"id": 861}, "organization": {"id": 928}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 434}, "assignee": {"id": 54}, "organization": {"id": 605}, "project": {"owner": {"id": 756}, "assignee": {"id": 807}, "organization": {"id": 982}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 217}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 575}, "organization": {"id": 158}, "project": {"owner": {"id": 85}, "assignee": {"id": 804}, "organization": {"id": 941}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 364, "owner": {"id": 430}, "assignee": {"id": 79}, "organization": {"id": 140}, "project": {"owner": {"id": 711}, "assignee": {"id": 803}, "organization": {"id": 980}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 290}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 563}, "organization": {"id": 676}, "project": {"owner": {"id": 32}, "assignee": {"id": 823}, "organization": {"id": 959}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 479}, "assignee": {"id": 21}, "organization": {"id": 674}, "project": {"owner": {"id": 727}, "assignee": {"id": 885}, "organization": {"id": 966}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 217}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 566}, "organization": {"id": 674}, "project": {"owner": {"id": 22}, "assignee": {"id": 828}, "organization": {"id": 925}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 214}, "user": {"role": "worker"}}}, "resource": {"id": 377, "owner": {"id": 474}, "assignee": {"id": 86}, "organization": {"id": 129}, "project": {"owner": {"id": 757}, "assignee": {"id": 866}, "organization": {"id": 983}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 518}, "organization": {"id": 694}, "project": {"owner": {"id": 88}, "assignee": {"id": 824}, "organization": {"id": 993}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 262}, "user": {"role": "worker"}}}, "resource": {"id": 398, "owner": {"id": 408}, "assignee": {"id": 39}, "organization": {"id": 690}, "project": {"owner": {"id": 705}, "assignee": {"id": 894}, "organization": {"id": 926}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 152, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 518}, "organization": {"id": 152}, "project": {"owner": {"id": 37}, "assignee": {"id": 899}, "organization": {"id": 975}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 415}, "assignee": {"id": 69}, "organization": {"id": 115}, "project": {"owner": {"id": 712}, "assignee": {"id": 880}, "organization": {"id": 904}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 527}, "organization": {"id": 115}, "project": {"owner": {"id": 38}, "assignee": {"id": 825}, "organization": {"id": 936}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 408}, "assignee": {"id": 64}, "organization": {"id": 665}, "project": {"owner": {"id": 794}, "assignee": {"id": 818}, "organization": {"id": 962}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 141, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 563}, "organization": {"id": 141}, "project": {"owner": {"id": 67}, "assignee": {"id": 884}, "organization": {"id": 931}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 129, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 371, "owner": {"id": 479}, "assignee": {"id": 32}, "organization": {"id": 129}, "project": {"owner": {"id": 733}, "assignee": {"id": 814}, "organization": {"id": 914}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 265}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 479}, "assignee": {"id": 570}, "organization": {"id": 625}, "project": {"owner": {"id": 77}, "assignee": {"id": 817}, "organization": {"id": 923}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 352, "owner": {"id": 450}, "assignee": {"id": 37}, "organization": {"id": 657}, "project": {"owner": {"id": 793}, "assignee": {"id": 896}, "organization": {"id": 915}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 535}, "organization": {"id": 655}, "project": {"owner": {"id": 44}, "assignee": {"id": 834}, "organization": {"id": 946}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 156, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 396, "owner": {"id": 480}, "assignee": {"id": 65}, "organization": {"id": 156}, "project": {"owner": {"id": 769}, "assignee": {"id": 862}, "organization": {"id": 972}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 566}, "organization": {"id": 655}, "project": {"owner": {"id": 31}, "assignee": {"id": 884}, "organization": {"id": 974}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 460}, "assignee": {"id": 56}, "organization": {"id": 627}, "project": {"owner": {"id": 743}, "assignee": {"id": 823}, "organization": {"id": 969}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 479}, "assignee": {"id": 576}, "organization": {"id": 175}, "project": {"owner": {"id": 66}, "assignee": {"id": 843}, "organization": {"id": 958}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 242}, "user": {"role": "supervisor"}}}, "resource": {"id": 309, "owner": {"id": 456}, "assignee": {"id": 13}, "organization": {"id": 183}, "project": {"owner": {"id": 793}, "assignee": {"id": 858}, "organization": {"id": 901}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 281}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 492}, "assignee": {"id": 543}, "organization": {"id": 109}, "project": {"owner": {"id": 80}, "assignee": {"id": 856}, "organization": {"id": 931}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 417}, "assignee": {"id": 19}, "organization": {"id": 679}, "project": {"owner": {"id": 732}, "assignee": {"id": 873}, "organization": {"id": 957}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 525}, "organization": {"id": 165}, "project": {"owner": {"id": 89}, "assignee": {"id": 814}, "organization": {"id": 981}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 335, "owner": {"id": 400}, "assignee": {"id": 23}, "organization": {"id": 182}, "project": {"owner": {"id": 723}, "assignee": {"id": 847}, "organization": {"id": 932}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 527}, "organization": {"id": 620}, "project": {"owner": {"id": 56}, "assignee": {"id": 835}, "organization": {"id": 906}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 30, "privilege": "worker"}, "organization": {"id": 107, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 417}, "assignee": {"id": 30}, "organization": {"id": 654}, "project": {"owner": {"id": 719}, "assignee": {"id": 844}, "organization": {"id": 944}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 454}, "assignee": {"id": 592}, "organization": {"id": 600}, "project": {"owner": {"id": 32}, "assignee": {"id": 801}, "organization": {"id": 970}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"id": 367, "owner": {"id": 455}, "assignee": {"id": 24}, "organization": {"id": 164}, "project": {"owner": {"id": 719}, "assignee": {"id": 841}, "organization": {"id": 914}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 559}, "organization": {"id": 680}, "project": {"owner": {"id": 11}, "assignee": {"id": 817}, "organization": {"id": 998}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"id": 374, "owner": {"id": 477}, "assignee": {"id": 70}, "organization": {"id": 674}, "project": {"owner": {"id": 746}, "assignee": {"id": 865}, "organization": {"id": 973}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 585}, "organization": {"id": 147}, "project": {"owner": {"id": 21}, "assignee": {"id": 839}, "organization": {"id": 912}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 328, "owner": {"id": 452}, "assignee": {"id": 13}, "organization": {"id": 110}, "project": {"owner": {"id": 720}, "assignee": {"id": 851}, "organization": {"id": 999}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 574}, "organization": {"id": 154}, "project": {"owner": {"id": 31}, "assignee": {"id": 801}, "organization": {"id": 909}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"id": 395, "owner": {"id": 414}, "assignee": {"id": 68}, "organization": {"id": 638}, "project": {"owner": {"id": 773}, "assignee": {"id": 846}, "organization": {"id": 946}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 545}, "organization": {"id": 151}, "project": {"owner": {"id": 64}, "assignee": {"id": 801}, "organization": {"id": 949}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 356, "owner": {"id": 486}, "assignee": {"id": 16}, "organization": {"id": 180}, "project": {"owner": {"id": 743}, "assignee": {"id": 849}, "organization": {"id": 929}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"owner": {"id": 460}, "assignee": {"id": 537}, "organization": {"id": 618}, "project": {"owner": {"id": 52}, "assignee": {"id": 832}, "organization": {"id": 970}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"id": 383, "owner": {"id": 440}, "assignee": {"id": 32}, "organization": {"id": 677}, "project": {"owner": {"id": 732}, "assignee": {"id": 843}, "organization": {"id": 914}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 573}, "organization": {"id": 691}, "project": {"owner": {"id": 10}, "assignee": {"id": 832}, "organization": {"id": 951}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 308, "owner": {"id": 467}, "assignee": {"id": 54}, "organization": {"id": 101}, "project": {"owner": {"id": 748}, "assignee": {"id": 877}, "organization": {"id": 962}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 575}, "organization": {"id": 662}, "project": {"owner": {"id": 34}, "assignee": {"id": 829}, "organization": {"id": 917}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"id": 399, "owner": {"id": 478}, "assignee": {"id": 53}, "organization": {"id": 663}, "project": {"owner": {"id": 759}, "assignee": {"id": 877}, "organization": {"id": 968}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 508}, "organization": {"id": 139}, "project": {"owner": {"id": 56}, "assignee": {"id": 825}, "organization": {"id": 965}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 400}, "assignee": {"id": 26}, "organization": {"id": 181}, "project": {"owner": {"id": 778}, "assignee": {"id": 877}, "organization": {"id": 926}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 542}, "organization": {"id": 102}, "project": {"owner": {"id": 99}, "assignee": {"id": 832}, "organization": {"id": 932}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 325, "owner": {"id": 433}, "assignee": {"id": 42}, "organization": {"id": 601}, "project": {"owner": {"id": 720}, "assignee": {"id": 817}, "organization": {"id": 919}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 599}, "organization": {"id": 173}, "project": {"owner": {"id": 17}, "assignee": {"id": 896}, "organization": {"id": 922}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 354, "owner": {"id": 495}, "assignee": {"id": 91}, "organization": {"id": 185}, "project": {"owner": {"id": 774}, "assignee": {"id": 822}, "organization": {"id": 948}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 557}, "organization": {"id": 648}, "project": {"owner": {"id": 19}, "assignee": {"id": 891}, "organization": {"id": 977}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 443}, "assignee": {"id": 88}, "organization": {"id": 692}, "project": {"owner": {"id": 726}, "assignee": {"id": 803}, "organization": {"id": 973}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 575}, "organization": {"id": 618}, "project": {"owner": {"id": 16}, "assignee": {"id": 896}, "organization": {"id": 934}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"id": 397, "owner": {"id": 422}, "assignee": {"id": 508}, "organization": {"id": 131}, "project": {"owner": {"id": 779}, "assignee": {"id": 820}, "organization": {"id": 941}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 543}, "organization": {"id": 682}, "project": {"owner": {"id": 31}, "assignee": {"id": 882}, "organization": {"id": 956}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 319, "owner": {"id": 485}, "assignee": {"id": 594}, "organization": {"id": 614}, "project": {"owner": {"id": 752}, "assignee": {"id": 888}, "organization": {"id": 938}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 188, "owner": {"id": 205}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 521}, "organization": {"id": 188}, "project": {"owner": {"id": 29}, "assignee": {"id": 834}, "organization": {"id": 906}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 498}, "assignee": {"id": 596}, "organization": {"id": 165}, "project": {"owner": {"id": 715}, "assignee": {"id": 845}, "organization": {"id": 942}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 557}, "organization": {"id": 111}, "project": {"owner": {"id": 99}, "assignee": {"id": 899}, "organization": {"id": 980}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 373, "owner": {"id": 453}, "assignee": {"id": 518}, "organization": {"id": 609}, "project": {"owner": {"id": 797}, "assignee": {"id": 889}, "organization": {"id": 913}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 492}, "assignee": {"id": 555}, "organization": {"id": 111}, "project": {"owner": {"id": 35}, "assignee": {"id": 862}, "organization": {"id": 909}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 455}, "assignee": {"id": 524}, "organization": {"id": 162}, "project": {"owner": {"id": 726}, "assignee": {"id": 801}, "organization": {"id": 959}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 569}, "organization": {"id": 646}, "project": {"owner": {"id": 18}, "assignee": {"id": 802}, "organization": {"id": 997}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"id": 330, "owner": {"id": 435}, "assignee": {"id": 566}, "organization": {"id": 607}, "project": {"owner": {"id": 799}, "assignee": {"id": 824}, "organization": {"id": 931}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 190, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 542}, "organization": {"id": 630}, "project": {"owner": {"id": 26}, "assignee": {"id": 854}, "organization": {"id": 904}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 341, "owner": {"id": 471}, "assignee": {"id": 517}, "organization": {"id": 162}, "project": {"owner": {"id": 749}, "assignee": {"id": 847}, "organization": {"id": 990}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 587}, "organization": {"id": 664}, "project": {"owner": {"id": 14}, "assignee": {"id": 856}, "organization": {"id": 943}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"id": 322, "owner": {"id": 403}, "assignee": {"id": 533}, "organization": {"id": 682}, "project": {"owner": {"id": 714}, "assignee": {"id": 856}, "organization": {"id": 945}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 506}, "organization": {"id": 145}, "project": {"owner": {"id": 72}, "assignee": {"id": 875}, "organization": {"id": 940}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 472}, "assignee": {"id": 587}, "organization": {"id": 140}, "project": {"owner": {"id": 708}, "assignee": {"id": 825}, "organization": {"id": 935}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 538}, "organization": {"id": 151}, "project": {"owner": {"id": 80}, "assignee": {"id": 859}, "organization": {"id": 908}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 119, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 405}, "assignee": {"id": 585}, "organization": {"id": 660}, "project": {"owner": {"id": 731}, "assignee": {"id": 881}, "organization": {"id": 977}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 515}, "organization": {"id": 191}, "project": {"owner": {"id": 38}, "assignee": {"id": 830}, "organization": {"id": 970}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 399, "owner": {"id": 416}, "assignee": {"id": 507}, "organization": {"id": 107}, "project": {"owner": {"id": 706}, "assignee": {"id": 829}, "organization": {"id": 913}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 550}, "organization": {"id": 654}, "project": {"owner": {"id": 86}, "assignee": {"id": 835}, "organization": {"id": 941}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"id": 375, "owner": {"id": 454}, "assignee": {"id": 531}, "organization": {"id": 677}, "project": {"owner": {"id": 728}, "assignee": {"id": 862}, "organization": {"id": 950}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 523}, "organization": {"id": 653}, "project": {"owner": {"id": 80}, "assignee": {"id": 824}, "organization": {"id": 942}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 282}, "user": {"role": "maintainer"}}}, "resource": {"id": 343, "owner": {"id": 454}, "assignee": {"id": 519}, "organization": {"id": 172}, "project": {"owner": {"id": 752}, "assignee": {"id": 871}, "organization": {"id": 995}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 530}, "organization": {"id": 657}, "project": {"owner": {"id": 77}, "assignee": {"id": 814}, "organization": {"id": 997}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 450}, "assignee": {"id": 504}, "organization": {"id": 643}, "project": {"owner": {"id": 760}, "assignee": {"id": 845}, "organization": {"id": 964}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 426}, "assignee": {"id": 550}, "organization": {"id": 153}, "project": {"owner": {"id": 99}, "assignee": {"id": 845}, "organization": {"id": 994}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 316, "owner": {"id": 495}, "assignee": {"id": 526}, "organization": {"id": 162}, "project": {"owner": {"id": 763}, "assignee": {"id": 883}, "organization": {"id": 960}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 547}, "organization": {"id": 121}, "project": {"owner": {"id": 50}, "assignee": {"id": 840}, "organization": {"id": 954}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 404}, "assignee": {"id": 564}, "organization": {"id": 694}, "project": {"owner": {"id": 747}, "assignee": {"id": 889}, "organization": {"id": 935}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 501}, "organization": {"id": 115}, "project": {"owner": {"id": 73}, "assignee": {"id": 881}, "organization": {"id": 907}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 307, "owner": {"id": 477}, "assignee": {"id": 586}, "organization": {"id": 119}, "project": {"owner": {"id": 729}, "assignee": {"id": 828}, "organization": {"id": 969}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 595}, "organization": {"id": 601}, "project": {"owner": {"id": 19}, "assignee": {"id": 863}, "organization": {"id": 958}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"id": 366, "owner": {"id": 449}, "assignee": {"id": 550}, "organization": {"id": 648}, "project": {"owner": {"id": 729}, "assignee": {"id": 840}, "organization": {"id": 987}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 288}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 515}, "organization": {"id": 653}, "project": {"owner": {"id": 25}, "assignee": {"id": 818}, "organization": {"id": 995}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 402}, "assignee": {"id": 512}, "organization": {"id": 106}, "project": {"owner": {"id": 796}, "assignee": {"id": 893}, "organization": {"id": 995}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 463}, "assignee": {"id": 507}, "organization": {"id": 631}, "project": {"owner": {"id": 39}, "assignee": {"id": 879}, "organization": {"id": 962}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 16, "privilege": "business"}, "organization": {"id": 149, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 416}, "assignee": {"id": 593}, "organization": {"id": 661}, "project": {"owner": {"id": 741}, "assignee": {"id": 889}, "organization": {"id": 930}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 510}, "organization": {"id": 155}, "project": {"owner": {"id": 70}, "assignee": {"id": 842}, "organization": {"id": 978}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 464}, "assignee": {"id": 500}, "organization": {"id": 166}, "project": {"owner": {"id": 764}, "assignee": {"id": 846}, "organization": {"id": 914}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 199, "owner": {"id": 264}, "user": {"role": null}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 581}, "organization": {"id": 199}, "project": {"owner": {"id": 30}, "assignee": {"id": 894}, "organization": {"id": 977}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 123, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 421}, "assignee": {"id": 554}, "organization": {"id": 604}, "project": {"owner": {"id": 757}, "assignee": {"id": 899}, "organization": {"id": 907}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 565}, "organization": {"id": 136}, "project": {"owner": {"id": 0}, "assignee": {"id": 870}, "organization": {"id": 925}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 172, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 489}, "assignee": {"id": 518}, "organization": {"id": 172}, "project": {"owner": {"id": 730}, "assignee": {"id": 835}, "organization": {"id": 970}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"owner": {"id": 483}, "assignee": {"id": 545}, "organization": {"id": 653}, "project": {"owner": {"id": 71}, "assignee": {"id": 883}, "organization": {"id": 925}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 20, "privilege": "user"}, "organization": {"id": 150, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 496}, "assignee": {"id": 584}, "organization": {"id": 698}, "project": {"owner": {"id": 734}, "assignee": {"id": 890}, "organization": {"id": 908}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 203}, "user": {"role": null}}}, "resource": {"owner": {"id": 497}, "assignee": {"id": 533}, "organization": {"id": 659}, "project": {"owner": {"id": 94}, "assignee": {"id": 895}, "organization": {"id": 908}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 366, "owner": {"id": 448}, "assignee": {"id": 590}, "organization": {"id": 187}, "project": {"owner": {"id": 774}, "assignee": {"id": 820}, "organization": {"id": 999}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"owner": {"id": 485}, "assignee": {"id": 503}, "organization": {"id": 692}, "project": {"owner": {"id": 9}, "assignee": {"id": 894}, "organization": {"id": 971}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 448}, "assignee": {"id": 549}, "organization": {"id": 682}, "project": {"owner": {"id": 761}, "assignee": {"id": 844}, "organization": {"id": 951}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 575}, "organization": {"id": 191}, "project": {"owner": {"id": 735}, "assignee": {"id": 67}, "organization": {"id": 989}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"id": 305, "owner": {"id": 458}, "assignee": {"id": 565}, "organization": {"id": 158}, "project": {"owner": {"id": 741}, "assignee": {"id": 846}, "organization": {"id": 967}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 579}, "organization": {"id": 152}, "project": {"owner": {"id": 723}, "assignee": {"id": 62}, "organization": {"id": 945}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 20, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 361, "owner": {"id": 412}, "assignee": {"id": 523}, "organization": {"id": 661}, "project": {"owner": {"id": 784}, "assignee": {"id": 885}, "organization": {"id": 984}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 503}, "organization": {"id": 152}, "project": {"owner": {"id": 730}, "assignee": {"id": 5}, "organization": {"id": 905}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"id": 378, "owner": {"id": 495}, "assignee": {"id": 531}, "organization": {"id": 183}, "project": {"owner": {"id": 756}, "assignee": {"id": 803}, "organization": {"id": 942}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 529}, "organization": {"id": 635}, "project": {"owner": {"id": 796}, "assignee": {"id": 69}, "organization": {"id": 909}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 11, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 243}, "user": {"role": null}}}, "resource": {"id": 397, "owner": {"id": 449}, "assignee": {"id": 598}, "organization": {"id": 618}, "project": {"owner": {"id": 776}, "assignee": {"id": 878}, "organization": {"id": 928}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 108, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 576}, "organization": {"id": 669}, "project": {"owner": {"id": 796}, "assignee": {"id": 46}, "organization": {"id": 943}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"id": 322, "owner": {"id": 476}, "assignee": {"id": 500}, "organization": {"id": 191}, "project": {"owner": {"id": 796}, "assignee": {"id": 847}, "organization": {"id": 996}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 575}, "organization": {"id": 642}, "project": {"owner": {"id": 738}, "assignee": {"id": 94}, "organization": {"id": 941}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 28}, "user": {"role": "owner"}}}, "resource": {"id": 334, "owner": {"id": 429}, "assignee": {"id": 515}, "organization": {"id": 684}, "project": {"owner": {"id": 794}, "assignee": {"id": 853}, "organization": {"id": 904}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 577}, "organization": {"id": 136}, "project": {"owner": {"id": 743}, "assignee": {"id": 4}, "organization": {"id": 978}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 482}, "assignee": {"id": 538}, "organization": {"id": 149}, "project": {"owner": {"id": 781}, "assignee": {"id": 810}, "organization": {"id": 900}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 585}, "organization": {"id": 143}, "project": {"owner": {"id": 732}, "assignee": {"id": 90}, "organization": {"id": 907}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 499}, "assignee": {"id": 501}, "organization": {"id": 649}, "project": {"owner": {"id": 715}, "assignee": {"id": 887}, "organization": {"id": 952}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 428}, "assignee": {"id": 546}, "organization": {"id": 198}, "project": {"owner": {"id": 725}, "assignee": {"id": 69}, "organization": {"id": 996}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 403}, "assignee": {"id": 574}, "organization": {"id": 178}, "project": {"owner": {"id": 767}, "assignee": {"id": 859}, "organization": {"id": 900}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 582}, "organization": {"id": 631}, "project": {"owner": {"id": 725}, "assignee": {"id": 79}, "organization": {"id": 953}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 400}, "assignee": {"id": 591}, "organization": {"id": 666}, "project": {"owner": {"id": 708}, "assignee": {"id": 815}, "organization": {"id": 946}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 536}, "organization": {"id": 667}, "project": {"owner": {"id": 788}, "assignee": {"id": 34}, "organization": {"id": 906}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 100, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 416}, "assignee": {"id": 531}, "organization": {"id": 100}, "project": {"owner": {"id": 761}, "assignee": {"id": 802}, "organization": {"id": 993}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 103, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 454}, "assignee": {"id": 502}, "organization": {"id": 686}, "project": {"owner": {"id": 703}, "assignee": {"id": 42}, "organization": {"id": 908}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 351, "owner": {"id": 493}, "assignee": {"id": 522}, "organization": {"id": 675}, "project": {"owner": {"id": 769}, "assignee": {"id": 864}, "organization": {"id": 904}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 599}, "organization": {"id": 177}, "project": {"owner": {"id": 749}, "assignee": {"id": 93}, "organization": {"id": 952}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 437}, "assignee": {"id": 536}, "organization": {"id": 148}, "project": {"owner": {"id": 746}, "assignee": {"id": 800}, "organization": {"id": 973}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 170, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 457}, "assignee": {"id": 516}, "organization": {"id": 170}, "project": {"owner": {"id": 788}, "assignee": {"id": 11}, "organization": {"id": 963}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 311, "owner": {"id": 474}, "assignee": {"id": 575}, "organization": {"id": 645}, "project": {"owner": {"id": 735}, "assignee": {"id": 866}, "organization": {"id": 959}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 492}, "assignee": {"id": 509}, "organization": {"id": 176}, "project": {"owner": {"id": 713}, "assignee": {"id": 8}, "organization": {"id": 959}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 313, "owner": {"id": 494}, "assignee": {"id": 582}, "organization": {"id": 175}, "project": {"owner": {"id": 729}, "assignee": {"id": 825}, "organization": {"id": 951}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 511}, "organization": {"id": 621}, "project": {"owner": {"id": 715}, "assignee": {"id": 38}, "organization": {"id": 966}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 107, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"id": 317, "owner": {"id": 441}, "assignee": {"id": 581}, "organization": {"id": 622}, "project": {"owner": {"id": 778}, "assignee": {"id": 847}, "organization": {"id": 969}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 472}, "assignee": {"id": 596}, "organization": {"id": 644}, "project": {"owner": {"id": 734}, "assignee": {"id": 27}, "organization": {"id": 900}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 482}, "assignee": {"id": 582}, "organization": {"id": 152}, "project": {"owner": {"id": 790}, "assignee": {"id": 857}, "organization": {"id": 930}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 291}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 573}, "organization": {"id": 660}, "project": {"owner": {"id": 760}, "assignee": {"id": 73}, "organization": {"id": 954}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 444}, "assignee": {"id": 542}, "organization": {"id": 602}, "project": {"owner": {"id": 776}, "assignee": {"id": 813}, "organization": {"id": 954}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 524}, "organization": {"id": 169}, "project": {"owner": {"id": 759}, "assignee": {"id": 47}, "organization": {"id": 981}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 429}, "assignee": {"id": 524}, "organization": {"id": 186}, "project": {"owner": {"id": 741}, "assignee": {"id": 834}, "organization": {"id": 957}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 512}, "organization": {"id": 198}, "project": {"owner": {"id": 763}, "assignee": {"id": 86}, "organization": {"id": 913}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 485}, "assignee": {"id": 581}, "organization": {"id": 663}, "project": {"owner": {"id": 787}, "assignee": {"id": 838}, "organization": {"id": 927}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 558}, "organization": {"id": 129}, "project": {"owner": {"id": 740}, "assignee": {"id": 78}, "organization": {"id": 903}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 351, "owner": {"id": 464}, "assignee": {"id": 583}, "organization": {"id": 170}, "project": {"owner": {"id": 720}, "assignee": {"id": 833}, "organization": {"id": 991}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 156, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 529}, "organization": {"id": 675}, "project": {"owner": {"id": 766}, "assignee": {"id": 59}, "organization": {"id": 916}}, "user": {"num_resources": 0}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"id": 319, "owner": {"id": 465}, "assignee": {"id": 572}, "organization": {"id": 686}, "project": {"owner": {"id": 716}, "assignee": {"id": 802}, "organization": {"id": 908}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 409}, "assignee": {"id": 560}, "organization": {"id": 615}, "project": {"owner": {"id": 706}, "assignee": {"id": 84}, "organization": {"id": 932}}, "user": {"num_resources": 3}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"id": 311, "owner": {"id": 490}, "assignee": {"id": 577}, "organization": {"id": 189}, "project": {"owner": {"id": 767}, "assignee": {"id": 871}, "organization": {"id": 924}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 485}, "assignee": {"id": 586}, "organization": {"id": 676}, "project": {"owner": {"id": 714}, "assignee": {"id": 88}, "organization": {"id": 975}}, "user": {"num_resources": 10}}} } -test_scope_UPDATE_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:annotations", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 244}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 409}, "assignee": {"id": 584}, "organization": {"id": 665}, "project": {"owner": {"id": 745}, "assignee": {"id": 881}, "organization": {"id": 935}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 556}, "organization": {"id": 121}, "project": {"owner": {"id": 702}, "assignee": {"id": 30}, "organization": {"id": 984}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 71, "privilege": "admin"}, "organization": null}, "resource": {"id": 325, "owner": {"id": 434}, "assignee": {"id": 504}, "organization": {"id": 617}, "project": {"owner": {"id": 71}, "assignee": {"id": 837}, "organization": {"id": 937}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 50, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 266}, "user": {"role": null}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 591}, "organization": {"id": 106}, "project": {"owner": {"id": 741}, "assignee": {"id": 50}, "organization": {"id": 973}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": null}, "resource": {"id": 328, "owner": {"id": 483}, "assignee": {"id": 553}, "organization": {"id": 639}, "project": {"owner": {"id": 52}, "assignee": {"id": 889}, "organization": {"id": 940}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"owner": {"id": 442}, "assignee": {"id": 502}, "organization": {"id": 196}, "project": {"owner": {"id": 705}, "assignee": {"id": 40}, "organization": {"id": 989}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": null}, "resource": {"id": 302, "owner": {"id": 471}, "assignee": {"id": 527}, "organization": {"id": 673}, "project": {"owner": {"id": 7}, "assignee": {"id": 876}, "organization": {"id": 999}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 598}, "organization": {"id": 680}, "project": {"owner": {"id": 782}, "assignee": {"id": 74}, "organization": {"id": 945}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 463}, "assignee": {"id": 580}, "organization": {"id": 650}, "project": {"owner": {"id": 34}, "assignee": {"id": 887}, "organization": {"id": 954}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 119, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 559}, "organization": {"id": 603}, "project": {"owner": {"id": 786}, "assignee": {"id": 14}, "organization": {"id": 976}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": null}, "resource": {"id": 334, "owner": {"id": 400}, "assignee": {"id": 545}, "organization": {"id": 682}, "project": {"owner": {"id": 63}, "assignee": {"id": 802}, "organization": {"id": 979}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 237}, "user": {"role": null}}}, "resource": {"owner": {"id": 473}, "assignee": {"id": 524}, "organization": {"id": 695}, "project": {"owner": {"id": 752}, "assignee": {"id": 25}, "organization": {"id": 969}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": null}, "resource": {"id": 311, "owner": {"id": 474}, "assignee": {"id": 504}, "organization": {"id": 666}, "project": {"owner": {"id": 785}, "assignee": {"id": 58}, "organization": {"id": 934}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 595}, "organization": {"id": 187}, "project": {"owner": {"id": 718}, "assignee": {"id": 0}, "organization": {"id": 917}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": null}, "resource": {"id": 346, "owner": {"id": 475}, "assignee": {"id": 539}, "organization": {"id": 612}, "project": {"owner": {"id": 724}, "assignee": {"id": 45}, "organization": {"id": 993}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 531}, "organization": {"id": 135}, "project": {"owner": {"id": 748}, "assignee": {"id": 96}, "organization": {"id": 921}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": null}, "resource": {"id": 380, "owner": {"id": 468}, "assignee": {"id": 570}, "organization": {"id": 689}, "project": {"owner": {"id": 715}, "assignee": {"id": 82}, "organization": {"id": 954}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 10}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 487}, "assignee": {"id": 511}, "organization": {"id": 100}, "project": {"owner": {"id": 744}, "assignee": {"id": 10}, "organization": {"id": 994}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": null}, "resource": {"id": 301, "owner": {"id": 459}, "assignee": {"id": 545}, "organization": {"id": 669}, "project": {"owner": {"id": 732}, "assignee": {"id": 61}, "organization": {"id": 971}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 542}, "organization": {"id": 608}, "project": {"owner": {"id": 731}, "assignee": {"id": 46}, "organization": {"id": 933}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": null}, "resource": {"id": 311, "owner": {"id": 493}, "assignee": {"id": 562}, "organization": {"id": 629}, "project": {"owner": {"id": 751}, "assignee": {"id": 29}, "organization": {"id": 980}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 460}, "assignee": {"id": 500}, "organization": {"id": 644}, "project": {"owner": {"id": 788}, "assignee": {"id": 32}, "organization": {"id": 952}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": null}, "resource": {"id": 310, "owner": {"id": 32}, "assignee": {"id": 580}, "organization": {"id": 668}, "project": {"owner": {"id": 787}, "assignee": {"id": 883}, "organization": {"id": 988}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 463}, "assignee": {"id": 527}, "organization": {"id": 602}, "project": {"owner": {"id": 763}, "assignee": {"id": 6}, "organization": {"id": 916}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": null}, "resource": {"id": 394, "owner": {"id": 92}, "assignee": {"id": 594}, "organization": {"id": 611}, "project": {"owner": {"id": 721}, "assignee": {"id": 879}, "organization": {"id": 915}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 199, "owner": {"id": 220}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 532}, "organization": {"id": 199}, "project": {"owner": {"id": 799}, "assignee": {"id": 84}, "organization": {"id": 953}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": null}, "resource": {"id": 390, "owner": {"id": 5}, "assignee": {"id": 533}, "organization": {"id": 642}, "project": {"owner": {"id": 740}, "assignee": {"id": 881}, "organization": {"id": 954}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 440}, "assignee": {"id": 530}, "organization": {"id": 148}, "project": {"owner": {"id": 708}, "assignee": {"id": 20}, "organization": {"id": 996}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": null}, "resource": {"id": 388, "owner": {"id": 65}, "assignee": {"id": 505}, "organization": {"id": 622}, "project": {"owner": {"id": 742}, "assignee": {"id": 805}, "organization": {"id": 964}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 477}, "assignee": {"id": 556}, "organization": {"id": 157}, "project": {"owner": {"id": 772}, "assignee": {"id": 4}, "organization": {"id": 927}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": null}, "resource": {"id": 324, "owner": {"id": 38}, "assignee": {"id": 583}, "organization": {"id": 687}, "project": {"owner": {"id": 738}, "assignee": {"id": 806}, "organization": {"id": 993}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 500}, "organization": {"id": 689}, "project": {"owner": {"id": 729}, "assignee": {"id": 87}, "organization": {"id": 915}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": null}, "resource": {"id": 382, "owner": {"id": 400}, "assignee": {"id": 40}, "organization": {"id": 660}, "project": {"owner": {"id": 780}, "assignee": {"id": 895}, "organization": {"id": 938}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 598}, "organization": {"id": 656}, "project": {"owner": {"id": 765}, "assignee": {"id": 39}, "organization": {"id": 987}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": null}, "resource": {"id": 332, "owner": {"id": 475}, "assignee": {"id": 76}, "organization": {"id": 638}, "project": {"owner": {"id": 740}, "assignee": {"id": 853}, "organization": {"id": 924}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 589}, "organization": {"id": 667}, "project": {"owner": {"id": 709}, "assignee": {"id": 5}, "organization": {"id": 986}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": null}, "resource": {"id": 358, "owner": {"id": 452}, "assignee": {"id": 47}, "organization": {"id": 601}, "project": {"owner": {"id": 706}, "assignee": {"id": 834}, "organization": {"id": 902}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 539}, "organization": {"id": 134}, "project": {"owner": {"id": 798}, "assignee": {"id": 60}, "organization": {"id": 993}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": null}, "resource": {"id": 345, "owner": {"id": 436}, "assignee": {"id": 39}, "organization": {"id": 614}, "project": {"owner": {"id": 787}, "assignee": {"id": 891}, "organization": {"id": 987}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 502}, "organization": {"id": 185}, "project": {"owner": {"id": 778}, "assignee": {"id": 83}, "organization": {"id": 993}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": null}, "resource": {"id": 340, "owner": {"id": 402}, "assignee": {"id": 88}, "organization": {"id": 604}, "project": {"owner": {"id": 769}, "assignee": {"id": 835}, "organization": {"id": 963}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 409}, "assignee": {"id": 505}, "organization": {"id": 114}, "project": {"owner": {"id": 762}, "assignee": {"id": 23}, "organization": {"id": 951}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": null}, "resource": {"id": 382, "owner": {"id": 481}, "assignee": {"id": 581}, "organization": {"id": 629}, "project": {"owner": {"id": 771}, "assignee": {"id": 834}, "organization": {"id": 910}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 562}, "organization": {"id": 655}, "project": {"owner": {"id": 733}, "assignee": {"id": 79}, "organization": {"id": 983}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": null}, "resource": {"id": 301, "owner": {"id": 471}, "assignee": {"id": 519}, "organization": {"id": 698}, "project": {"owner": {"id": 710}, "assignee": {"id": 840}, "organization": {"id": 989}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 216}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 549}, "organization": {"id": 660}, "project": {"owner": {"id": 738}, "assignee": {"id": 61}, "organization": {"id": 962}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 45, "privilege": "user"}, "organization": null}, "resource": {"id": 344, "owner": {"id": 495}, "assignee": {"id": 536}, "organization": {"id": 622}, "project": {"owner": {"id": 788}, "assignee": {"id": 828}, "organization": {"id": 944}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 543}, "organization": {"id": 675}, "project": {"owner": {"id": 703}, "assignee": {"id": 90}, "organization": {"id": 926}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 51, "privilege": "worker"}, "organization": null}, "resource": {"id": 350, "owner": {"id": 435}, "assignee": {"id": 532}, "organization": {"id": 634}, "project": {"owner": {"id": 757}, "assignee": {"id": 886}, "organization": {"id": 969}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 544}, "organization": {"id": 108}, "project": {"owner": {"id": 744}, "assignee": {"id": 79}, "organization": {"id": 924}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": null}, "resource": {"id": 389, "owner": {"id": 466}, "assignee": {"id": 566}, "organization": {"id": 640}, "project": {"owner": {"id": 731}, "assignee": {"id": 874}, "organization": {"id": 974}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 508}, "organization": {"id": 114}, "project": {"owner": {"id": 760}, "assignee": {"id": 17}, "organization": {"id": 964}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 181, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 367, "owner": {"id": 469}, "assignee": {"id": 520}, "organization": {"id": 181}, "project": {"owner": {"id": 53}, "assignee": {"id": 860}, "organization": {"id": 954}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 535}, "organization": {"id": 160}, "project": {"owner": {"id": 795}, "assignee": {"id": 74}, "organization": {"id": 958}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"id": 398, "owner": {"id": 420}, "assignee": {"id": 529}, "organization": {"id": 629}, "project": {"owner": {"id": 5}, "assignee": {"id": 864}, "organization": {"id": 917}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 536}, "organization": {"id": 620}, "project": {"owner": {"id": 742}, "assignee": {"id": 22}, "organization": {"id": 991}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 450}, "assignee": {"id": 589}, "organization": {"id": 185}, "project": {"owner": {"id": 88}, "assignee": {"id": 894}, "organization": {"id": 984}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 290}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 521}, "organization": {"id": 658}, "project": {"owner": {"id": 799}, "assignee": {"id": 96}, "organization": {"id": 924}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 494}, "assignee": {"id": 593}, "organization": {"id": 636}, "project": {"owner": {"id": 91}, "assignee": {"id": 817}, "organization": {"id": 952}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 547}, "organization": {"id": 656}, "project": {"owner": {"id": 714}, "assignee": {"id": 94}, "organization": {"id": 987}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"id": 320, "owner": {"id": 439}, "assignee": {"id": 531}, "organization": {"id": 161}, "project": {"owner": {"id": 77}, "assignee": {"id": 827}, "organization": {"id": 999}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 237}, "user": {"role": null}}}, "resource": {"owner": {"id": 429}, "assignee": {"id": 529}, "organization": {"id": 197}, "project": {"owner": {"id": 738}, "assignee": {"id": 22}, "organization": {"id": 939}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 170, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 356, "owner": {"id": 467}, "assignee": {"id": 549}, "organization": {"id": 693}, "project": {"owner": {"id": 20}, "assignee": {"id": 887}, "organization": {"id": 915}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 558}, "organization": {"id": 184}, "project": {"owner": {"id": 751}, "assignee": {"id": 65}, "organization": {"id": 975}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"id": 397, "owner": {"id": 492}, "assignee": {"id": 512}, "organization": {"id": 195}, "project": {"owner": {"id": 40}, "assignee": {"id": 822}, "organization": {"id": 966}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 286}, "user": {"role": null}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 573}, "organization": {"id": 190}, "project": {"owner": {"id": 764}, "assignee": {"id": 76}, "organization": {"id": 950}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 262}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 464}, "assignee": {"id": 555}, "organization": {"id": 656}, "project": {"owner": {"id": 17}, "assignee": {"id": 885}, "organization": {"id": 945}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 583}, "organization": {"id": 666}, "project": {"owner": {"id": 715}, "assignee": {"id": 40}, "organization": {"id": 994}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 224}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 447}, "assignee": {"id": 587}, "organization": {"id": 113}, "project": {"owner": {"id": 49}, "assignee": {"id": 847}, "organization": {"id": 971}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 579}, "organization": {"id": 649}, "project": {"owner": {"id": 701}, "assignee": {"id": 73}, "organization": {"id": 964}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 365, "owner": {"id": 476}, "assignee": {"id": 516}, "organization": {"id": 653}, "project": {"owner": {"id": 9}, "assignee": {"id": 888}, "organization": {"id": 984}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 197, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 548}, "organization": {"id": 671}, "project": {"owner": {"id": 776}, "assignee": {"id": 48}, "organization": {"id": 952}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"id": 393, "owner": {"id": 471}, "assignee": {"id": 592}, "organization": {"id": 152}, "project": {"owner": {"id": 87}, "assignee": {"id": 881}, "organization": {"id": 932}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 560}, "organization": {"id": 176}, "project": {"owner": {"id": 725}, "assignee": {"id": 36}, "organization": {"id": 944}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 166, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 478}, "assignee": {"id": 525}, "organization": {"id": 692}, "project": {"owner": {"id": 9}, "assignee": {"id": 829}, "organization": {"id": 988}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 11, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 431}, "assignee": {"id": 598}, "organization": {"id": 166}, "project": {"owner": {"id": 781}, "assignee": {"id": 11}, "organization": {"id": 947}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 418}, "assignee": {"id": 566}, "organization": {"id": 116}, "project": {"owner": {"id": 70}, "assignee": {"id": 899}, "organization": {"id": 974}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 81, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 482}, "assignee": {"id": 514}, "organization": {"id": 106}, "project": {"owner": {"id": 798}, "assignee": {"id": 81}, "organization": {"id": 987}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"id": 381, "owner": {"id": 488}, "assignee": {"id": 554}, "organization": {"id": 625}, "project": {"owner": {"id": 24}, "assignee": {"id": 899}, "organization": {"id": 960}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 510}, "organization": {"id": 610}, "project": {"owner": {"id": 739}, "assignee": {"id": 56}, "organization": {"id": 915}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 338, "owner": {"id": 488}, "assignee": {"id": 509}, "organization": {"id": 176}, "project": {"owner": {"id": 60}, "assignee": {"id": 819}, "organization": {"id": 907}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 77}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 592}, "organization": {"id": 691}, "project": {"owner": {"id": 759}, "assignee": {"id": 77}, "organization": {"id": 917}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 432}, "assignee": {"id": 529}, "organization": {"id": 614}, "project": {"owner": {"id": 21}, "assignee": {"id": 868}, "organization": {"id": 983}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 479}, "assignee": {"id": 528}, "organization": {"id": 693}, "project": {"owner": {"id": 775}, "assignee": {"id": 34}, "organization": {"id": 932}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 409}, "assignee": {"id": 581}, "organization": {"id": 104}, "project": {"owner": {"id": 61}, "assignee": {"id": 816}, "organization": {"id": 977}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 539}, "organization": {"id": 109}, "project": {"owner": {"id": 759}, "assignee": {"id": 37}, "organization": {"id": 964}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 424}, "assignee": {"id": 570}, "organization": {"id": 657}, "project": {"owner": {"id": 2}, "assignee": {"id": 891}, "organization": {"id": 999}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 523}, "organization": {"id": 100}, "project": {"owner": {"id": 724}, "assignee": {"id": 19}, "organization": {"id": 906}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 430}, "assignee": {"id": 530}, "organization": {"id": 118}, "project": {"owner": {"id": 50}, "assignee": {"id": 846}, "organization": {"id": 943}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 289}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 480}, "assignee": {"id": 520}, "organization": {"id": 170}, "project": {"owner": {"id": 761}, "assignee": {"id": 69}, "organization": {"id": 993}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 487}, "assignee": {"id": 558}, "organization": {"id": 690}, "project": {"owner": {"id": 93}, "assignee": {"id": 840}, "organization": {"id": 925}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 154, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 452}, "assignee": {"id": 575}, "organization": {"id": 625}, "project": {"owner": {"id": 780}, "assignee": {"id": 49}, "organization": {"id": 924}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 361, "owner": {"id": 426}, "assignee": {"id": 538}, "organization": {"id": 175}, "project": {"owner": {"id": 84}, "assignee": {"id": 836}, "organization": {"id": 932}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 297}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 551}, "organization": {"id": 619}, "project": {"owner": {"id": 718}, "assignee": {"id": 57}, "organization": {"id": 902}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 301, "owner": {"id": 408}, "assignee": {"id": 512}, "organization": {"id": 663}, "project": {"owner": {"id": 54}, "assignee": {"id": 848}, "organization": {"id": 947}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 505}, "organization": {"id": 674}, "project": {"owner": {"id": 730}, "assignee": {"id": 34}, "organization": {"id": 923}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 406}, "assignee": {"id": 543}, "organization": {"id": 146}, "project": {"owner": {"id": 32}, "assignee": {"id": 828}, "organization": {"id": 921}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 208}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 560}, "organization": {"id": 183}, "project": {"owner": {"id": 749}, "assignee": {"id": 15}, "organization": {"id": 964}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 139, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"id": 350, "owner": {"id": 434}, "assignee": {"id": 524}, "organization": {"id": 650}, "project": {"owner": {"id": 65}, "assignee": {"id": 879}, "organization": {"id": 912}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 409}, "assignee": {"id": 583}, "organization": {"id": 159}, "project": {"owner": {"id": 710}, "assignee": {"id": 36}, "organization": {"id": 909}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 446}, "assignee": {"id": 597}, "organization": {"id": 101}, "project": {"owner": {"id": 61}, "assignee": {"id": 819}, "organization": {"id": 920}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 293}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 549}, "organization": {"id": 166}, "project": {"owner": {"id": 716}, "assignee": {"id": 24}, "organization": {"id": 991}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"id": 350, "owner": {"id": 423}, "assignee": {"id": 544}, "organization": {"id": 609}, "project": {"owner": {"id": 27}, "assignee": {"id": 862}, "organization": {"id": 938}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 501}, "organization": {"id": 607}, "project": {"owner": {"id": 794}, "assignee": {"id": 51}, "organization": {"id": 961}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 244}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 449}, "assignee": {"id": 576}, "organization": {"id": 169}, "project": {"owner": {"id": 19}, "assignee": {"id": 833}, "organization": {"id": 999}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 556}, "organization": {"id": 665}, "project": {"owner": {"id": 795}, "assignee": {"id": 65}, "organization": {"id": 962}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 20, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"id": 361, "owner": {"id": 409}, "assignee": {"id": 530}, "organization": {"id": 694}, "project": {"owner": {"id": 20}, "assignee": {"id": 889}, "organization": {"id": 931}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 459}, "assignee": {"id": 534}, "organization": {"id": 627}, "project": {"owner": {"id": 763}, "assignee": {"id": 5}, "organization": {"id": 941}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"id": 391, "owner": {"id": 496}, "assignee": {"id": 506}, "organization": {"id": 144}, "project": {"owner": {"id": 99}, "assignee": {"id": 803}, "organization": {"id": 967}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 506}, "organization": {"id": 194}, "project": {"owner": {"id": 721}, "assignee": {"id": 77}, "organization": {"id": 964}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 400}, "assignee": {"id": 563}, "organization": {"id": 647}, "project": {"owner": {"id": 41}, "assignee": {"id": 821}, "organization": {"id": 962}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 552}, "organization": {"id": 115}, "project": {"owner": {"id": 714}, "assignee": {"id": 37}, "organization": {"id": 929}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"id": 363, "owner": {"id": 403}, "assignee": {"id": 558}, "organization": {"id": 133}, "project": {"owner": {"id": 69}, "assignee": {"id": 828}, "organization": {"id": 981}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 522}, "organization": {"id": 151}, "project": {"owner": {"id": 764}, "assignee": {"id": 5}, "organization": {"id": 969}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"id": 333, "owner": {"id": 439}, "assignee": {"id": 574}, "organization": {"id": 621}, "project": {"owner": {"id": 69}, "assignee": {"id": 809}, "organization": {"id": 952}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 460}, "assignee": {"id": 513}, "organization": {"id": 631}, "project": {"owner": {"id": 706}, "assignee": {"id": 10}, "organization": {"id": 902}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 442}, "assignee": {"id": 524}, "organization": {"id": 142}, "project": {"owner": {"id": 1}, "assignee": {"id": 837}, "organization": {"id": 961}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 93, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 288}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 505}, "organization": {"id": 640}, "project": {"owner": {"id": 764}, "assignee": {"id": 93}, "organization": {"id": 947}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 405}, "assignee": {"id": 578}, "organization": {"id": 697}, "project": {"owner": {"id": 83}, "assignee": {"id": 850}, "organization": {"id": 941}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 543}, "organization": {"id": 611}, "project": {"owner": {"id": 712}, "assignee": {"id": 80}, "organization": {"id": 905}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 338, "owner": {"id": 422}, "assignee": {"id": 561}, "organization": {"id": 119}, "project": {"owner": {"id": 1}, "assignee": {"id": 860}, "organization": {"id": 990}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"owner": {"id": 457}, "assignee": {"id": 509}, "organization": {"id": 191}, "project": {"owner": {"id": 700}, "assignee": {"id": 56}, "organization": {"id": 942}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"id": 387, "owner": {"id": 476}, "assignee": {"id": 527}, "organization": {"id": 697}, "project": {"owner": {"id": 5}, "assignee": {"id": 821}, "organization": {"id": 973}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 535}, "organization": {"id": 171}, "project": {"owner": {"id": 704}, "assignee": {"id": 16}, "organization": {"id": 955}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 432}, "assignee": {"id": 570}, "organization": {"id": 178}, "project": {"owner": {"id": 72}, "assignee": {"id": 820}, "organization": {"id": 968}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 210}, "user": {"role": null}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 526}, "organization": {"id": 161}, "project": {"owner": {"id": 715}, "assignee": {"id": 23}, "organization": {"id": 978}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 321, "owner": {"id": 492}, "assignee": {"id": 556}, "organization": {"id": 628}, "project": {"owner": {"id": 4}, "assignee": {"id": 805}, "organization": {"id": 924}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 105, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 571}, "organization": {"id": 662}, "project": {"owner": {"id": 798}, "assignee": {"id": 49}, "organization": {"id": 966}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 374, "owner": {"id": 474}, "assignee": {"id": 580}, "organization": {"id": 151}, "project": {"owner": {"id": 73}, "assignee": {"id": 839}, "organization": {"id": 927}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 596}, "organization": {"id": 600}, "project": {"owner": {"id": 721}, "assignee": {"id": 34}, "organization": {"id": 911}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 363, "owner": {"id": 411}, "assignee": {"id": 566}, "organization": {"id": 635}, "project": {"owner": {"id": 88}, "assignee": {"id": 839}, "organization": {"id": 972}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"owner": {"id": 476}, "assignee": {"id": 551}, "organization": {"id": 675}, "project": {"owner": {"id": 780}, "assignee": {"id": 80}, "organization": {"id": 945}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 462}, "assignee": {"id": 526}, "organization": {"id": 152}, "project": {"owner": {"id": 68}, "assignee": {"id": 816}, "organization": {"id": 941}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 419}, "assignee": {"id": 508}, "organization": {"id": 121}, "project": {"owner": {"id": 787}, "assignee": {"id": 32}, "organization": {"id": 933}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 427}, "assignee": {"id": 528}, "organization": {"id": 630}, "project": {"owner": {"id": 53}, "assignee": {"id": 840}, "organization": {"id": 966}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 440}, "assignee": {"id": 583}, "organization": {"id": 131}, "project": {"owner": {"id": 766}, "assignee": {"id": 81}, "organization": {"id": 903}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 408}, "assignee": {"id": 523}, "organization": {"id": 184}, "project": {"owner": {"id": 77}, "assignee": {"id": 885}, "organization": {"id": 942}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 537}, "organization": {"id": 194}, "project": {"owner": {"id": 780}, "assignee": {"id": 17}, "organization": {"id": 901}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 451}, "assignee": {"id": 572}, "organization": {"id": 697}, "project": {"owner": {"id": 49}, "assignee": {"id": 861}, "organization": {"id": 972}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 152, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 506}, "organization": {"id": 647}, "project": {"owner": {"id": 728}, "assignee": {"id": 53}, "organization": {"id": 962}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 476}, "assignee": {"id": 513}, "organization": {"id": 162}, "project": {"owner": {"id": 16}, "assignee": {"id": 835}, "organization": {"id": 942}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 439}, "assignee": {"id": 501}, "organization": {"id": 675}, "project": {"owner": {"id": 765}, "assignee": {"id": 7}, "organization": {"id": 909}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 364, "owner": {"id": 443}, "assignee": {"id": 590}, "organization": {"id": 653}, "project": {"owner": {"id": 45}, "assignee": {"id": 871}, "organization": {"id": 938}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 515}, "organization": {"id": 691}, "project": {"owner": {"id": 709}, "assignee": {"id": 49}, "organization": {"id": 996}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 416}, "assignee": {"id": 516}, "organization": {"id": 175}, "project": {"owner": {"id": 69}, "assignee": {"id": 858}, "organization": {"id": 942}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 473}, "assignee": {"id": 583}, "organization": {"id": 130}, "project": {"owner": {"id": 733}, "assignee": {"id": 15}, "organization": {"id": 912}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"id": 335, "owner": {"id": 405}, "assignee": {"id": 503}, "organization": {"id": 614}, "project": {"owner": {"id": 47}, "assignee": {"id": 845}, "organization": {"id": 913}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 543}, "organization": {"id": 133}, "project": {"owner": {"id": 775}, "assignee": {"id": 65}, "organization": {"id": 994}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 237}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 414}, "assignee": {"id": 589}, "organization": {"id": 141}, "project": {"owner": {"id": 83}, "assignee": {"id": 888}, "organization": {"id": 991}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 570}, "organization": {"id": 184}, "project": {"owner": {"id": 770}, "assignee": {"id": 39}, "organization": {"id": 975}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 430}, "assignee": {"id": 536}, "organization": {"id": 628}, "project": {"owner": {"id": 36}, "assignee": {"id": 840}, "organization": {"id": 908}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 581}, "organization": {"id": 661}, "project": {"owner": {"id": 720}, "assignee": {"id": 86}, "organization": {"id": 908}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 407}, "assignee": {"id": 574}, "organization": {"id": 179}, "project": {"owner": {"id": 798}, "assignee": {"id": 0}, "organization": {"id": 909}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 525}, "organization": {"id": 674}, "project": {"owner": {"id": 722}, "assignee": {"id": 36}, "organization": {"id": 981}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 349, "owner": {"id": 421}, "assignee": {"id": 567}, "organization": {"id": 635}, "project": {"owner": {"id": 714}, "assignee": {"id": 0}, "organization": {"id": 980}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 492}, "assignee": {"id": 591}, "organization": {"id": 668}, "project": {"owner": {"id": 726}, "assignee": {"id": 86}, "organization": {"id": 959}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 429}, "assignee": {"id": 581}, "organization": {"id": 140}, "project": {"owner": {"id": 734}, "assignee": {"id": 17}, "organization": {"id": 904}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 536}, "organization": {"id": 180}, "project": {"owner": {"id": 718}, "assignee": {"id": 31}, "organization": {"id": 958}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 379, "owner": {"id": 403}, "assignee": {"id": 544}, "organization": {"id": 636}, "project": {"owner": {"id": 770}, "assignee": {"id": 6}, "organization": {"id": 951}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 585}, "organization": {"id": 189}, "project": {"owner": {"id": 785}, "assignee": {"id": 64}, "organization": {"id": 967}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 103, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"id": 338, "owner": {"id": 492}, "assignee": {"id": 582}, "organization": {"id": 103}, "project": {"owner": {"id": 748}, "assignee": {"id": 47}, "organization": {"id": 946}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 566}, "organization": {"id": 131}, "project": {"owner": {"id": 718}, "assignee": {"id": 94}, "organization": {"id": 901}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 181, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"id": 378, "owner": {"id": 438}, "assignee": {"id": 515}, "organization": {"id": 682}, "project": {"owner": {"id": 759}, "assignee": {"id": 78}, "organization": {"id": 947}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 531}, "organization": {"id": 619}, "project": {"owner": {"id": 725}, "assignee": {"id": 73}, "organization": {"id": 910}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 373, "owner": {"id": 446}, "assignee": {"id": 508}, "organization": {"id": 176}, "project": {"owner": {"id": 761}, "assignee": {"id": 65}, "organization": {"id": 926}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 411}, "assignee": {"id": 536}, "organization": {"id": 658}, "project": {"owner": {"id": 796}, "assignee": {"id": 91}, "organization": {"id": 958}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 103, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 335, "owner": {"id": 415}, "assignee": {"id": 590}, "organization": {"id": 637}, "project": {"owner": {"id": 716}, "assignee": {"id": 44}, "organization": {"id": 977}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 533}, "organization": {"id": 674}, "project": {"owner": {"id": 706}, "assignee": {"id": 90}, "organization": {"id": 916}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 309, "owner": {"id": 437}, "assignee": {"id": 599}, "organization": {"id": 134}, "project": {"owner": {"id": 788}, "assignee": {"id": 74}, "organization": {"id": 977}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 560}, "organization": {"id": 184}, "project": {"owner": {"id": 756}, "assignee": {"id": 15}, "organization": {"id": 908}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 76, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 345, "owner": {"id": 458}, "assignee": {"id": 581}, "organization": {"id": 631}, "project": {"owner": {"id": 765}, "assignee": {"id": 76}, "organization": {"id": 911}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 584}, "organization": {"id": 144}, "project": {"owner": {"id": 715}, "assignee": {"id": 44}, "organization": {"id": 966}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 482}, "assignee": {"id": 595}, "organization": {"id": 186}, "project": {"owner": {"id": 731}, "assignee": {"id": 50}, "organization": {"id": 937}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 544}, "organization": {"id": 126}, "project": {"owner": {"id": 702}, "assignee": {"id": 74}, "organization": {"id": 996}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 311, "owner": {"id": 427}, "assignee": {"id": 545}, "organization": {"id": 699}, "project": {"owner": {"id": 784}, "assignee": {"id": 51}, "organization": {"id": 988}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 565}, "organization": {"id": 614}, "project": {"owner": {"id": 753}, "assignee": {"id": 67}, "organization": {"id": 976}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"id": 329, "owner": {"id": 473}, "assignee": {"id": 555}, "organization": {"id": 167}, "project": {"owner": {"id": 708}, "assignee": {"id": 21}, "organization": {"id": 907}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 520}, "organization": {"id": 668}, "project": {"owner": {"id": 756}, "assignee": {"id": 75}, "organization": {"id": 902}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 451}, "assignee": {"id": 534}, "organization": {"id": 650}, "project": {"owner": {"id": 756}, "assignee": {"id": 28}, "organization": {"id": 971}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 440}, "assignee": {"id": 575}, "organization": {"id": 651}, "project": {"owner": {"id": 783}, "assignee": {"id": 57}, "organization": {"id": 935}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"id": 314, "owner": {"id": 452}, "assignee": {"id": 545}, "organization": {"id": 150}, "project": {"owner": {"id": 755}, "assignee": {"id": 66}, "organization": {"id": 982}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 589}, "organization": {"id": 134}, "project": {"owner": {"id": 720}, "assignee": {"id": 61}, "organization": {"id": 911}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 316, "owner": {"id": 462}, "assignee": {"id": 590}, "organization": {"id": 688}, "project": {"owner": {"id": 747}, "assignee": {"id": 0}, "organization": {"id": 957}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 519}, "organization": {"id": 143}, "project": {"owner": {"id": 758}, "assignee": {"id": 95}, "organization": {"id": 987}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 130, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 373, "owner": {"id": 499}, "assignee": {"id": 517}, "organization": {"id": 130}, "project": {"owner": {"id": 754}, "assignee": {"id": 40}, "organization": {"id": 924}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"owner": {"id": 466}, "assignee": {"id": 559}, "organization": {"id": 126}, "project": {"owner": {"id": 708}, "assignee": {"id": 77}, "organization": {"id": 974}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 401}, "assignee": {"id": 537}, "organization": {"id": 601}, "project": {"owner": {"id": 785}, "assignee": {"id": 82}, "organization": {"id": 914}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 574}, "organization": {"id": 694}, "project": {"owner": {"id": 750}, "assignee": {"id": 84}, "organization": {"id": 943}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"id": 369, "owner": {"id": 470}, "assignee": {"id": 534}, "organization": {"id": 185}, "project": {"owner": {"id": 745}, "assignee": {"id": 99}, "organization": {"id": 910}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 266}, "user": {"role": null}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 504}, "organization": {"id": 674}, "project": {"owner": {"id": 731}, "assignee": {"id": 33}, "organization": {"id": 939}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"id": 334, "owner": {"id": 491}, "assignee": {"id": 583}, "organization": {"id": 684}, "project": {"owner": {"id": 706}, "assignee": {"id": 34}, "organization": {"id": 946}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 243}, "user": {"role": null}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 525}, "organization": {"id": 613}, "project": {"owner": {"id": 720}, "assignee": {"id": 5}, "organization": {"id": 965}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"id": 301, "owner": {"id": 471}, "assignee": {"id": 549}, "organization": {"id": 142}, "project": {"owner": {"id": 763}, "assignee": {"id": 42}, "organization": {"id": 924}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 480}, "assignee": {"id": 525}, "organization": {"id": 197}, "project": {"owner": {"id": 715}, "assignee": {"id": 9}, "organization": {"id": 911}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 481}, "assignee": {"id": 572}, "organization": {"id": 616}, "project": {"owner": {"id": 737}, "assignee": {"id": 63}, "organization": {"id": 978}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 575}, "organization": {"id": 165}, "project": {"owner": {"id": 725}, "assignee": {"id": 70}, "organization": {"id": 913}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 451}, "assignee": {"id": 522}, "organization": {"id": 179}, "project": {"owner": {"id": 780}, "assignee": {"id": 77}, "organization": {"id": 941}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 76}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 565}, "organization": {"id": 125}, "project": {"owner": {"id": 789}, "assignee": {"id": 76}, "organization": {"id": 911}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 435}, "assignee": {"id": 518}, "organization": {"id": 660}, "project": {"owner": {"id": 706}, "assignee": {"id": 12}, "organization": {"id": 974}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 477}, "assignee": {"id": 594}, "organization": {"id": 674}, "project": {"owner": {"id": 788}, "assignee": {"id": 82}, "organization": {"id": 976}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 301, "owner": {"id": 436}, "assignee": {"id": 549}, "organization": {"id": 121}, "project": {"owner": {"id": 776}, "assignee": {"id": 0}, "organization": {"id": 956}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 534}, "organization": {"id": 668}, "project": {"owner": {"id": 710}, "assignee": {"id": 1}, "organization": {"id": 988}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 398, "owner": {"id": 436}, "assignee": {"id": 524}, "organization": {"id": 639}, "project": {"owner": {"id": 772}, "assignee": {"id": 44}, "organization": {"id": 960}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 190, "owner": {"id": 15}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 542}, "organization": {"id": 661}, "project": {"owner": {"id": 772}, "assignee": {"id": 15}, "organization": {"id": 941}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"id": 361, "owner": {"id": 479}, "assignee": {"id": 525}, "organization": {"id": 111}, "project": {"owner": {"id": 768}, "assignee": {"id": 60}, "organization": {"id": 963}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 427}, "assignee": {"id": 532}, "organization": {"id": 192}, "project": {"owner": {"id": 786}, "assignee": {"id": 42}, "organization": {"id": 909}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 463}, "assignee": {"id": 592}, "organization": {"id": 662}, "project": {"owner": {"id": 769}, "assignee": {"id": 73}, "organization": {"id": 999}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 407}, "assignee": {"id": 549}, "organization": {"id": 127}, "project": {"owner": {"id": 727}, "assignee": {"id": 53}, "organization": {"id": 958}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 382, "owner": {"id": 437}, "assignee": {"id": 517}, "organization": {"id": 180}, "project": {"owner": {"id": 792}, "assignee": {"id": 72}, "organization": {"id": 967}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 463}, "assignee": {"id": 565}, "organization": {"id": 121}, "project": {"owner": {"id": 745}, "assignee": {"id": 28}, "organization": {"id": 951}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 128, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 363, "owner": {"id": 460}, "assignee": {"id": 584}, "organization": {"id": 690}, "project": {"owner": {"id": 725}, "assignee": {"id": 5}, "organization": {"id": 959}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 562}, "organization": {"id": 671}, "project": {"owner": {"id": 750}, "assignee": {"id": 83}, "organization": {"id": 985}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 96, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 459}, "assignee": {"id": 513}, "organization": {"id": 175}, "project": {"owner": {"id": 708}, "assignee": {"id": 96}, "organization": {"id": 984}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 156, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 575}, "organization": {"id": 617}, "project": {"owner": {"id": 700}, "assignee": {"id": 84}, "organization": {"id": 986}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 21, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 379, "owner": {"id": 459}, "assignee": {"id": 542}, "organization": {"id": 650}, "project": {"owner": {"id": 732}, "assignee": {"id": 21}, "organization": {"id": 937}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 281}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 577}, "organization": {"id": 669}, "project": {"owner": {"id": 736}, "assignee": {"id": 42}, "organization": {"id": 942}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 424}, "assignee": {"id": 598}, "organization": {"id": 114}, "project": {"owner": {"id": 784}, "assignee": {"id": 24}, "organization": {"id": 966}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 529}, "organization": {"id": 163}, "project": {"owner": {"id": 752}, "assignee": {"id": 11}, "organization": {"id": 931}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 367, "owner": {"id": 469}, "assignee": {"id": 535}, "organization": {"id": 636}, "project": {"owner": {"id": 771}, "assignee": {"id": 68}, "organization": {"id": 962}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 483}, "assignee": {"id": 560}, "organization": {"id": 153}, "project": {"owner": {"id": 724}, "assignee": {"id": 99}, "organization": {"id": 918}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 238}, "user": {"role": "supervisor"}}}, "resource": {"id": 308, "owner": {"id": 464}, "assignee": {"id": 509}, "organization": {"id": 166}, "project": {"owner": {"id": 734}, "assignee": {"id": 73}, "organization": {"id": 956}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 505}, "organization": {"id": 161}, "project": {"owner": {"id": 774}, "assignee": {"id": 40}, "organization": {"id": 993}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 366, "owner": {"id": 464}, "assignee": {"id": 514}, "organization": {"id": 601}, "project": {"owner": {"id": 706}, "assignee": {"id": 27}, "organization": {"id": 936}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 588}, "organization": {"id": 651}, "project": {"owner": {"id": 702}, "assignee": {"id": 37}, "organization": {"id": 929}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"id": 356, "owner": {"id": 448}, "assignee": {"id": 556}, "organization": {"id": 168}, "project": {"owner": {"id": 797}, "assignee": {"id": 15}, "organization": {"id": 926}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 528}, "organization": {"id": 676}, "project": {"owner": {"id": 796}, "assignee": {"id": 84}, "organization": {"id": 982}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"id": 397, "owner": {"id": 490}, "assignee": {"id": 500}, "organization": {"id": 619}, "project": {"owner": {"id": 754}, "assignee": {"id": 1}, "organization": {"id": 978}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 249}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 477}, "assignee": {"id": 587}, "organization": {"id": 627}, "project": {"owner": {"id": 799}, "assignee": {"id": 54}, "organization": {"id": 915}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 484}, "assignee": {"id": 582}, "organization": {"id": 148}, "project": {"owner": {"id": 729}, "assignee": {"id": 74}, "organization": {"id": 974}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 518}, "organization": {"id": 170}, "project": {"owner": {"id": 776}, "assignee": {"id": 52}, "organization": {"id": 990}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 444}, "assignee": {"id": 510}, "organization": {"id": 610}, "project": {"owner": {"id": 735}, "assignee": {"id": 0}, "organization": {"id": 969}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 462}, "assignee": {"id": 509}, "organization": {"id": 193}, "project": {"owner": {"id": 779}, "assignee": {"id": 22}, "organization": {"id": 912}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 321, "owner": {"id": 497}, "assignee": {"id": 545}, "organization": {"id": 157}, "project": {"owner": {"id": 799}, "assignee": {"id": 70}, "organization": {"id": 934}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 547}, "organization": {"id": 126}, "project": {"owner": {"id": 766}, "assignee": {"id": 73}, "organization": {"id": 901}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 361, "owner": {"id": 426}, "assignee": {"id": 534}, "organization": {"id": 687}, "project": {"owner": {"id": 783}, "assignee": {"id": 97}, "organization": {"id": 956}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 532}, "organization": {"id": 688}, "project": {"owner": {"id": 785}, "assignee": {"id": 40}, "organization": {"id": 961}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 478}, "assignee": {"id": 544}, "organization": {"id": 106}, "project": {"owner": {"id": 710}, "assignee": {"id": 55}, "organization": {"id": 950}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 63, "privilege": "none"}, "organization": {"id": 116, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 587}, "organization": {"id": 635}, "project": {"owner": {"id": 762}, "assignee": {"id": 63}, "organization": {"id": 960}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"id": 383, "owner": {"id": 414}, "assignee": {"id": 508}, "organization": {"id": 681}, "project": {"owner": {"id": 740}, "assignee": {"id": 21}, "organization": {"id": 985}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 217}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 594}, "organization": {"id": 697}, "project": {"owner": {"id": 756}, "assignee": {"id": 89}, "organization": {"id": 928}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 310, "owner": {"id": 464}, "assignee": {"id": 518}, "organization": {"id": 117}, "project": {"owner": {"id": 787}, "assignee": {"id": 43}, "organization": {"id": 937}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"owner": {"id": 410}, "assignee": {"id": 538}, "organization": {"id": 194}, "project": {"owner": {"id": 736}, "assignee": {"id": 55}, "organization": {"id": 979}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 361, "owner": {"id": 433}, "assignee": {"id": 586}, "organization": {"id": 680}, "project": {"owner": {"id": 768}, "assignee": {"id": 70}, "organization": {"id": 921}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 594}, "organization": {"id": 147}, "project": {"owner": {"id": 776}, "assignee": {"id": 11}, "organization": {"id": 997}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 492}, "assignee": {"id": 520}, "organization": {"id": 135}, "project": {"owner": {"id": 788}, "assignee": {"id": 40}, "organization": {"id": 922}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 176, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"owner": {"id": 460}, "assignee": {"id": 545}, "organization": {"id": 176}, "project": {"owner": {"id": 702}, "assignee": {"id": 94}, "organization": {"id": 910}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 309, "owner": {"id": 455}, "assignee": {"id": 518}, "organization": {"id": 623}, "project": {"owner": {"id": 770}, "assignee": {"id": 81}, "organization": {"id": 909}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 249}, "user": {"role": null}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 539}, "organization": {"id": 651}, "project": {"owner": {"id": 710}, "assignee": {"id": 58}, "organization": {"id": 961}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 461}, "assignee": {"id": 589}, "organization": {"id": 136}, "project": {"owner": {"id": 704}, "assignee": {"id": 83}, "organization": {"id": 933}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"owner": {"id": 477}, "assignee": {"id": 564}, "organization": {"id": 608}, "project": {"owner": {"id": 759}, "assignee": {"id": 26}, "organization": {"id": 984}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"id": 360, "owner": {"id": 486}, "assignee": {"id": 574}, "organization": {"id": 674}, "project": {"owner": {"id": 760}, "assignee": {"id": 12}, "organization": {"id": 946}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 204}, "user": {"role": null}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 537}, "organization": {"id": 600}, "project": {"owner": {"id": 701}, "assignee": {"id": 14}, "organization": {"id": 942}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 88}, "assignee": {"id": 543}, "organization": {"id": 131}, "project": {"owner": {"id": 753}, "assignee": {"id": 803}, "organization": {"id": 962}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 491}, "assignee": {"id": 583}, "organization": {"id": 138}, "project": {"owner": {"id": 700}, "assignee": {"id": 866}, "organization": {"id": 921}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 382, "owner": {"id": 3}, "assignee": {"id": 573}, "organization": {"id": 643}, "project": {"owner": {"id": 758}, "assignee": {"id": 831}, "organization": {"id": 976}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 444}, "assignee": {"id": 589}, "organization": {"id": 144}, "project": {"owner": {"id": 748}, "assignee": {"id": 824}, "organization": {"id": 932}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"id": 355, "owner": {"id": 92}, "assignee": {"id": 533}, "organization": {"id": 154}, "project": {"owner": {"id": 744}, "assignee": {"id": 851}, "organization": {"id": 955}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 485}, "assignee": {"id": 522}, "organization": {"id": 135}, "project": {"owner": {"id": 757}, "assignee": {"id": 822}, "organization": {"id": 919}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 91}, "assignee": {"id": 543}, "organization": {"id": 603}, "project": {"owner": {"id": 782}, "assignee": {"id": 840}, "organization": {"id": 982}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 14}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 442}, "assignee": {"id": 502}, "organization": {"id": 606}, "project": {"owner": {"id": 777}, "assignee": {"id": 876}, "organization": {"id": 912}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 7, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 7}, "assignee": {"id": 515}, "organization": {"id": 180}, "project": {"owner": {"id": 707}, "assignee": {"id": 802}, "organization": {"id": 935}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 425}, "assignee": {"id": 555}, "organization": {"id": 682}, "project": {"owner": {"id": 736}, "assignee": {"id": 802}, "organization": {"id": 954}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"id": 369, "owner": {"id": 44}, "assignee": {"id": 543}, "organization": {"id": 620}, "project": {"owner": {"id": 721}, "assignee": {"id": 896}, "organization": {"id": 966}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 512}, "organization": {"id": 663}, "project": {"owner": {"id": 760}, "assignee": {"id": 850}, "organization": {"id": 992}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 391, "owner": {"id": 32}, "assignee": {"id": 585}, "organization": {"id": 139}, "project": {"owner": {"id": 722}, "assignee": {"id": 830}, "organization": {"id": 967}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 181, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 558}, "organization": {"id": 181}, "project": {"owner": {"id": 769}, "assignee": {"id": 888}, "organization": {"id": 940}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 281}, "user": {"role": "worker"}}}, "resource": {"id": 332, "owner": {"id": 97}, "assignee": {"id": 598}, "organization": {"id": 657}, "project": {"owner": {"id": 703}, "assignee": {"id": 816}, "organization": {"id": 927}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 559}, "organization": {"id": 122}, "project": {"owner": {"id": 728}, "assignee": {"id": 874}, "organization": {"id": 989}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"id": 398, "owner": {"id": 9}, "assignee": {"id": 517}, "organization": {"id": 100}, "project": {"owner": {"id": 711}, "assignee": {"id": 814}, "organization": {"id": 991}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 456}, "assignee": {"id": 514}, "organization": {"id": 112}, "project": {"owner": {"id": 781}, "assignee": {"id": 813}, "organization": {"id": 920}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 55}, "assignee": {"id": 539}, "organization": {"id": 623}, "project": {"owner": {"id": 788}, "assignee": {"id": 844}, "organization": {"id": 953}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 525}, "organization": {"id": 697}, "project": {"owner": {"id": 763}, "assignee": {"id": 884}, "organization": {"id": 968}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"id": 334, "owner": {"id": 50}, "assignee": {"id": 503}, "organization": {"id": 107}, "project": {"owner": {"id": 798}, "assignee": {"id": 849}, "organization": {"id": 997}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 555}, "organization": {"id": 625}, "project": {"owner": {"id": 755}, "assignee": {"id": 886}, "organization": {"id": 992}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"id": 347, "owner": {"id": 47}, "assignee": {"id": 536}, "organization": {"id": 627}, "project": {"owner": {"id": 796}, "assignee": {"id": 818}, "organization": {"id": 944}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 419}, "assignee": {"id": 566}, "organization": {"id": 629}, "project": {"owner": {"id": 740}, "assignee": {"id": 896}, "organization": {"id": 964}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 361, "owner": {"id": 55}, "assignee": {"id": 558}, "organization": {"id": 154}, "project": {"owner": {"id": 728}, "assignee": {"id": 888}, "organization": {"id": 913}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 480}, "assignee": {"id": 550}, "organization": {"id": 140}, "project": {"owner": {"id": 771}, "assignee": {"id": 839}, "organization": {"id": 928}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 39}, "assignee": {"id": 578}, "organization": {"id": 635}, "project": {"owner": {"id": 756}, "assignee": {"id": 811}, "organization": {"id": 948}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 430}, "assignee": {"id": 526}, "organization": {"id": 129}, "project": {"owner": {"id": 727}, "assignee": {"id": 825}, "organization": {"id": 927}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 31}, "assignee": {"id": 532}, "organization": {"id": 192}, "project": {"owner": {"id": 754}, "assignee": {"id": 857}, "organization": {"id": 903}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 577}, "organization": {"id": 187}, "project": {"owner": {"id": 794}, "assignee": {"id": 864}, "organization": {"id": 933}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 79}, "assignee": {"id": 514}, "organization": {"id": 669}, "project": {"owner": {"id": 754}, "assignee": {"id": 898}, "organization": {"id": 965}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 460}, "assignee": {"id": 582}, "organization": {"id": 652}, "project": {"owner": {"id": 761}, "assignee": {"id": 812}, "organization": {"id": 993}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 397, "owner": {"id": 9}, "assignee": {"id": 559}, "organization": {"id": 154}, "project": {"owner": {"id": 719}, "assignee": {"id": 890}, "organization": {"id": 967}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 550}, "organization": {"id": 664}, "project": {"owner": {"id": 750}, "assignee": {"id": 814}, "organization": {"id": 940}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"id": 309, "owner": {"id": 89}, "assignee": {"id": 597}, "organization": {"id": 658}, "project": {"owner": {"id": 769}, "assignee": {"id": 817}, "organization": {"id": 911}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 404}, "assignee": {"id": 579}, "organization": {"id": 666}, "project": {"owner": {"id": 760}, "assignee": {"id": 815}, "organization": {"id": 969}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 55}, "assignee": {"id": 585}, "organization": {"id": 156}, "project": {"owner": {"id": 703}, "assignee": {"id": 832}, "organization": {"id": 979}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 466}, "assignee": {"id": 505}, "organization": {"id": 129}, "project": {"owner": {"id": 768}, "assignee": {"id": 891}, "organization": {"id": 970}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 81}, "assignee": {"id": 512}, "organization": {"id": 654}, "project": {"owner": {"id": 795}, "assignee": {"id": 857}, "organization": {"id": 932}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 518}, "organization": {"id": 110}, "project": {"owner": {"id": 766}, "assignee": {"id": 878}, "organization": {"id": 923}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"id": 300, "owner": {"id": 35}, "assignee": {"id": 593}, "organization": {"id": 190}, "project": {"owner": {"id": 755}, "assignee": {"id": 831}, "organization": {"id": 927}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 538}, "organization": {"id": 124}, "project": {"owner": {"id": 796}, "assignee": {"id": 898}, "organization": {"id": 991}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"id": 334, "owner": {"id": 75}, "assignee": {"id": 596}, "organization": {"id": 683}, "project": {"owner": {"id": 738}, "assignee": {"id": 804}, "organization": {"id": 913}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 418}, "assignee": {"id": 511}, "organization": {"id": 644}, "project": {"owner": {"id": 718}, "assignee": {"id": 882}, "organization": {"id": 906}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 163, "owner": {"id": 217}, "user": {"role": "maintainer"}}}, "resource": {"id": 332, "owner": {"id": 37}, "assignee": {"id": 597}, "organization": {"id": 163}, "project": {"owner": {"id": 773}, "assignee": {"id": 814}, "organization": {"id": 945}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 538}, "organization": {"id": 604}, "project": {"owner": {"id": 719}, "assignee": {"id": 849}, "organization": {"id": 902}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 78}, "assignee": {"id": 598}, "organization": {"id": 603}, "project": {"owner": {"id": 721}, "assignee": {"id": 888}, "organization": {"id": 967}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 552}, "organization": {"id": 619}, "project": {"owner": {"id": 770}, "assignee": {"id": 824}, "organization": {"id": 922}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 295}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 65}, "assignee": {"id": 532}, "organization": {"id": 132}, "project": {"owner": {"id": 702}, "assignee": {"id": 891}, "organization": {"id": 929}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 244}, "user": {"role": null}}}, "resource": {"owner": {"id": 424}, "assignee": {"id": 550}, "organization": {"id": 140}, "project": {"owner": {"id": 754}, "assignee": {"id": 899}, "organization": {"id": 979}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 20, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 366, "owner": {"id": 20}, "assignee": {"id": 586}, "organization": {"id": 610}, "project": {"owner": {"id": 720}, "assignee": {"id": 809}, "organization": {"id": 981}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 163, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 504}, "organization": {"id": 163}, "project": {"owner": {"id": 700}, "assignee": {"id": 871}, "organization": {"id": 914}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 245}, "user": {"role": "worker"}}}, "resource": {"id": 366, "owner": {"id": 25}, "assignee": {"id": 531}, "organization": {"id": 156}, "project": {"owner": {"id": 705}, "assignee": {"id": 857}, "organization": {"id": 949}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 544}, "organization": {"id": 115}, "project": {"owner": {"id": 778}, "assignee": {"id": 814}, "organization": {"id": 978}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 45, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 45}, "assignee": {"id": 579}, "organization": {"id": 684}, "project": {"owner": {"id": 736}, "assignee": {"id": 860}, "organization": {"id": 968}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 579}, "organization": {"id": 696}, "project": {"owner": {"id": 782}, "assignee": {"id": 875}, "organization": {"id": 947}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"id": 301, "owner": {"id": 49}, "assignee": {"id": 594}, "organization": {"id": 117}, "project": {"owner": {"id": 711}, "assignee": {"id": 899}, "organization": {"id": 981}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"owner": {"id": 468}, "assignee": {"id": 513}, "organization": {"id": 601}, "project": {"owner": {"id": 779}, "assignee": {"id": 891}, "organization": {"id": 966}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 51}, "assignee": {"id": 590}, "organization": {"id": 606}, "project": {"owner": {"id": 736}, "assignee": {"id": 848}, "organization": {"id": 974}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 223}, "user": {"role": null}}}, "resource": {"owner": {"id": 472}, "assignee": {"id": 554}, "organization": {"id": 690}, "project": {"owner": {"id": 789}, "assignee": {"id": 815}, "organization": {"id": 943}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"id": 345, "owner": {"id": 52}, "assignee": {"id": 585}, "organization": {"id": 176}, "project": {"owner": {"id": 715}, "assignee": {"id": 855}, "organization": {"id": 967}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 480}, "assignee": {"id": 535}, "organization": {"id": 192}, "project": {"owner": {"id": 713}, "assignee": {"id": 891}, "organization": {"id": 945}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 103, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"id": 349, "owner": {"id": 42}, "assignee": {"id": 549}, "organization": {"id": 665}, "project": {"owner": {"id": 728}, "assignee": {"id": 874}, "organization": {"id": 953}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 479}, "assignee": {"id": 582}, "organization": {"id": 154}, "project": {"owner": {"id": 711}, "assignee": {"id": 883}, "organization": {"id": 915}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 365, "owner": {"id": 32}, "assignee": {"id": 518}, "organization": {"id": 101}, "project": {"owner": {"id": 747}, "assignee": {"id": 842}, "organization": {"id": 928}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 535}, "organization": {"id": 105}, "project": {"owner": {"id": 702}, "assignee": {"id": 804}, "organization": {"id": 951}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 50}, "assignee": {"id": 509}, "organization": {"id": 678}, "project": {"owner": {"id": 725}, "assignee": {"id": 811}, "organization": {"id": 962}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 513}, "organization": {"id": 602}, "project": {"owner": {"id": 784}, "assignee": {"id": 816}, "organization": {"id": 923}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 293}, "user": {"role": "supervisor"}}}, "resource": {"id": 378, "owner": {"id": 65}, "assignee": {"id": 568}, "organization": {"id": 182}, "project": {"owner": {"id": 791}, "assignee": {"id": 835}, "organization": {"id": 932}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 489}, "assignee": {"id": 579}, "organization": {"id": 636}, "project": {"owner": {"id": 745}, "assignee": {"id": 842}, "organization": {"id": 942}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 303, "owner": {"id": 56}, "assignee": {"id": 599}, "organization": {"id": 639}, "project": {"owner": {"id": 748}, "assignee": {"id": 833}, "organization": {"id": 973}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 560}, "organization": {"id": 629}, "project": {"owner": {"id": 705}, "assignee": {"id": 843}, "organization": {"id": 976}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 30, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 30}, "assignee": {"id": 529}, "organization": {"id": 125}, "project": {"owner": {"id": 702}, "assignee": {"id": 877}, "organization": {"id": 968}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 554}, "organization": {"id": 119}, "project": {"owner": {"id": 790}, "assignee": {"id": 820}, "organization": {"id": 940}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 135, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 381, "owner": {"id": 19}, "assignee": {"id": 582}, "organization": {"id": 633}, "project": {"owner": {"id": 700}, "assignee": {"id": 857}, "organization": {"id": 955}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 469}, "assignee": {"id": 510}, "organization": {"id": 167}, "project": {"owner": {"id": 731}, "assignee": {"id": 892}, "organization": {"id": 937}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 135, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"id": 386, "owner": {"id": 60}, "assignee": {"id": 512}, "organization": {"id": 135}, "project": {"owner": {"id": 743}, "assignee": {"id": 852}, "organization": {"id": 982}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 587}, "organization": {"id": 110}, "project": {"owner": {"id": 769}, "assignee": {"id": 844}, "organization": {"id": 901}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 366, "owner": {"id": 31}, "assignee": {"id": 571}, "organization": {"id": 613}, "project": {"owner": {"id": 759}, "assignee": {"id": 899}, "organization": {"id": 950}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 267}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 423}, "assignee": {"id": 543}, "organization": {"id": 616}, "project": {"owner": {"id": 751}, "assignee": {"id": 893}, "organization": {"id": 951}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 9}, "assignee": {"id": 530}, "organization": {"id": 194}, "project": {"owner": {"id": 715}, "assignee": {"id": 872}, "organization": {"id": 934}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 528}, "organization": {"id": 641}, "project": {"owner": {"id": 767}, "assignee": {"id": 817}, "organization": {"id": 906}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 375, "owner": {"id": 51}, "assignee": {"id": 596}, "organization": {"id": 690}, "project": {"owner": {"id": 758}, "assignee": {"id": 817}, "organization": {"id": 922}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 457}, "assignee": {"id": 575}, "organization": {"id": 600}, "project": {"owner": {"id": 798}, "assignee": {"id": 887}, "organization": {"id": 988}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"id": 333, "owner": {"id": 33}, "assignee": {"id": 515}, "organization": {"id": 173}, "project": {"owner": {"id": 728}, "assignee": {"id": 825}, "organization": {"id": 992}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 71, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 502}, "organization": {"id": 198}, "project": {"owner": {"id": 755}, "assignee": {"id": 860}, "organization": {"id": 911}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"id": 362, "owner": {"id": 45}, "assignee": {"id": 505}, "organization": {"id": 678}, "project": {"owner": {"id": 775}, "assignee": {"id": 876}, "organization": {"id": 981}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 477}, "assignee": {"id": 505}, "organization": {"id": 167}, "project": {"owner": {"id": 790}, "assignee": {"id": 809}, "organization": {"id": 954}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 96}, "assignee": {"id": 503}, "organization": {"id": 184}, "project": {"owner": {"id": 719}, "assignee": {"id": 829}, "organization": {"id": 972}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 464}, "assignee": {"id": 580}, "organization": {"id": 102}, "project": {"owner": {"id": 770}, "assignee": {"id": 863}, "organization": {"id": 910}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 190, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"id": 393, "owner": {"id": 92}, "assignee": {"id": 594}, "organization": {"id": 622}, "project": {"owner": {"id": 719}, "assignee": {"id": 832}, "organization": {"id": 923}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 476}, "assignee": {"id": 589}, "organization": {"id": 669}, "project": {"owner": {"id": 724}, "assignee": {"id": 856}, "organization": {"id": 990}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 245}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 82}, "assignee": {"id": 570}, "organization": {"id": 167}, "project": {"owner": {"id": 750}, "assignee": {"id": 873}, "organization": {"id": 920}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 531}, "organization": {"id": 639}, "project": {"owner": {"id": 709}, "assignee": {"id": 825}, "organization": {"id": 914}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 36}, "assignee": {"id": 572}, "organization": {"id": 671}, "project": {"owner": {"id": 716}, "assignee": {"id": 803}, "organization": {"id": 994}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 174, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 406}, "assignee": {"id": 504}, "organization": {"id": 624}, "project": {"owner": {"id": 774}, "assignee": {"id": 889}, "organization": {"id": 905}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 264}, "user": {"role": null}}}, "resource": {"id": 395, "owner": {"id": 91}, "assignee": {"id": 506}, "organization": {"id": 112}, "project": {"owner": {"id": 758}, "assignee": {"id": 840}, "organization": {"id": 945}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 534}, "organization": {"id": 104}, "project": {"owner": {"id": 721}, "assignee": {"id": 828}, "organization": {"id": 982}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"id": 378, "owner": {"id": 0}, "assignee": {"id": 533}, "organization": {"id": 645}, "project": {"owner": {"id": 728}, "assignee": {"id": 823}, "organization": {"id": 902}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 455}, "assignee": {"id": 589}, "organization": {"id": 145}, "project": {"owner": {"id": 786}, "assignee": {"id": 887}, "organization": {"id": 928}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 95}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 429}, "assignee": {"id": 95}, "organization": {"id": 184}, "project": {"owner": {"id": 725}, "assignee": {"id": 862}, "organization": {"id": 981}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 558}, "organization": {"id": 134}, "project": {"owner": {"id": 766}, "assignee": {"id": 808}, "organization": {"id": 931}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 353, "owner": {"id": 478}, "assignee": {"id": 0}, "organization": {"id": 653}, "project": {"owner": {"id": 768}, "assignee": {"id": 841}, "organization": {"id": 985}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 175, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 416}, "assignee": {"id": 502}, "organization": {"id": 653}, "project": {"owner": {"id": 746}, "assignee": {"id": 863}, "organization": {"id": 979}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 160, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 446}, "assignee": {"id": 40}, "organization": {"id": 160}, "project": {"owner": {"id": 765}, "assignee": {"id": 859}, "organization": {"id": 946}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 551}, "organization": {"id": 670}, "project": {"owner": {"id": 778}, "assignee": {"id": 847}, "organization": {"id": 903}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 197, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 414}, "assignee": {"id": 26}, "organization": {"id": 658}, "project": {"owner": {"id": 714}, "assignee": {"id": 816}, "organization": {"id": 948}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 441}, "assignee": {"id": 524}, "organization": {"id": 636}, "project": {"owner": {"id": 731}, "assignee": {"id": 856}, "organization": {"id": 986}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 434}, "assignee": {"id": 41}, "organization": {"id": 110}, "project": {"owner": {"id": 752}, "assignee": {"id": 870}, "organization": {"id": 900}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": {"id": 196, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 507}, "organization": {"id": 196}, "project": {"owner": {"id": 702}, "assignee": {"id": 847}, "organization": {"id": 999}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 71, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"id": 387, "owner": {"id": 463}, "assignee": {"id": 71}, "organization": {"id": 696}, "project": {"owner": {"id": 758}, "assignee": {"id": 825}, "organization": {"id": 954}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 591}, "organization": {"id": 184}, "project": {"owner": {"id": 780}, "assignee": {"id": 846}, "organization": {"id": 984}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"id": 370, "owner": {"id": 438}, "assignee": {"id": 77}, "organization": {"id": 120}, "project": {"owner": {"id": 789}, "assignee": {"id": 860}, "organization": {"id": 966}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"owner": {"id": 434}, "assignee": {"id": 550}, "organization": {"id": 105}, "project": {"owner": {"id": 748}, "assignee": {"id": 817}, "organization": {"id": 911}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 189, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 491}, "assignee": {"id": 94}, "organization": {"id": 609}, "project": {"owner": {"id": 797}, "assignee": {"id": 832}, "organization": {"id": 950}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"owner": {"id": 475}, "assignee": {"id": 553}, "organization": {"id": 670}, "project": {"owner": {"id": 706}, "assignee": {"id": 850}, "organization": {"id": 922}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 90, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"id": 381, "owner": {"id": 490}, "assignee": {"id": 90}, "organization": {"id": 143}, "project": {"owner": {"id": 752}, "assignee": {"id": 869}, "organization": {"id": 930}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 515}, "organization": {"id": 634}, "project": {"owner": {"id": 750}, "assignee": {"id": 856}, "organization": {"id": 941}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 237}, "user": {"role": null}}}, "resource": {"id": 356, "owner": {"id": 421}, "assignee": {"id": 88}, "organization": {"id": 697}, "project": {"owner": {"id": 727}, "assignee": {"id": 849}, "organization": {"id": 902}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"owner": {"id": 426}, "assignee": {"id": 576}, "organization": {"id": 619}, "project": {"owner": {"id": 727}, "assignee": {"id": 879}, "organization": {"id": 986}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 46, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"id": 316, "owner": {"id": 441}, "assignee": {"id": 46}, "organization": {"id": 125}, "project": {"owner": {"id": 794}, "assignee": {"id": 815}, "organization": {"id": 945}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 413}, "assignee": {"id": 516}, "organization": {"id": 170}, "project": {"owner": {"id": 790}, "assignee": {"id": 865}, "organization": {"id": 912}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 174, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"id": 334, "owner": {"id": 408}, "assignee": {"id": 61}, "organization": {"id": 610}, "project": {"owner": {"id": 759}, "assignee": {"id": 868}, "organization": {"id": 946}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 400}, "assignee": {"id": 508}, "organization": {"id": 112}, "project": {"owner": {"id": 794}, "assignee": {"id": 872}, "organization": {"id": 932}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 255}, "user": {"role": "maintainer"}}}, "resource": {"id": 367, "owner": {"id": 450}, "assignee": {"id": 25}, "organization": {"id": 146}, "project": {"owner": {"id": 734}, "assignee": {"id": 882}, "organization": {"id": 922}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 548}, "organization": {"id": 158}, "project": {"owner": {"id": 784}, "assignee": {"id": 846}, "organization": {"id": 993}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"id": 376, "owner": {"id": 451}, "assignee": {"id": 45}, "organization": {"id": 692}, "project": {"owner": {"id": 719}, "assignee": {"id": 852}, "organization": {"id": 968}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 513}, "organization": {"id": 649}, "project": {"owner": {"id": 709}, "assignee": {"id": 822}, "organization": {"id": 993}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"id": 385, "owner": {"id": 405}, "assignee": {"id": 86}, "organization": {"id": 171}, "project": {"owner": {"id": 790}, "assignee": {"id": 875}, "organization": {"id": 901}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 458}, "assignee": {"id": 562}, "organization": {"id": 609}, "project": {"owner": {"id": 759}, "assignee": {"id": 864}, "organization": {"id": 917}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"id": 373, "owner": {"id": 441}, "assignee": {"id": 63}, "organization": {"id": 696}, "project": {"owner": {"id": 701}, "assignee": {"id": 896}, "organization": {"id": 922}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 420}, "assignee": {"id": 570}, "organization": {"id": 624}, "project": {"owner": {"id": 759}, "assignee": {"id": 824}, "organization": {"id": 988}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"id": 374, "owner": {"id": 427}, "assignee": {"id": 98}, "organization": {"id": 128}, "project": {"owner": {"id": 766}, "assignee": {"id": 857}, "organization": {"id": 990}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 506}, "organization": {"id": 197}, "project": {"owner": {"id": 722}, "assignee": {"id": 823}, "organization": {"id": 974}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 429}, "assignee": {"id": 41}, "organization": {"id": 655}, "project": {"owner": {"id": 797}, "assignee": {"id": 866}, "organization": {"id": 951}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 597}, "organization": {"id": 117}, "project": {"owner": {"id": 761}, "assignee": {"id": 840}, "organization": {"id": 911}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 394, "owner": {"id": 474}, "assignee": {"id": 8}, "organization": {"id": 168}, "project": {"owner": {"id": 796}, "assignee": {"id": 813}, "organization": {"id": 999}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 526}, "organization": {"id": 120}, "project": {"owner": {"id": 700}, "assignee": {"id": 839}, "organization": {"id": 925}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"id": 386, "owner": {"id": 445}, "assignee": {"id": 10}, "organization": {"id": 660}, "project": {"owner": {"id": 723}, "assignee": {"id": 842}, "organization": {"id": 999}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 205}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 556}, "organization": {"id": 662}, "project": {"owner": {"id": 779}, "assignee": {"id": 899}, "organization": {"id": 938}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 163, "owner": {"id": 33}, "user": {"role": "owner"}}}, "resource": {"id": 309, "owner": {"id": 492}, "assignee": {"id": 33}, "organization": {"id": 163}, "project": {"owner": {"id": 762}, "assignee": {"id": 865}, "organization": {"id": 907}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 463}, "assignee": {"id": 598}, "organization": {"id": 632}, "project": {"owner": {"id": 771}, "assignee": {"id": 875}, "organization": {"id": 914}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 315, "owner": {"id": 405}, "assignee": {"id": 21}, "organization": {"id": 602}, "project": {"owner": {"id": 717}, "assignee": {"id": 845}, "organization": {"id": 932}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 473}, "assignee": {"id": 566}, "organization": {"id": 644}, "project": {"owner": {"id": 795}, "assignee": {"id": 824}, "organization": {"id": 981}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"id": 355, "owner": {"id": 425}, "assignee": {"id": 27}, "organization": {"id": 134}, "project": {"owner": {"id": 731}, "assignee": {"id": 850}, "organization": {"id": 969}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 428}, "assignee": {"id": 569}, "organization": {"id": 125}, "project": {"owner": {"id": 787}, "assignee": {"id": 871}, "organization": {"id": 902}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 314, "owner": {"id": 455}, "assignee": {"id": 86}, "organization": {"id": 698}, "project": {"owner": {"id": 712}, "assignee": {"id": 889}, "organization": {"id": 976}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { + allow with input as {"scope": "create@project", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 435}, "assignee": {"id": 539}, "organization": {"id": 100}, "project": {"owner": {"id": 744}, "assignee": {"id": 881}, "organization": {"id": 931}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"id": 309, "owner": {"id": 446}, "assignee": {"id": 44}, "organization": {"id": 144}, "project": {"owner": {"id": 731}, "assignee": {"id": 857}, "organization": {"id": 958}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 68, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 438}, "assignee": {"id": 513}, "organization": {"id": 196}, "project": {"owner": {"id": 731}, "assignee": {"id": 862}, "organization": {"id": 998}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 362, "owner": {"id": 493}, "assignee": {"id": 97}, "organization": {"id": 675}, "project": {"owner": {"id": 777}, "assignee": {"id": 846}, "organization": {"id": 989}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 460}, "assignee": {"id": 532}, "organization": {"id": 653}, "project": {"owner": {"id": 765}, "assignee": {"id": 882}, "organization": {"id": 990}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 342, "owner": {"id": 408}, "assignee": {"id": 28}, "organization": {"id": 152}, "project": {"owner": {"id": 772}, "assignee": {"id": 802}, "organization": {"id": 976}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 216}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 426}, "assignee": {"id": 566}, "organization": {"id": 679}, "project": {"owner": {"id": 784}, "assignee": {"id": 862}, "organization": {"id": 975}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 20, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 443}, "assignee": {"id": 20}, "organization": {"id": 633}, "project": {"owner": {"id": 716}, "assignee": {"id": 818}, "organization": {"id": 977}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 434}, "assignee": {"id": 563}, "organization": {"id": 606}, "project": {"owner": {"id": 744}, "assignee": {"id": 826}, "organization": {"id": 901}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 386, "owner": {"id": 426}, "assignee": {"id": 51}, "organization": {"id": 171}, "project": {"owner": {"id": 796}, "assignee": {"id": 826}, "organization": {"id": 969}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 530}, "organization": {"id": 147}, "project": {"owner": {"id": 711}, "assignee": {"id": 854}, "organization": {"id": 952}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"id": 319, "owner": {"id": 496}, "assignee": {"id": 25}, "organization": {"id": 662}, "project": {"owner": {"id": 773}, "assignee": {"id": 831}, "organization": {"id": 918}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 404}, "assignee": {"id": 513}, "organization": {"id": 161}, "project": {"owner": {"id": 770}, "assignee": {"id": 826}, "organization": {"id": 953}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 375, "owner": {"id": 481}, "assignee": {"id": 73}, "organization": {"id": 101}, "project": {"owner": {"id": 786}, "assignee": {"id": 875}, "organization": {"id": 996}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 582}, "organization": {"id": 108}, "project": {"owner": {"id": 753}, "assignee": {"id": 875}, "organization": {"id": 992}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 95}, "user": {"role": "owner"}}}, "resource": {"id": 343, "owner": {"id": 427}, "assignee": {"id": 95}, "organization": {"id": 623}, "project": {"owner": {"id": 709}, "assignee": {"id": 865}, "organization": {"id": 927}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 484}, "assignee": {"id": 574}, "organization": {"id": 689}, "project": {"owner": {"id": 764}, "assignee": {"id": 881}, "organization": {"id": 922}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"id": 397, "owner": {"id": 478}, "assignee": {"id": 56}, "organization": {"id": 147}, "project": {"owner": {"id": 773}, "assignee": {"id": 848}, "organization": {"id": 992}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 452}, "assignee": {"id": 510}, "organization": {"id": 689}, "project": {"owner": {"id": 759}, "assignee": {"id": 800}, "organization": {"id": 906}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 141, "owner": {"id": 290}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 464}, "assignee": {"id": 40}, "organization": {"id": 674}, "project": {"owner": {"id": 744}, "assignee": {"id": 858}, "organization": {"id": 946}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 565}, "organization": {"id": 614}, "project": {"owner": {"id": 761}, "assignee": {"id": 856}, "organization": {"id": 946}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 337, "owner": {"id": 439}, "assignee": {"id": 8}, "organization": {"id": 125}, "project": {"owner": {"id": 765}, "assignee": {"id": 817}, "organization": {"id": 934}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"owner": {"id": 450}, "assignee": {"id": 585}, "organization": {"id": 108}, "project": {"owner": {"id": 711}, "assignee": {"id": 886}, "organization": {"id": 909}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 434}, "assignee": {"id": 40}, "organization": {"id": 666}, "project": {"owner": {"id": 799}, "assignee": {"id": 824}, "organization": {"id": 977}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"owner": {"id": 486}, "assignee": {"id": 507}, "organization": {"id": 119}, "project": {"owner": {"id": 799}, "assignee": {"id": 896}, "organization": {"id": 944}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"id": 336, "owner": {"id": 455}, "assignee": {"id": 6}, "organization": {"id": 183}, "project": {"owner": {"id": 718}, "assignee": {"id": 808}, "organization": {"id": 901}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 519}, "organization": {"id": 169}, "project": {"owner": {"id": 768}, "assignee": {"id": 805}, "organization": {"id": 936}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 47, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 292}, "user": {"role": "worker"}}}, "resource": {"id": 391, "owner": {"id": 404}, "assignee": {"id": 47}, "organization": {"id": 679}, "project": {"owner": {"id": 719}, "assignee": {"id": 859}, "organization": {"id": 938}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"owner": {"id": 440}, "assignee": {"id": 591}, "organization": {"id": 601}, "project": {"owner": {"id": 769}, "assignee": {"id": 850}, "organization": {"id": 969}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 345, "owner": {"id": 436}, "assignee": {"id": 41}, "organization": {"id": 179}, "project": {"owner": {"id": 759}, "assignee": {"id": 864}, "organization": {"id": 993}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 110, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"owner": {"id": 449}, "assignee": {"id": 513}, "organization": {"id": 670}, "project": {"owner": {"id": 773}, "assignee": {"id": 881}, "organization": {"id": 917}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 168, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"id": 367, "owner": {"id": 481}, "assignee": {"id": 5}, "organization": {"id": 699}, "project": {"owner": {"id": 718}, "assignee": {"id": 818}, "organization": {"id": 997}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 225}, "user": {"role": null}}}, "resource": {"owner": {"id": 404}, "assignee": {"id": 530}, "organization": {"id": 611}, "project": {"owner": {"id": 756}, "assignee": {"id": 845}, "organization": {"id": 965}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 10}, "user": {"role": "owner"}}}, "resource": {"id": 328, "owner": {"id": 465}, "assignee": {"id": 10}, "organization": {"id": 180}, "project": {"owner": {"id": 722}, "assignee": {"id": 880}, "organization": {"id": 961}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 453}, "assignee": {"id": 518}, "organization": {"id": 163}, "project": {"owner": {"id": 706}, "assignee": {"id": 873}, "organization": {"id": 947}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 405}, "assignee": {"id": 81}, "organization": {"id": 699}, "project": {"owner": {"id": 738}, "assignee": {"id": 831}, "organization": {"id": 930}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 28}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 492}, "assignee": {"id": 595}, "organization": {"id": 137}, "project": {"owner": {"id": 748}, "assignee": {"id": 865}, "organization": {"id": 988}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 343, "owner": {"id": 424}, "assignee": {"id": 29}, "organization": {"id": 168}, "project": {"owner": {"id": 701}, "assignee": {"id": 859}, "organization": {"id": 974}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 490}, "assignee": {"id": 545}, "organization": {"id": 197}, "project": {"owner": {"id": 707}, "assignee": {"id": 874}, "organization": {"id": 957}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"id": 312, "owner": {"id": 464}, "assignee": {"id": 50}, "organization": {"id": 630}, "project": {"owner": {"id": 714}, "assignee": {"id": 820}, "organization": {"id": 980}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 72}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 520}, "organization": {"id": 658}, "project": {"owner": {"id": 786}, "assignee": {"id": 880}, "organization": {"id": 976}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 376, "owner": {"id": 420}, "assignee": {"id": 11}, "organization": {"id": 162}, "project": {"owner": {"id": 754}, "assignee": {"id": 806}, "organization": {"id": 933}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 488}, "assignee": {"id": 562}, "organization": {"id": 624}, "project": {"owner": {"id": 763}, "assignee": {"id": 847}, "organization": {"id": 997}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"id": 363, "owner": {"id": 412}, "assignee": {"id": 4}, "organization": {"id": 631}, "project": {"owner": {"id": 721}, "assignee": {"id": 899}, "organization": {"id": 949}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 465}, "assignee": {"id": 534}, "organization": {"id": 688}, "project": {"owner": {"id": 735}, "assignee": {"id": 826}, "organization": {"id": 903}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 132, "owner": {"id": 260}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 465}, "assignee": {"id": 78}, "organization": {"id": 132}, "project": {"owner": {"id": 776}, "assignee": {"id": 821}, "organization": {"id": 947}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 541}, "organization": {"id": 176}, "project": {"owner": {"id": 730}, "assignee": {"id": 855}, "organization": {"id": 915}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 214}, "user": {"role": "worker"}}}, "resource": {"id": 316, "owner": {"id": 428}, "assignee": {"id": 24}, "organization": {"id": 695}, "project": {"owner": {"id": 757}, "assignee": {"id": 862}, "organization": {"id": 969}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 428}, "assignee": {"id": 508}, "organization": {"id": 194}, "project": {"owner": {"id": 712}, "assignee": {"id": 890}, "organization": {"id": 977}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"id": 331, "owner": {"id": 463}, "assignee": {"id": 48}, "organization": {"id": 123}, "project": {"owner": {"id": 790}, "assignee": {"id": 869}, "organization": {"id": 912}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 541}, "organization": {"id": 197}, "project": {"owner": {"id": 778}, "assignee": {"id": 805}, "organization": {"id": 935}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 343, "owner": {"id": 432}, "assignee": {"id": 79}, "organization": {"id": 608}, "project": {"owner": {"id": 760}, "assignee": {"id": 888}, "organization": {"id": 922}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 278}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 404}, "assignee": {"id": 591}, "organization": {"id": 672}, "project": {"owner": {"id": 720}, "assignee": {"id": 802}, "organization": {"id": 985}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 419}, "assignee": {"id": 567}, "organization": {"id": 193}, "project": {"owner": {"id": 723}, "assignee": {"id": 825}, "organization": {"id": 945}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 555}, "organization": {"id": 681}, "project": {"owner": {"id": 795}, "assignee": {"id": 880}, "organization": {"id": 931}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 312, "owner": {"id": 497}, "assignee": {"id": 551}, "organization": {"id": 674}, "project": {"owner": {"id": 725}, "assignee": {"id": 822}, "organization": {"id": 998}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 530}, "organization": {"id": 608}, "project": {"owner": {"id": 763}, "assignee": {"id": 827}, "organization": {"id": 905}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 461}, "assignee": {"id": 531}, "organization": {"id": 167}, "project": {"owner": {"id": 718}, "assignee": {"id": 883}, "organization": {"id": 926}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 457}, "assignee": {"id": 529}, "organization": {"id": 123}, "project": {"owner": {"id": 710}, "assignee": {"id": 821}, "organization": {"id": 932}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 350, "owner": {"id": 429}, "assignee": {"id": 592}, "organization": {"id": 696}, "project": {"owner": {"id": 764}, "assignee": {"id": 879}, "organization": {"id": 900}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 294}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 493}, "assignee": {"id": 555}, "organization": {"id": 191}, "project": {"owner": {"id": 783}, "assignee": {"id": 827}, "organization": {"id": 927}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 309, "owner": {"id": 456}, "assignee": {"id": 585}, "organization": {"id": 150}, "project": {"owner": {"id": 753}, "assignee": {"id": 841}, "organization": {"id": 961}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 186, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 501}, "organization": {"id": 186}, "project": {"owner": {"id": 751}, "assignee": {"id": 838}, "organization": {"id": 999}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 137, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 481}, "assignee": {"id": 571}, "organization": {"id": 687}, "project": {"owner": {"id": 719}, "assignee": {"id": 824}, "organization": {"id": 921}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 283}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 433}, "assignee": {"id": 523}, "organization": {"id": 617}, "project": {"owner": {"id": 713}, "assignee": {"id": 804}, "organization": {"id": 937}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 420}, "assignee": {"id": 549}, "organization": {"id": 106}, "project": {"owner": {"id": 792}, "assignee": {"id": 867}, "organization": {"id": 975}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 422}, "assignee": {"id": 567}, "organization": {"id": 679}, "project": {"owner": {"id": 795}, "assignee": {"id": 871}, "organization": {"id": 988}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 123, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"id": 356, "owner": {"id": 484}, "assignee": {"id": 541}, "organization": {"id": 681}, "project": {"owner": {"id": 703}, "assignee": {"id": 889}, "organization": {"id": 981}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 523}, "organization": {"id": 676}, "project": {"owner": {"id": 797}, "assignee": {"id": 868}, "organization": {"id": 994}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 264}, "user": {"role": null}}}, "resource": {"id": 395, "owner": {"id": 469}, "assignee": {"id": 538}, "organization": {"id": 145}, "project": {"owner": {"id": 750}, "assignee": {"id": 873}, "organization": {"id": 961}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 107, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 401}, "assignee": {"id": 566}, "organization": {"id": 107}, "project": {"owner": {"id": 718}, "assignee": {"id": 859}, "organization": {"id": 979}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 444}, "assignee": {"id": 574}, "organization": {"id": 638}, "project": {"owner": {"id": 773}, "assignee": {"id": 870}, "organization": {"id": 983}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 496}, "assignee": {"id": 598}, "organization": {"id": 194}, "project": {"owner": {"id": 759}, "assignee": {"id": 807}, "organization": {"id": 925}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 496}, "assignee": {"id": 546}, "organization": {"id": 145}, "project": {"owner": {"id": 748}, "assignee": {"id": 815}, "organization": {"id": 969}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 447}, "assignee": {"id": 542}, "organization": {"id": 139}, "project": {"owner": {"id": 739}, "assignee": {"id": 856}, "organization": {"id": 974}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"id": 372, "owner": {"id": 473}, "assignee": {"id": 572}, "organization": {"id": 676}, "project": {"owner": {"id": 723}, "assignee": {"id": 880}, "organization": {"id": 995}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 474}, "assignee": {"id": 540}, "organization": {"id": 628}, "project": {"owner": {"id": 794}, "assignee": {"id": 811}, "organization": {"id": 971}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"id": 365, "owner": {"id": 435}, "assignee": {"id": 586}, "organization": {"id": 191}, "project": {"owner": {"id": 787}, "assignee": {"id": 842}, "organization": {"id": 999}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 412}, "assignee": {"id": 598}, "organization": {"id": 640}, "project": {"owner": {"id": 752}, "assignee": {"id": 891}, "organization": {"id": 929}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 449}, "assignee": {"id": 543}, "organization": {"id": 699}, "project": {"owner": {"id": 789}, "assignee": {"id": 856}, "organization": {"id": 994}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 202}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 451}, "assignee": {"id": 539}, "organization": {"id": 607}, "project": {"owner": {"id": 723}, "assignee": {"id": 810}, "organization": {"id": 972}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 490}, "assignee": {"id": 585}, "organization": {"id": 120}, "project": {"owner": {"id": 718}, "assignee": {"id": 825}, "organization": {"id": 946}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 214}, "user": {"role": null}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 564}, "organization": {"id": 131}, "project": {"owner": {"id": 727}, "assignee": {"id": 866}, "organization": {"id": 948}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"id": 366, "owner": {"id": 485}, "assignee": {"id": 565}, "organization": {"id": 645}, "project": {"owner": {"id": 748}, "assignee": {"id": 843}, "organization": {"id": 970}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 135, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"owner": {"id": 485}, "assignee": {"id": 582}, "organization": {"id": 135}, "project": {"owner": {"id": 772}, "assignee": {"id": 882}, "organization": {"id": 969}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 411}, "assignee": {"id": 580}, "organization": {"id": 100}, "project": {"owner": {"id": 738}, "assignee": {"id": 843}, "organization": {"id": 983}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"owner": {"id": 470}, "assignee": {"id": 520}, "organization": {"id": 154}, "project": {"owner": {"id": 725}, "assignee": {"id": 828}, "organization": {"id": 997}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 378, "owner": {"id": 409}, "assignee": {"id": 550}, "organization": {"id": 637}, "project": {"owner": {"id": 717}, "assignee": {"id": 818}, "organization": {"id": 964}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"owner": {"id": 446}, "assignee": {"id": 590}, "organization": {"id": 661}, "project": {"owner": {"id": 716}, "assignee": {"id": 865}, "organization": {"id": 934}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 407}, "assignee": {"id": 543}, "organization": {"id": 148}, "project": {"owner": {"id": 793}, "assignee": {"id": 848}, "organization": {"id": 953}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 239}, "user": {"role": null}}}, "resource": {"owner": {"id": 417}, "assignee": {"id": 585}, "organization": {"id": 668}, "project": {"owner": {"id": 743}, "assignee": {"id": 847}, "organization": {"id": 989}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 273}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 417}, "assignee": {"id": 585}, "organization": {"id": 682}, "project": {"owner": {"id": 715}, "assignee": {"id": 837}, "organization": {"id": 904}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"owner": {"id": 473}, "assignee": {"id": 579}, "organization": {"id": 673}, "project": {"owner": {"id": 712}, "assignee": {"id": 834}, "organization": {"id": 943}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 405}, "assignee": {"id": 592}, "organization": {"id": 183}, "project": {"owner": {"id": 764}, "assignee": {"id": 873}, "organization": {"id": 986}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 527}, "organization": {"id": 128}, "project": {"owner": {"id": 703}, "assignee": {"id": 862}, "organization": {"id": 939}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 412}, "assignee": {"id": 507}, "organization": {"id": 667}, "project": {"owner": {"id": 756}, "assignee": {"id": 869}, "organization": {"id": 907}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 510}, "organization": {"id": 194}, "project": {"owner": {"id": 727}, "assignee": {"id": 885}, "organization": {"id": 936}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 442}, "assignee": {"id": 560}, "organization": {"id": 171}, "project": {"owner": {"id": 700}, "assignee": {"id": 821}, "organization": {"id": 908}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 499}, "assignee": {"id": 511}, "organization": {"id": 189}, "project": {"owner": {"id": 715}, "assignee": {"id": 813}, "organization": {"id": 907}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 340, "owner": {"id": 487}, "assignee": {"id": 564}, "organization": {"id": 668}, "project": {"owner": {"id": 776}, "assignee": {"id": 806}, "organization": {"id": 963}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": {"id": 199, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 478}, "assignee": {"id": 558}, "organization": {"id": 696}, "project": {"owner": {"id": 786}, "assignee": {"id": 890}, "organization": {"id": 946}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 456}, "assignee": {"id": 534}, "organization": {"id": 142}, "project": {"owner": {"id": 708}, "assignee": {"id": 899}, "organization": {"id": 978}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 495}, "assignee": {"id": 545}, "organization": {"id": 605}, "project": {"owner": {"id": 775}, "assignee": {"id": 825}, "organization": {"id": 993}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 450}, "assignee": {"id": 593}, "organization": {"id": 688}, "project": {"owner": {"id": 792}, "assignee": {"id": 847}, "organization": {"id": 979}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"owner": {"id": 460}, "assignee": {"id": 574}, "organization": {"id": 646}, "project": {"owner": {"id": 750}, "assignee": {"id": 851}, "organization": {"id": 952}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 401}, "assignee": {"id": 557}, "organization": {"id": 170}, "project": {"owner": {"id": 743}, "assignee": {"id": 892}, "organization": {"id": 991}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 494}, "assignee": {"id": 545}, "organization": {"id": 151}, "project": {"owner": {"id": 716}, "assignee": {"id": 833}, "organization": {"id": 979}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 462}, "assignee": {"id": 589}, "organization": {"id": 688}, "project": {"owner": {"id": 715}, "assignee": {"id": 816}, "organization": {"id": 950}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 181, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 403}, "assignee": {"id": 520}, "organization": {"id": 181}, "project": {"owner": {"id": 744}, "assignee": {"id": 892}, "organization": {"id": 937}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 184, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 412}, "assignee": {"id": 570}, "organization": {"id": 184}, "project": {"owner": {"id": 735}, "assignee": {"id": 820}, "organization": {"id": 961}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 408}, "assignee": {"id": 572}, "organization": {"id": 177}, "project": {"owner": {"id": 775}, "assignee": {"id": 801}, "organization": {"id": 957}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 416}, "assignee": {"id": 561}, "organization": {"id": 687}, "project": {"owner": {"id": 795}, "assignee": {"id": 811}, "organization": {"id": 940}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 477}, "assignee": {"id": 562}, "organization": {"id": 630}, "project": {"owner": {"id": 742}, "assignee": {"id": 850}, "organization": {"id": 904}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 442}, "assignee": {"id": 554}, "organization": {"id": 111}, "project": {"owner": {"id": 776}, "assignee": {"id": 845}, "organization": {"id": 998}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 556}, "organization": {"id": 698}, "project": {"owner": {"id": 735}, "assignee": {"id": 821}, "organization": {"id": 977}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"id": 365, "owner": {"id": 470}, "assignee": {"id": 508}, "organization": {"id": 643}, "project": {"owner": {"id": 778}, "assignee": {"id": 812}, "organization": {"id": 999}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"owner": {"id": 415}, "assignee": {"id": 517}, "organization": {"id": 619}, "project": {"owner": {"id": 769}, "assignee": {"id": 879}, "organization": {"id": 994}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 444}, "assignee": {"id": 546}, "organization": {"id": 194}, "project": {"owner": {"id": 773}, "assignee": {"id": 816}, "organization": {"id": 989}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 432}, "assignee": {"id": 539}, "organization": {"id": 112}, "project": {"owner": {"id": 732}, "assignee": {"id": 878}, "organization": {"id": 948}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 317, "owner": {"id": 408}, "assignee": {"id": 526}, "organization": {"id": 630}, "project": {"owner": {"id": 725}, "assignee": {"id": 816}, "organization": {"id": 985}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 482}, "assignee": {"id": 527}, "organization": {"id": 177}, "project": {"owner": {"id": 711}, "assignee": {"id": 874}, "organization": {"id": 954}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 488}, "assignee": {"id": 565}, "organization": {"id": 163}, "project": {"owner": {"id": 721}, "assignee": {"id": 830}, "organization": {"id": 958}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 294}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 471}, "assignee": {"id": 574}, "organization": {"id": 164}, "project": {"owner": {"id": 768}, "assignee": {"id": 814}, "organization": {"id": 940}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 499}, "assignee": {"id": 544}, "organization": {"id": 609}, "project": {"owner": {"id": 747}, "assignee": {"id": 889}, "organization": {"id": 992}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 426}, "assignee": {"id": 586}, "organization": {"id": 676}, "project": {"owner": {"id": 704}, "assignee": {"id": 877}, "organization": {"id": 991}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 103, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 478}, "assignee": {"id": 543}, "organization": {"id": 103}, "project": {"owner": {"id": 792}, "assignee": {"id": 830}, "organization": {"id": 997}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 41, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 437}, "assignee": {"id": 538}, "organization": {"id": 641}, "project": {"owner": {"id": 723}, "assignee": {"id": 845}, "organization": {"id": 908}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 468}, "assignee": {"id": 516}, "organization": {"id": 655}, "project": {"owner": {"id": 781}, "assignee": {"id": 854}, "organization": {"id": 950}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"owner": {"id": 405}, "assignee": {"id": 540}, "organization": {"id": 649}, "project": {"owner": {"id": 757}, "assignee": {"id": 847}, "organization": {"id": 904}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"id": 307, "owner": {"id": 480}, "assignee": {"id": 553}, "organization": {"id": 159}, "project": {"owner": {"id": 786}, "assignee": {"id": 894}, "organization": {"id": 915}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 448}, "assignee": {"id": 593}, "organization": {"id": 115}, "project": {"owner": {"id": 786}, "assignee": {"id": 883}, "organization": {"id": 995}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 48, "privilege": "worker"}, "organization": {"id": 193, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"id": 305, "owner": {"id": 466}, "assignee": {"id": 526}, "organization": {"id": 686}, "project": {"owner": {"id": 792}, "assignee": {"id": 803}, "organization": {"id": 969}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": {"id": 132, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 467}, "assignee": {"id": 561}, "organization": {"id": 132}, "project": {"owner": {"id": 751}, "assignee": {"id": 819}, "organization": {"id": 976}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"id": 382, "owner": {"id": 429}, "assignee": {"id": 593}, "organization": {"id": 122}, "project": {"owner": {"id": 707}, "assignee": {"id": 834}, "organization": {"id": 957}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 48, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 262}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 445}, "assignee": {"id": 581}, "organization": {"id": 119}, "project": {"owner": {"id": 759}, "assignee": {"id": 898}, "organization": {"id": 949}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 132, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 352, "owner": {"id": 477}, "assignee": {"id": 562}, "organization": {"id": 674}, "project": {"owner": {"id": 732}, "assignee": {"id": 864}, "organization": {"id": 946}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 426}, "assignee": {"id": 505}, "organization": {"id": 619}, "project": {"owner": {"id": 784}, "assignee": {"id": 881}, "organization": {"id": 926}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 416}, "assignee": {"id": 577}, "organization": {"id": 124}, "project": {"owner": {"id": 766}, "assignee": {"id": 834}, "organization": {"id": 946}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 515}, "organization": {"id": 659}, "project": {"owner": {"id": 765}, "assignee": {"id": 827}, "organization": {"id": 917}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 441}, "assignee": {"id": 590}, "organization": {"id": 635}, "project": {"owner": {"id": 748}, "assignee": {"id": 843}, "organization": {"id": 920}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 509}, "organization": {"id": 626}, "project": {"owner": {"id": 794}, "assignee": {"id": 879}, "organization": {"id": 969}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 369, "owner": {"id": 482}, "assignee": {"id": 537}, "organization": {"id": 146}, "project": {"owner": {"id": 758}, "assignee": {"id": 888}, "organization": {"id": 950}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_user_num_resources_0_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"owner": {"id": 498}, "assignee": {"id": 590}, "organization": {"id": 198}, "project": {"owner": {"id": 728}, "assignee": {"id": 830}, "organization": {"id": 956}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"id": 361, "owner": {"id": 424}, "assignee": {"id": 502}, "organization": {"id": 625}, "project": {"owner": {"id": 792}, "assignee": {"id": 856}, "organization": {"id": 965}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_user_num_resources_3_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"owner": {"id": 436}, "assignee": {"id": 522}, "organization": {"id": 187}, "project": {"owner": {"id": 710}, "assignee": {"id": 858}, "organization": {"id": 930}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 410}, "assignee": {"id": 516}, "organization": {"id": 171}, "project": {"owner": {"id": 750}, "assignee": {"id": 857}, "organization": {"id": 942}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_user_num_resources_10_same_org_TRUE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"owner": {"id": 414}, "assignee": {"id": 535}, "organization": {"id": 131}, "project": {"owner": {"id": 746}, "assignee": {"id": 880}, "organization": {"id": 960}}, "user": {"num_resources": 10}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 490}, "assignee": {"id": 501}, "organization": {"id": 604}, "project": {"owner": {"id": 726}, "assignee": {"id": 863}, "organization": {"id": 983}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_user_num_resources_0_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"owner": {"id": 402}, "assignee": {"id": 557}, "organization": {"id": 672}, "project": {"owner": {"id": 728}, "assignee": {"id": 811}, "organization": {"id": 988}}, "user": {"num_resources": 0}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"id": 395, "owner": {"id": 499}, "assignee": {"id": 532}, "organization": {"id": 198}, "project": {"owner": {"id": 737}, "assignee": {"id": 847}, "organization": {"id": 981}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_user_num_resources_3_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"owner": {"id": 421}, "assignee": {"id": 570}, "organization": {"id": 682}, "project": {"owner": {"id": 743}, "assignee": {"id": 844}, "organization": {"id": 960}}, "user": {"num_resources": 3}}} } -test_scope_IMPORT_ANNOTATIONS_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "import:annotations", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 458}, "assignee": {"id": 511}, "organization": {"id": 604}, "project": {"owner": {"id": 756}, "assignee": {"id": 837}, "organization": {"id": 998}}}} +test_scope_CREATE_IN_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_user_num_resources_10_same_org_FALSE { + not allow with input as {"scope": "create@project", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"owner": {"id": 481}, "assignee": {"id": 517}, "organization": {"id": 669}, "project": {"owner": {"id": 761}, "assignee": {"id": 813}, "organization": {"id": 938}}, "user": {"num_resources": 10}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": null}, "resource": {"id": 391, "owner": {"id": 451}, "assignee": {"id": 597}, "organization": {"id": 667}, "project": {"owner": {"id": 27}, "assignee": {"id": 869}, "organization": {"id": 937}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": null}, "resource": {"id": 391, "owner": {"id": 420}, "assignee": {"id": 531}, "organization": {"id": 666}, "project": {"owner": {"id": 13}, "assignee": {"id": 893}, "organization": {"id": 987}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": null}, "resource": {"id": 359, "owner": {"id": 473}, "assignee": {"id": 537}, "organization": {"id": 671}, "project": {"owner": {"id": 51}, "assignee": {"id": 869}, "organization": {"id": 957}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": null}, "resource": {"id": 301, "owner": {"id": 467}, "assignee": {"id": 500}, "organization": {"id": 691}, "project": {"owner": {"id": 85}, "assignee": {"id": 806}, "organization": {"id": 910}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 495}, "assignee": {"id": 598}, "organization": {"id": 686}, "project": {"owner": {"id": 37}, "assignee": {"id": 867}, "organization": {"id": 990}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": null}, "resource": {"id": 328, "owner": {"id": 429}, "assignee": {"id": 561}, "organization": {"id": 696}, "project": {"owner": {"id": 86}, "assignee": {"id": 875}, "organization": {"id": 925}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": null}, "resource": {"id": 388, "owner": {"id": 440}, "assignee": {"id": 517}, "organization": {"id": 627}, "project": {"owner": {"id": 45}, "assignee": {"id": 898}, "organization": {"id": 992}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": null}, "resource": {"id": 336, "owner": {"id": 423}, "assignee": {"id": 530}, "organization": {"id": 699}, "project": {"owner": {"id": 76}, "assignee": {"id": 861}, "organization": {"id": 990}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": null}, "resource": {"id": 358, "owner": {"id": 494}, "assignee": {"id": 528}, "organization": {"id": 644}, "project": {"owner": {"id": 90}, "assignee": {"id": 892}, "organization": {"id": 948}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": null}, "resource": {"id": 333, "owner": {"id": 431}, "assignee": {"id": 517}, "organization": {"id": 660}, "project": {"owner": {"id": 46}, "assignee": {"id": 857}, "organization": {"id": 966}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": null}, "resource": {"id": 378, "owner": {"id": 400}, "assignee": {"id": 599}, "organization": {"id": 637}, "project": {"owner": {"id": 700}, "assignee": {"id": 14}, "organization": {"id": 913}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": null}, "resource": {"id": 319, "owner": {"id": 462}, "assignee": {"id": 514}, "organization": {"id": 687}, "project": {"owner": {"id": 799}, "assignee": {"id": 80}, "organization": {"id": 924}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": null}, "resource": {"id": 320, "owner": {"id": 489}, "assignee": {"id": 515}, "organization": {"id": 691}, "project": {"owner": {"id": 728}, "assignee": {"id": 97}, "organization": {"id": 975}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": null}, "resource": {"id": 381, "owner": {"id": 466}, "assignee": {"id": 575}, "organization": {"id": 642}, "project": {"owner": {"id": 797}, "assignee": {"id": 12}, "organization": {"id": 966}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": null}, "resource": {"id": 384, "owner": {"id": 429}, "assignee": {"id": 561}, "organization": {"id": 692}, "project": {"owner": {"id": 730}, "assignee": {"id": 57}, "organization": {"id": 993}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": null}, "resource": {"id": 307, "owner": {"id": 493}, "assignee": {"id": 539}, "organization": {"id": 669}, "project": {"owner": {"id": 740}, "assignee": {"id": 73}, "organization": {"id": 982}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": null}, "resource": {"id": 371, "owner": {"id": 409}, "assignee": {"id": 537}, "organization": {"id": 699}, "project": {"owner": {"id": 773}, "assignee": {"id": 9}, "organization": {"id": 933}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": null}, "resource": {"id": 317, "owner": {"id": 405}, "assignee": {"id": 542}, "organization": {"id": 668}, "project": {"owner": {"id": 745}, "assignee": {"id": 14}, "organization": {"id": 949}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": null}, "resource": {"id": 352, "owner": {"id": 468}, "assignee": {"id": 501}, "organization": {"id": 658}, "project": {"owner": {"id": 706}, "assignee": {"id": 38}, "organization": {"id": 939}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": null}, "resource": {"id": 351, "owner": {"id": 424}, "assignee": {"id": 506}, "organization": {"id": 645}, "project": {"owner": {"id": 771}, "assignee": {"id": 85}, "organization": {"id": 964}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": null}, "resource": {"id": 341, "owner": {"id": 52}, "assignee": {"id": 558}, "organization": {"id": 676}, "project": {"owner": {"id": 749}, "assignee": {"id": 838}, "organization": {"id": 977}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": null}, "resource": {"id": 381, "owner": {"id": 34}, "assignee": {"id": 558}, "organization": {"id": 603}, "project": {"owner": {"id": 756}, "assignee": {"id": 899}, "organization": {"id": 946}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 67}, "assignee": {"id": 559}, "organization": {"id": 624}, "project": {"owner": {"id": 729}, "assignee": {"id": 888}, "organization": {"id": 990}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": null}, "resource": {"id": 399, "owner": {"id": 81}, "assignee": {"id": 508}, "organization": {"id": 644}, "project": {"owner": {"id": 728}, "assignee": {"id": 833}, "organization": {"id": 959}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": null}, "resource": {"id": 361, "owner": {"id": 15}, "assignee": {"id": 598}, "organization": {"id": 613}, "project": {"owner": {"id": 705}, "assignee": {"id": 886}, "organization": {"id": 977}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": null}, "resource": {"id": 387, "owner": {"id": 76}, "assignee": {"id": 511}, "organization": {"id": 678}, "project": {"owner": {"id": 790}, "assignee": {"id": 867}, "organization": {"id": 942}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": null}, "resource": {"id": 399, "owner": {"id": 84}, "assignee": {"id": 542}, "organization": {"id": 620}, "project": {"owner": {"id": 729}, "assignee": {"id": 843}, "organization": {"id": 939}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": null}, "resource": {"id": 385, "owner": {"id": 70}, "assignee": {"id": 514}, "organization": {"id": 681}, "project": {"owner": {"id": 725}, "assignee": {"id": 824}, "organization": {"id": 902}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": null}, "resource": {"id": 307, "owner": {"id": 85}, "assignee": {"id": 577}, "organization": {"id": 681}, "project": {"owner": {"id": 708}, "assignee": {"id": 832}, "organization": {"id": 950}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": null}, "resource": {"id": 366, "owner": {"id": 82}, "assignee": {"id": 530}, "organization": {"id": 682}, "project": {"owner": {"id": 763}, "assignee": {"id": 817}, "organization": {"id": 937}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": null}, "resource": {"id": 399, "owner": {"id": 426}, "assignee": {"id": 34}, "organization": {"id": 622}, "project": {"owner": {"id": 780}, "assignee": {"id": 879}, "organization": {"id": 914}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": null}, "resource": {"id": 330, "owner": {"id": 431}, "assignee": {"id": 29}, "organization": {"id": 652}, "project": {"owner": {"id": 774}, "assignee": {"id": 851}, "organization": {"id": 930}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": null}, "resource": {"id": 396, "owner": {"id": 414}, "assignee": {"id": 29}, "organization": {"id": 615}, "project": {"owner": {"id": 787}, "assignee": {"id": 803}, "organization": {"id": 997}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": null}, "resource": {"id": 313, "owner": {"id": 441}, "assignee": {"id": 22}, "organization": {"id": 633}, "project": {"owner": {"id": 785}, "assignee": {"id": 827}, "organization": {"id": 933}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": null}, "resource": {"id": 381, "owner": {"id": 408}, "assignee": {"id": 80}, "organization": {"id": 621}, "project": {"owner": {"id": 749}, "assignee": {"id": 891}, "organization": {"id": 936}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": null}, "resource": {"id": 363, "owner": {"id": 443}, "assignee": {"id": 2}, "organization": {"id": 605}, "project": {"owner": {"id": 778}, "assignee": {"id": 806}, "organization": {"id": 967}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": null}, "resource": {"id": 323, "owner": {"id": 438}, "assignee": {"id": 61}, "organization": {"id": 631}, "project": {"owner": {"id": 758}, "assignee": {"id": 802}, "organization": {"id": 926}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": null}, "resource": {"id": 396, "owner": {"id": 415}, "assignee": {"id": 72}, "organization": {"id": 608}, "project": {"owner": {"id": 772}, "assignee": {"id": 886}, "organization": {"id": 985}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": null}, "resource": {"id": 363, "owner": {"id": 476}, "assignee": {"id": 1}, "organization": {"id": 619}, "project": {"owner": {"id": 743}, "assignee": {"id": 833}, "organization": {"id": 969}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": null}, "resource": {"id": 353, "owner": {"id": 497}, "assignee": {"id": 57}, "organization": {"id": 676}, "project": {"owner": {"id": 704}, "assignee": {"id": 853}, "organization": {"id": 963}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": null}, "resource": {"id": 318, "owner": {"id": 419}, "assignee": {"id": 541}, "organization": {"id": 655}, "project": {"owner": {"id": 746}, "assignee": {"id": 877}, "organization": {"id": 959}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": null}, "resource": {"id": 392, "owner": {"id": 440}, "assignee": {"id": 565}, "organization": {"id": 600}, "project": {"owner": {"id": 747}, "assignee": {"id": 801}, "organization": {"id": 965}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": null}, "resource": {"id": 314, "owner": {"id": 471}, "assignee": {"id": 593}, "organization": {"id": 629}, "project": {"owner": {"id": 776}, "assignee": {"id": 893}, "organization": {"id": 973}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": null}, "resource": {"id": 305, "owner": {"id": 464}, "assignee": {"id": 585}, "organization": {"id": 666}, "project": {"owner": {"id": 750}, "assignee": {"id": 894}, "organization": {"id": 902}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": null}, "resource": {"id": 394, "owner": {"id": 426}, "assignee": {"id": 510}, "organization": {"id": 639}, "project": {"owner": {"id": 757}, "assignee": {"id": 869}, "organization": {"id": 974}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": null}, "resource": {"id": 354, "owner": {"id": 455}, "assignee": {"id": 594}, "organization": {"id": 613}, "project": {"owner": {"id": 715}, "assignee": {"id": 868}, "organization": {"id": 933}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": null}, "resource": {"id": 340, "owner": {"id": 470}, "assignee": {"id": 505}, "organization": {"id": 657}, "project": {"owner": {"id": 747}, "assignee": {"id": 852}, "organization": {"id": 920}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": null}, "resource": {"id": 326, "owner": {"id": 499}, "assignee": {"id": 579}, "organization": {"id": 616}, "project": {"owner": {"id": 716}, "assignee": {"id": 855}, "organization": {"id": 929}}}} } -test_scope_UPLOAD_DATA_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": null}, "resource": {"id": 301, "owner": {"id": 401}, "assignee": {"id": 569}, "organization": {"id": 693}, "project": {"owner": {"id": 749}, "assignee": {"id": 897}, "organization": {"id": 915}}}} +test_scope_UPDATE_DESC_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": null}, "resource": {"id": 367, "owner": {"id": 442}, "assignee": {"id": 514}, "organization": {"id": 636}, "project": {"owner": {"id": 767}, "assignee": {"id": 869}, "organization": {"id": 987}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": {"id": 116, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"id": 387, "owner": {"id": 434}, "assignee": {"id": 517}, "organization": {"id": 116}, "project": {"owner": {"id": 85}, "assignee": {"id": 888}, "organization": {"id": 921}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 318, "owner": {"id": 481}, "assignee": {"id": 542}, "organization": {"id": 105}, "project": {"owner": {"id": 13}, "assignee": {"id": 892}, "organization": {"id": 979}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 350, "owner": {"id": 493}, "assignee": {"id": 581}, "organization": {"id": 611}, "project": {"owner": {"id": 6}, "assignee": {"id": 825}, "organization": {"id": 959}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 448}, "assignee": {"id": 526}, "organization": {"id": 646}, "project": {"owner": {"id": 57}, "assignee": {"id": 897}, "organization": {"id": 905}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"id": 396, "owner": {"id": 438}, "assignee": {"id": 579}, "organization": {"id": 198}, "project": {"owner": {"id": 39}, "assignee": {"id": 886}, "organization": {"id": 928}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 310, "owner": {"id": 470}, "assignee": {"id": 593}, "organization": {"id": 145}, "project": {"owner": {"id": 91}, "assignee": {"id": 838}, "organization": {"id": 918}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 205}, "user": {"role": "maintainer"}}}, "resource": {"id": 397, "owner": {"id": 442}, "assignee": {"id": 574}, "organization": {"id": 606}, "project": {"owner": {"id": 56}, "assignee": {"id": 837}, "organization": {"id": 938}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 321, "owner": {"id": 442}, "assignee": {"id": 525}, "organization": {"id": 631}, "project": {"owner": {"id": 16}, "assignee": {"id": 882}, "organization": {"id": 972}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 345, "owner": {"id": 426}, "assignee": {"id": 557}, "organization": {"id": 128}, "project": {"owner": {"id": 64}, "assignee": {"id": 892}, "organization": {"id": 912}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 356, "owner": {"id": 442}, "assignee": {"id": 586}, "organization": {"id": 129}, "project": {"owner": {"id": 59}, "assignee": {"id": 853}, "organization": {"id": 968}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 343, "owner": {"id": 433}, "assignee": {"id": 585}, "organization": {"id": 604}, "project": {"owner": {"id": 64}, "assignee": {"id": 801}, "organization": {"id": 981}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"id": 387, "owner": {"id": 415}, "assignee": {"id": 547}, "organization": {"id": 697}, "project": {"owner": {"id": 4}, "assignee": {"id": 894}, "organization": {"id": 941}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 283}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 498}, "assignee": {"id": 506}, "organization": {"id": 148}, "project": {"owner": {"id": 34}, "assignee": {"id": 800}, "organization": {"id": 930}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 487}, "assignee": {"id": 565}, "organization": {"id": 111}, "project": {"owner": {"id": 88}, "assignee": {"id": 821}, "organization": {"id": 940}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 15, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 334, "owner": {"id": 423}, "assignee": {"id": 543}, "organization": {"id": 677}, "project": {"owner": {"id": 15}, "assignee": {"id": 862}, "organization": {"id": 965}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 197, "owner": {"id": 217}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 481}, "assignee": {"id": 586}, "organization": {"id": 664}, "project": {"owner": {"id": 4}, "assignee": {"id": 821}, "organization": {"id": 941}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 411}, "assignee": {"id": 579}, "organization": {"id": 159}, "project": {"owner": {"id": 54}, "assignee": {"id": 879}, "organization": {"id": 975}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 477}, "assignee": {"id": 550}, "organization": {"id": 193}, "project": {"owner": {"id": 30}, "assignee": {"id": 899}, "organization": {"id": 999}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 207}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 492}, "assignee": {"id": 523}, "organization": {"id": 646}, "project": {"owner": {"id": 69}, "assignee": {"id": 834}, "organization": {"id": 934}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 345, "owner": {"id": 406}, "assignee": {"id": 511}, "organization": {"id": 685}, "project": {"owner": {"id": 54}, "assignee": {"id": 802}, "organization": {"id": 904}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 306, "owner": {"id": 495}, "assignee": {"id": 518}, "organization": {"id": 191}, "project": {"owner": {"id": 99}, "assignee": {"id": 860}, "organization": {"id": 959}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 429}, "assignee": {"id": 586}, "organization": {"id": 142}, "project": {"owner": {"id": 12}, "assignee": {"id": 861}, "organization": {"id": 915}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 199, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 455}, "assignee": {"id": 598}, "organization": {"id": 613}, "project": {"owner": {"id": 75}, "assignee": {"id": 834}, "organization": {"id": 904}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 423}, "assignee": {"id": 570}, "organization": {"id": 624}, "project": {"owner": {"id": 98}, "assignee": {"id": 849}, "organization": {"id": 971}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"id": 379, "owner": {"id": 430}, "assignee": {"id": 501}, "organization": {"id": 111}, "project": {"owner": {"id": 61}, "assignee": {"id": 892}, "organization": {"id": 930}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 452}, "assignee": {"id": 501}, "organization": {"id": 198}, "project": {"owner": {"id": 58}, "assignee": {"id": 827}, "organization": {"id": 918}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"id": 321, "owner": {"id": 447}, "assignee": {"id": 573}, "organization": {"id": 654}, "project": {"owner": {"id": 51}, "assignee": {"id": 877}, "organization": {"id": 989}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 130, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 419}, "assignee": {"id": 575}, "organization": {"id": 666}, "project": {"owner": {"id": 95}, "assignee": {"id": 841}, "organization": {"id": 912}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 200}, "user": {"role": "supervisor"}}}, "resource": {"id": 374, "owner": {"id": 415}, "assignee": {"id": 596}, "organization": {"id": 137}, "project": {"owner": {"id": 33}, "assignee": {"id": 822}, "organization": {"id": 914}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 476}, "assignee": {"id": 590}, "organization": {"id": 172}, "project": {"owner": {"id": 95}, "assignee": {"id": 860}, "organization": {"id": 973}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 462}, "assignee": {"id": 521}, "organization": {"id": 608}, "project": {"owner": {"id": 32}, "assignee": {"id": 872}, "organization": {"id": 912}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 393, "owner": {"id": 490}, "assignee": {"id": 501}, "organization": {"id": 616}, "project": {"owner": {"id": 54}, "assignee": {"id": 860}, "organization": {"id": 981}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"id": 391, "owner": {"id": 419}, "assignee": {"id": 589}, "organization": {"id": 173}, "project": {"owner": {"id": 43}, "assignee": {"id": 859}, "organization": {"id": 958}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 81, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"id": 391, "owner": {"id": 426}, "assignee": {"id": 549}, "organization": {"id": 169}, "project": {"owner": {"id": 81}, "assignee": {"id": 802}, "organization": {"id": 916}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 378, "owner": {"id": 467}, "assignee": {"id": 551}, "organization": {"id": 689}, "project": {"owner": {"id": 39}, "assignee": {"id": 846}, "organization": {"id": 917}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 398, "owner": {"id": 450}, "assignee": {"id": 572}, "organization": {"id": 672}, "project": {"owner": {"id": 47}, "assignee": {"id": 877}, "organization": {"id": 998}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"id": 388, "owner": {"id": 481}, "assignee": {"id": 590}, "organization": {"id": 135}, "project": {"owner": {"id": 29}, "assignee": {"id": 876}, "organization": {"id": 972}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 207}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 420}, "assignee": {"id": 512}, "organization": {"id": 103}, "project": {"owner": {"id": 90}, "assignee": {"id": 830}, "organization": {"id": 989}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 214}, "user": {"role": null}}}, "resource": {"id": 364, "owner": {"id": 496}, "assignee": {"id": 585}, "organization": {"id": 617}, "project": {"owner": {"id": 5}, "assignee": {"id": 862}, "organization": {"id": 928}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 174, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 411}, "assignee": {"id": 579}, "organization": {"id": 663}, "project": {"owner": {"id": 8}, "assignee": {"id": 870}, "organization": {"id": 904}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 482}, "assignee": {"id": 561}, "organization": {"id": 175}, "project": {"owner": {"id": 54}, "assignee": {"id": 809}, "organization": {"id": 984}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 93, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"id": 373, "owner": {"id": 459}, "assignee": {"id": 500}, "organization": {"id": 125}, "project": {"owner": {"id": 93}, "assignee": {"id": 894}, "organization": {"id": 930}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 150, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"id": 353, "owner": {"id": 426}, "assignee": {"id": 572}, "organization": {"id": 648}, "project": {"owner": {"id": 12}, "assignee": {"id": 823}, "organization": {"id": 924}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 450}, "assignee": {"id": 561}, "organization": {"id": 662}, "project": {"owner": {"id": 88}, "assignee": {"id": 887}, "organization": {"id": 992}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 9, "privilege": "user"}, "organization": {"id": 128, "owner": {"id": 281}, "user": {"role": "maintainer"}}}, "resource": {"id": 343, "owner": {"id": 450}, "assignee": {"id": 517}, "organization": {"id": 128}, "project": {"owner": {"id": 9}, "assignee": {"id": 856}, "organization": {"id": 981}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"id": 312, "owner": {"id": 494}, "assignee": {"id": 526}, "organization": {"id": 102}, "project": {"owner": {"id": 31}, "assignee": {"id": 856}, "organization": {"id": 956}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 487}, "assignee": {"id": 501}, "organization": {"id": 686}, "project": {"owner": {"id": 42}, "assignee": {"id": 818}, "organization": {"id": 922}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"id": 311, "owner": {"id": 436}, "assignee": {"id": 592}, "organization": {"id": 642}, "project": {"owner": {"id": 72}, "assignee": {"id": 854}, "organization": {"id": 928}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 415}, "assignee": {"id": 509}, "organization": {"id": 127}, "project": {"owner": {"id": 15}, "assignee": {"id": 854}, "organization": {"id": 963}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 447}, "assignee": {"id": 570}, "organization": {"id": 157}, "project": {"owner": {"id": 21}, "assignee": {"id": 883}, "organization": {"id": 997}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 192, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"id": 303, "owner": {"id": 401}, "assignee": {"id": 584}, "organization": {"id": 620}, "project": {"owner": {"id": 0}, "assignee": {"id": 826}, "organization": {"id": 954}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 174, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 452}, "assignee": {"id": 536}, "organization": {"id": 690}, "project": {"owner": {"id": 62}, "assignee": {"id": 855}, "organization": {"id": 979}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 353, "owner": {"id": 495}, "assignee": {"id": 505}, "organization": {"id": 161}, "project": {"owner": {"id": 23}, "assignee": {"id": 801}, "organization": {"id": 900}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"id": 324, "owner": {"id": 488}, "assignee": {"id": 548}, "organization": {"id": 137}, "project": {"owner": {"id": 31}, "assignee": {"id": 880}, "organization": {"id": 991}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 404}, "assignee": {"id": 515}, "organization": {"id": 679}, "project": {"owner": {"id": 56}, "assignee": {"id": 840}, "organization": {"id": 963}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 366, "owner": {"id": 408}, "assignee": {"id": 577}, "organization": {"id": 630}, "project": {"owner": {"id": 66}, "assignee": {"id": 870}, "organization": {"id": 925}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 271}, "user": {"role": null}}}, "resource": {"id": 371, "owner": {"id": 430}, "assignee": {"id": 595}, "organization": {"id": 160}, "project": {"owner": {"id": 33}, "assignee": {"id": 825}, "organization": {"id": 936}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 326, "owner": {"id": 460}, "assignee": {"id": 516}, "organization": {"id": 109}, "project": {"owner": {"id": 30}, "assignee": {"id": 857}, "organization": {"id": 935}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"id": 395, "owner": {"id": 413}, "assignee": {"id": 564}, "organization": {"id": 682}, "project": {"owner": {"id": 2}, "assignee": {"id": 893}, "organization": {"id": 952}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"id": 399, "owner": {"id": 476}, "assignee": {"id": 573}, "organization": {"id": 602}, "project": {"owner": {"id": 57}, "assignee": {"id": 888}, "organization": {"id": 951}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 301, "owner": {"id": 412}, "assignee": {"id": 544}, "organization": {"id": 191}, "project": {"owner": {"id": 13}, "assignee": {"id": 879}, "organization": {"id": 918}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"id": 347, "owner": {"id": 497}, "assignee": {"id": 519}, "organization": {"id": 130}, "project": {"owner": {"id": 56}, "assignee": {"id": 869}, "organization": {"id": 996}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 352, "owner": {"id": 429}, "assignee": {"id": 509}, "organization": {"id": 610}, "project": {"owner": {"id": 63}, "assignee": {"id": 800}, "organization": {"id": 994}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 495}, "assignee": {"id": 508}, "organization": {"id": 650}, "project": {"owner": {"id": 9}, "assignee": {"id": 865}, "organization": {"id": 907}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 156, "owner": {"id": 223}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 404}, "assignee": {"id": 585}, "organization": {"id": 156}, "project": {"owner": {"id": 17}, "assignee": {"id": 805}, "organization": {"id": 929}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 411}, "assignee": {"id": 545}, "organization": {"id": 101}, "project": {"owner": {"id": 35}, "assignee": {"id": 891}, "organization": {"id": 927}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 270}, "user": {"role": "maintainer"}}}, "resource": {"id": 379, "owner": {"id": 430}, "assignee": {"id": 558}, "organization": {"id": 688}, "project": {"owner": {"id": 56}, "assignee": {"id": 857}, "organization": {"id": 917}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 448}, "assignee": {"id": 571}, "organization": {"id": 608}, "project": {"owner": {"id": 28}, "assignee": {"id": 871}, "organization": {"id": 969}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 41, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 376, "owner": {"id": 483}, "assignee": {"id": 505}, "organization": {"id": 194}, "project": {"owner": {"id": 41}, "assignee": {"id": 828}, "organization": {"id": 909}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 351, "owner": {"id": 487}, "assignee": {"id": 504}, "organization": {"id": 165}, "project": {"owner": {"id": 66}, "assignee": {"id": 892}, "organization": {"id": 930}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 484}, "assignee": {"id": 542}, "organization": {"id": 644}, "project": {"owner": {"id": 23}, "assignee": {"id": 854}, "organization": {"id": 969}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 291}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 465}, "assignee": {"id": 586}, "organization": {"id": 676}, "project": {"owner": {"id": 24}, "assignee": {"id": 892}, "organization": {"id": 936}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"id": 358, "owner": {"id": 442}, "assignee": {"id": 597}, "organization": {"id": 101}, "project": {"owner": {"id": 63}, "assignee": {"id": 859}, "organization": {"id": 978}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 326, "owner": {"id": 496}, "assignee": {"id": 544}, "organization": {"id": 101}, "project": {"owner": {"id": 55}, "assignee": {"id": 871}, "organization": {"id": 938}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 243}, "user": {"role": "worker"}}}, "resource": {"id": 396, "owner": {"id": 402}, "assignee": {"id": 583}, "organization": {"id": 647}, "project": {"owner": {"id": 45}, "assignee": {"id": 824}, "organization": {"id": 991}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 407}, "assignee": {"id": 568}, "organization": {"id": 640}, "project": {"owner": {"id": 68}, "assignee": {"id": 822}, "organization": {"id": 902}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 195, "owner": {"id": 225}, "user": {"role": null}}}, "resource": {"id": 347, "owner": {"id": 468}, "assignee": {"id": 580}, "organization": {"id": 195}, "project": {"owner": {"id": 23}, "assignee": {"id": 862}, "organization": {"id": 988}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 223}, "user": {"role": null}}}, "resource": {"id": 326, "owner": {"id": 471}, "assignee": {"id": 563}, "organization": {"id": 197}, "project": {"owner": {"id": 4}, "assignee": {"id": 805}, "organization": {"id": 962}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 222}, "user": {"role": null}}}, "resource": {"id": 380, "owner": {"id": 492}, "assignee": {"id": 512}, "organization": {"id": 651}, "project": {"owner": {"id": 84}, "assignee": {"id": 841}, "organization": {"id": 931}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"id": 362, "owner": {"id": 475}, "assignee": {"id": 590}, "organization": {"id": 643}, "project": {"owner": {"id": 95}, "assignee": {"id": 818}, "organization": {"id": 918}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 27}, "user": {"role": "owner"}}}, "resource": {"id": 364, "owner": {"id": 452}, "assignee": {"id": 543}, "organization": {"id": 166}, "project": {"owner": {"id": 27}, "assignee": {"id": 845}, "organization": {"id": 979}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 64}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 422}, "assignee": {"id": 546}, "organization": {"id": 192}, "project": {"owner": {"id": 64}, "assignee": {"id": 863}, "organization": {"id": 999}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 95}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 403}, "assignee": {"id": 559}, "organization": {"id": 667}, "project": {"owner": {"id": 95}, "assignee": {"id": 893}, "organization": {"id": 993}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 443}, "assignee": {"id": 580}, "organization": {"id": 632}, "project": {"owner": {"id": 87}, "assignee": {"id": 814}, "organization": {"id": 944}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 151, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 349, "owner": {"id": 465}, "assignee": {"id": 569}, "organization": {"id": 151}, "project": {"owner": {"id": 52}, "assignee": {"id": 813}, "organization": {"id": 928}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"id": 379, "owner": {"id": 424}, "assignee": {"id": 522}, "organization": {"id": 161}, "project": {"owner": {"id": 13}, "assignee": {"id": 869}, "organization": {"id": 993}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 156, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"id": 331, "owner": {"id": 486}, "assignee": {"id": 519}, "organization": {"id": 656}, "project": {"owner": {"id": 82}, "assignee": {"id": 818}, "organization": {"id": 965}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"id": 396, "owner": {"id": 470}, "assignee": {"id": 514}, "organization": {"id": 692}, "project": {"owner": {"id": 86}, "assignee": {"id": 831}, "organization": {"id": 943}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"id": 376, "owner": {"id": 413}, "assignee": {"id": 513}, "organization": {"id": 163}, "project": {"owner": {"id": 73}, "assignee": {"id": 843}, "organization": {"id": 955}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 474}, "assignee": {"id": 579}, "organization": {"id": 146}, "project": {"owner": {"id": 83}, "assignee": {"id": 829}, "organization": {"id": 917}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 116, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 314, "owner": {"id": 491}, "assignee": {"id": 547}, "organization": {"id": 622}, "project": {"owner": {"id": 9}, "assignee": {"id": 896}, "organization": {"id": 937}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"id": 301, "owner": {"id": 400}, "assignee": {"id": 586}, "organization": {"id": 638}, "project": {"owner": {"id": 54}, "assignee": {"id": 854}, "organization": {"id": 900}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"id": 324, "owner": {"id": 405}, "assignee": {"id": 598}, "organization": {"id": 171}, "project": {"owner": {"id": 76}, "assignee": {"id": 814}, "organization": {"id": 983}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"id": 380, "owner": {"id": 414}, "assignee": {"id": 507}, "organization": {"id": 168}, "project": {"owner": {"id": 94}, "assignee": {"id": 890}, "organization": {"id": 943}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": {"id": 149, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 490}, "assignee": {"id": 560}, "organization": {"id": 617}, "project": {"owner": {"id": 88}, "assignee": {"id": 820}, "organization": {"id": 968}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 483}, "assignee": {"id": 564}, "organization": {"id": 652}, "project": {"owner": {"id": 50}, "assignee": {"id": 860}, "organization": {"id": 974}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 367, "owner": {"id": 409}, "assignee": {"id": 527}, "organization": {"id": 137}, "project": {"owner": {"id": 86}, "assignee": {"id": 889}, "organization": {"id": 957}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": {"id": 149, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 491}, "assignee": {"id": 541}, "organization": {"id": 149}, "project": {"owner": {"id": 39}, "assignee": {"id": 866}, "organization": {"id": 992}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 371, "owner": {"id": 467}, "assignee": {"id": 530}, "organization": {"id": 606}, "project": {"owner": {"id": 35}, "assignee": {"id": 892}, "organization": {"id": 987}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 407}, "assignee": {"id": 560}, "organization": {"id": 619}, "project": {"owner": {"id": 16}, "assignee": {"id": 857}, "organization": {"id": 986}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 413}, "assignee": {"id": 586}, "organization": {"id": 191}, "project": {"owner": {"id": 766}, "assignee": {"id": 44}, "organization": {"id": 965}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 402}, "assignee": {"id": 520}, "organization": {"id": 134}, "project": {"owner": {"id": 745}, "assignee": {"id": 58}, "organization": {"id": 980}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 478}, "assignee": {"id": 530}, "organization": {"id": 643}, "project": {"owner": {"id": 727}, "assignee": {"id": 70}, "organization": {"id": 953}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"id": 319, "owner": {"id": 488}, "assignee": {"id": 521}, "organization": {"id": 666}, "project": {"owner": {"id": 713}, "assignee": {"id": 85}, "organization": {"id": 958}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 71, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"id": 377, "owner": {"id": 430}, "assignee": {"id": 523}, "organization": {"id": 194}, "project": {"owner": {"id": 759}, "assignee": {"id": 71}, "organization": {"id": 938}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 242}, "user": {"role": "maintainer"}}}, "resource": {"id": 321, "owner": {"id": 476}, "assignee": {"id": 548}, "organization": {"id": 193}, "project": {"owner": {"id": 716}, "assignee": {"id": 53}, "organization": {"id": 983}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 403}, "assignee": {"id": 529}, "organization": {"id": 614}, "project": {"owner": {"id": 787}, "assignee": {"id": 53}, "organization": {"id": 978}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 71, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 355, "owner": {"id": 446}, "assignee": {"id": 542}, "organization": {"id": 667}, "project": {"owner": {"id": 709}, "assignee": {"id": 71}, "organization": {"id": 988}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 7, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 351, "owner": {"id": 454}, "assignee": {"id": 503}, "organization": {"id": 159}, "project": {"owner": {"id": 784}, "assignee": {"id": 7}, "organization": {"id": 924}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"id": 327, "owner": {"id": 464}, "assignee": {"id": 538}, "organization": {"id": 186}, "project": {"owner": {"id": 704}, "assignee": {"id": 14}, "organization": {"id": 926}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"id": 301, "owner": {"id": 445}, "assignee": {"id": 547}, "organization": {"id": 677}, "project": {"owner": {"id": 770}, "assignee": {"id": 91}, "organization": {"id": 957}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 197, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"id": 339, "owner": {"id": 413}, "assignee": {"id": 545}, "organization": {"id": 686}, "project": {"owner": {"id": 789}, "assignee": {"id": 53}, "organization": {"id": 997}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 413}, "assignee": {"id": 556}, "organization": {"id": 147}, "project": {"owner": {"id": 728}, "assignee": {"id": 93}, "organization": {"id": 966}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 149, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 440}, "assignee": {"id": 577}, "organization": {"id": 149}, "project": {"owner": {"id": 769}, "assignee": {"id": 32}, "organization": {"id": 926}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 286}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 457}, "assignee": {"id": 597}, "organization": {"id": 662}, "project": {"owner": {"id": 772}, "assignee": {"id": 54}, "organization": {"id": 900}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 431}, "assignee": {"id": 568}, "organization": {"id": 664}, "project": {"owner": {"id": 730}, "assignee": {"id": 13}, "organization": {"id": 994}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 366, "owner": {"id": 486}, "assignee": {"id": 526}, "organization": {"id": 182}, "project": {"owner": {"id": 750}, "assignee": {"id": 89}, "organization": {"id": 900}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 451}, "assignee": {"id": 595}, "organization": {"id": 161}, "project": {"owner": {"id": 774}, "assignee": {"id": 82}, "organization": {"id": 908}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 371, "owner": {"id": 413}, "assignee": {"id": 557}, "organization": {"id": 608}, "project": {"owner": {"id": 714}, "assignee": {"id": 20}, "organization": {"id": 956}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"id": 318, "owner": {"id": 440}, "assignee": {"id": 545}, "organization": {"id": 631}, "project": {"owner": {"id": 702}, "assignee": {"id": 11}, "organization": {"id": 942}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 425}, "assignee": {"id": 554}, "organization": {"id": 104}, "project": {"owner": {"id": 761}, "assignee": {"id": 2}, "organization": {"id": 962}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 76}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 450}, "assignee": {"id": 589}, "organization": {"id": 151}, "project": {"owner": {"id": 761}, "assignee": {"id": 76}, "organization": {"id": 900}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 401}, "assignee": {"id": 570}, "organization": {"id": 683}, "project": {"owner": {"id": 761}, "assignee": {"id": 56}, "organization": {"id": 941}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"id": 313, "owner": {"id": 485}, "assignee": {"id": 595}, "organization": {"id": 609}, "project": {"owner": {"id": 716}, "assignee": {"id": 69}, "organization": {"id": 983}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 429}, "assignee": {"id": 553}, "organization": {"id": 191}, "project": {"owner": {"id": 735}, "assignee": {"id": 23}, "organization": {"id": 917}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"id": 389, "owner": {"id": 499}, "assignee": {"id": 503}, "organization": {"id": 104}, "project": {"owner": {"id": 759}, "assignee": {"id": 37}, "organization": {"id": 996}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 481}, "assignee": {"id": 501}, "organization": {"id": 651}, "project": {"owner": {"id": 719}, "assignee": {"id": 65}, "organization": {"id": 952}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 421}, "assignee": {"id": 507}, "organization": {"id": 605}, "project": {"owner": {"id": 789}, "assignee": {"id": 73}, "organization": {"id": 965}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"id": 394, "owner": {"id": 425}, "assignee": {"id": 573}, "organization": {"id": 108}, "project": {"owner": {"id": 781}, "assignee": {"id": 95}, "organization": {"id": 904}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 436}, "assignee": {"id": 514}, "organization": {"id": 181}, "project": {"owner": {"id": 736}, "assignee": {"id": 76}, "organization": {"id": 956}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 404}, "assignee": {"id": 587}, "organization": {"id": 647}, "project": {"owner": {"id": 763}, "assignee": {"id": 60}, "organization": {"id": 996}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 294}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 450}, "assignee": {"id": 593}, "organization": {"id": 671}, "project": {"owner": {"id": 700}, "assignee": {"id": 50}, "organization": {"id": 948}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 382, "owner": {"id": 465}, "assignee": {"id": 508}, "organization": {"id": 163}, "project": {"owner": {"id": 704}, "assignee": {"id": 13}, "organization": {"id": 928}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"id": 334, "owner": {"id": 497}, "assignee": {"id": 514}, "organization": {"id": 167}, "project": {"owner": {"id": 789}, "assignee": {"id": 42}, "organization": {"id": 966}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 434}, "assignee": {"id": 510}, "organization": {"id": 655}, "project": {"owner": {"id": 766}, "assignee": {"id": 40}, "organization": {"id": 939}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 460}, "assignee": {"id": 522}, "organization": {"id": 673}, "project": {"owner": {"id": 738}, "assignee": {"id": 89}, "organization": {"id": 925}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 497}, "assignee": {"id": 537}, "organization": {"id": 117}, "project": {"owner": {"id": 769}, "assignee": {"id": 51}, "organization": {"id": 997}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 222}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 410}, "assignee": {"id": 554}, "organization": {"id": 192}, "project": {"owner": {"id": 727}, "assignee": {"id": 68}, "organization": {"id": 962}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 159, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 454}, "assignee": {"id": 560}, "organization": {"id": 613}, "project": {"owner": {"id": 790}, "assignee": {"id": 19}, "organization": {"id": 975}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 233}, "user": {"role": null}}}, "resource": {"id": 399, "owner": {"id": 489}, "assignee": {"id": 543}, "organization": {"id": 636}, "project": {"owner": {"id": 756}, "assignee": {"id": 24}, "organization": {"id": 979}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 59}, "user": {"role": "owner"}}}, "resource": {"id": 348, "owner": {"id": 410}, "assignee": {"id": 593}, "organization": {"id": 141}, "project": {"owner": {"id": 782}, "assignee": {"id": 59}, "organization": {"id": 997}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 163, "owner": {"id": 95}, "user": {"role": "owner"}}}, "resource": {"id": 397, "owner": {"id": 425}, "assignee": {"id": 552}, "organization": {"id": 163}, "project": {"owner": {"id": 745}, "assignee": {"id": 95}, "organization": {"id": 959}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 408}, "assignee": {"id": 556}, "organization": {"id": 676}, "project": {"owner": {"id": 772}, "assignee": {"id": 40}, "organization": {"id": 997}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"id": 337, "owner": {"id": 461}, "assignee": {"id": 554}, "organization": {"id": 645}, "project": {"owner": {"id": 718}, "assignee": {"id": 57}, "organization": {"id": 930}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"id": 387, "owner": {"id": 487}, "assignee": {"id": 583}, "organization": {"id": 100}, "project": {"owner": {"id": 735}, "assignee": {"id": 95}, "organization": {"id": 932}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 390, "owner": {"id": 461}, "assignee": {"id": 552}, "organization": {"id": 168}, "project": {"owner": {"id": 769}, "assignee": {"id": 71}, "organization": {"id": 984}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 443}, "assignee": {"id": 528}, "organization": {"id": 660}, "project": {"owner": {"id": 747}, "assignee": {"id": 46}, "organization": {"id": 989}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 304, "owner": {"id": 498}, "assignee": {"id": 560}, "organization": {"id": 617}, "project": {"owner": {"id": 763}, "assignee": {"id": 62}, "organization": {"id": 981}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 193, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 463}, "assignee": {"id": 541}, "organization": {"id": 193}, "project": {"owner": {"id": 740}, "assignee": {"id": 33}, "organization": {"id": 957}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 273}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 407}, "assignee": {"id": 529}, "organization": {"id": 161}, "project": {"owner": {"id": 789}, "assignee": {"id": 56}, "organization": {"id": 925}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 487}, "assignee": {"id": 544}, "organization": {"id": 660}, "project": {"owner": {"id": 707}, "assignee": {"id": 82}, "organization": {"id": 974}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"id": 319, "owner": {"id": 433}, "assignee": {"id": 526}, "organization": {"id": 622}, "project": {"owner": {"id": 755}, "assignee": {"id": 33}, "organization": {"id": 937}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 325, "owner": {"id": 473}, "assignee": {"id": 585}, "organization": {"id": 120}, "project": {"owner": {"id": 752}, "assignee": {"id": 88}, "organization": {"id": 970}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 463}, "assignee": {"id": 577}, "organization": {"id": 185}, "project": {"owner": {"id": 700}, "assignee": {"id": 62}, "organization": {"id": 944}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 214}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 475}, "assignee": {"id": 585}, "organization": {"id": 626}, "project": {"owner": {"id": 700}, "assignee": {"id": 87}, "organization": {"id": 970}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 139, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 457}, "assignee": {"id": 516}, "organization": {"id": 692}, "project": {"owner": {"id": 795}, "assignee": {"id": 70}, "organization": {"id": 909}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 11, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"id": 341, "owner": {"id": 463}, "assignee": {"id": 589}, "organization": {"id": 164}, "project": {"owner": {"id": 760}, "assignee": {"id": 11}, "organization": {"id": 950}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"id": 302, "owner": {"id": 417}, "assignee": {"id": 514}, "organization": {"id": 102}, "project": {"owner": {"id": 731}, "assignee": {"id": 34}, "organization": {"id": 951}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 1, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"id": 325, "owner": {"id": 431}, "assignee": {"id": 520}, "organization": {"id": 682}, "project": {"owner": {"id": 771}, "assignee": {"id": 1}, "organization": {"id": 943}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 485}, "assignee": {"id": 588}, "organization": {"id": 640}, "project": {"owner": {"id": 783}, "assignee": {"id": 39}, "organization": {"id": 969}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 65}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 434}, "assignee": {"id": 509}, "organization": {"id": 198}, "project": {"owner": {"id": 798}, "assignee": {"id": 65}, "organization": {"id": 912}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 20}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 490}, "assignee": {"id": 511}, "organization": {"id": 155}, "project": {"owner": {"id": 784}, "assignee": {"id": 20}, "organization": {"id": 961}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 59}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 498}, "assignee": {"id": 558}, "organization": {"id": 663}, "project": {"owner": {"id": 710}, "assignee": {"id": 59}, "organization": {"id": 929}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 445}, "assignee": {"id": 593}, "organization": {"id": 646}, "project": {"owner": {"id": 724}, "assignee": {"id": 82}, "organization": {"id": 910}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 489}, "assignee": {"id": 530}, "organization": {"id": 164}, "project": {"owner": {"id": 723}, "assignee": {"id": 9}, "organization": {"id": 997}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 349, "owner": {"id": 401}, "assignee": {"id": 551}, "organization": {"id": 159}, "project": {"owner": {"id": 757}, "assignee": {"id": 52}, "organization": {"id": 934}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 278}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 490}, "assignee": {"id": 568}, "organization": {"id": 605}, "project": {"owner": {"id": 747}, "assignee": {"id": 45}, "organization": {"id": 947}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 303, "owner": {"id": 419}, "assignee": {"id": 503}, "organization": {"id": 649}, "project": {"owner": {"id": 757}, "assignee": {"id": 31}, "organization": {"id": 988}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 294}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 415}, "assignee": {"id": 582}, "organization": {"id": 101}, "project": {"owner": {"id": 729}, "assignee": {"id": 95}, "organization": {"id": 929}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"id": 300, "owner": {"id": 419}, "assignee": {"id": 558}, "organization": {"id": 115}, "project": {"owner": {"id": 774}, "assignee": {"id": 17}, "organization": {"id": 960}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 270}, "user": {"role": "supervisor"}}}, "resource": {"id": 330, "owner": {"id": 417}, "assignee": {"id": 551}, "organization": {"id": 637}, "project": {"owner": {"id": 727}, "assignee": {"id": 22}, "organization": {"id": 908}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 471}, "assignee": {"id": 587}, "organization": {"id": 651}, "project": {"owner": {"id": 758}, "assignee": {"id": 64}, "organization": {"id": 916}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 96, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"id": 372, "owner": {"id": 427}, "assignee": {"id": 575}, "organization": {"id": 165}, "project": {"owner": {"id": 797}, "assignee": {"id": 96}, "organization": {"id": 990}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 288}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 435}, "assignee": {"id": 533}, "organization": {"id": 179}, "project": {"owner": {"id": 702}, "assignee": {"id": 90}, "organization": {"id": 933}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 356, "owner": {"id": 401}, "assignee": {"id": 505}, "organization": {"id": 663}, "project": {"owner": {"id": 718}, "assignee": {"id": 2}, "organization": {"id": 905}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"id": 380, "owner": {"id": 426}, "assignee": {"id": 580}, "organization": {"id": 669}, "project": {"owner": {"id": 747}, "assignee": {"id": 57}, "organization": {"id": 964}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 358, "owner": {"id": 479}, "assignee": {"id": 532}, "organization": {"id": 147}, "project": {"owner": {"id": 731}, "assignee": {"id": 50}, "organization": {"id": 994}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 254}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 458}, "assignee": {"id": 560}, "organization": {"id": 147}, "project": {"owner": {"id": 788}, "assignee": {"id": 60}, "organization": {"id": 981}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"id": 302, "owner": {"id": 401}, "assignee": {"id": 505}, "organization": {"id": 615}, "project": {"owner": {"id": 738}, "assignee": {"id": 64}, "organization": {"id": 985}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 328, "owner": {"id": 451}, "assignee": {"id": 548}, "organization": {"id": 607}, "project": {"owner": {"id": 709}, "assignee": {"id": 74}, "organization": {"id": 946}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 313, "owner": {"id": 467}, "assignee": {"id": 586}, "organization": {"id": 152}, "project": {"owner": {"id": 716}, "assignee": {"id": 29}, "organization": {"id": 998}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 364, "owner": {"id": 414}, "assignee": {"id": 598}, "organization": {"id": 138}, "project": {"owner": {"id": 735}, "assignee": {"id": 84}, "organization": {"id": 974}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 154, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 325, "owner": {"id": 483}, "assignee": {"id": 540}, "organization": {"id": 646}, "project": {"owner": {"id": 705}, "assignee": {"id": 73}, "organization": {"id": 986}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"id": 321, "owner": {"id": 490}, "assignee": {"id": 577}, "organization": {"id": 671}, "project": {"owner": {"id": 728}, "assignee": {"id": 60}, "organization": {"id": 972}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 366, "owner": {"id": 492}, "assignee": {"id": 577}, "organization": {"id": 189}, "project": {"owner": {"id": 730}, "assignee": {"id": 33}, "organization": {"id": 910}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 308, "owner": {"id": 457}, "assignee": {"id": 578}, "organization": {"id": 131}, "project": {"owner": {"id": 762}, "assignee": {"id": 44}, "organization": {"id": 964}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 160, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"id": 383, "owner": {"id": 470}, "assignee": {"id": 591}, "organization": {"id": 651}, "project": {"owner": {"id": 771}, "assignee": {"id": 54}, "organization": {"id": 909}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 170, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"id": 399, "owner": {"id": 420}, "assignee": {"id": 580}, "organization": {"id": 690}, "project": {"owner": {"id": 783}, "assignee": {"id": 19}, "organization": {"id": 918}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 305, "owner": {"id": 428}, "assignee": {"id": 576}, "organization": {"id": 161}, "project": {"owner": {"id": 731}, "assignee": {"id": 30}, "organization": {"id": 955}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 434}, "assignee": {"id": 578}, "organization": {"id": 195}, "project": {"owner": {"id": 755}, "assignee": {"id": 11}, "organization": {"id": 913}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 410}, "assignee": {"id": 585}, "organization": {"id": 603}, "project": {"owner": {"id": 711}, "assignee": {"id": 78}, "organization": {"id": 997}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 307, "owner": {"id": 486}, "assignee": {"id": 517}, "organization": {"id": 699}, "project": {"owner": {"id": 781}, "assignee": {"id": 43}, "organization": {"id": 996}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": {"id": 199, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"id": 397, "owner": {"id": 438}, "assignee": {"id": 579}, "organization": {"id": 199}, "project": {"owner": {"id": 787}, "assignee": {"id": 66}, "organization": {"id": 954}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"id": 321, "owner": {"id": 443}, "assignee": {"id": 595}, "organization": {"id": 117}, "project": {"owner": {"id": 732}, "assignee": {"id": 82}, "organization": {"id": 953}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 450}, "assignee": {"id": 591}, "organization": {"id": 673}, "project": {"owner": {"id": 792}, "assignee": {"id": 74}, "organization": {"id": 993}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 300, "owner": {"id": 470}, "assignee": {"id": 591}, "organization": {"id": 635}, "project": {"owner": {"id": 757}, "assignee": {"id": 78}, "organization": {"id": 952}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": {"id": 188, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 302, "owner": {"id": 488}, "assignee": {"id": 559}, "organization": {"id": 188}, "project": {"owner": {"id": 753}, "assignee": {"id": 34}, "organization": {"id": 984}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 486}, "assignee": {"id": 598}, "organization": {"id": 168}, "project": {"owner": {"id": 708}, "assignee": {"id": 73}, "organization": {"id": 916}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"id": 394, "owner": {"id": 486}, "assignee": {"id": 521}, "organization": {"id": 691}, "project": {"owner": {"id": 748}, "assignee": {"id": 43}, "organization": {"id": 964}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 312, "owner": {"id": 405}, "assignee": {"id": 537}, "organization": {"id": 626}, "project": {"owner": {"id": 736}, "assignee": {"id": 88}, "organization": {"id": 921}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 15, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 15}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 15}, "assignee": {"id": 532}, "organization": {"id": 122}, "project": {"owner": {"id": 748}, "assignee": {"id": 834}, "organization": {"id": 917}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 189, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 4}, "assignee": {"id": 504}, "organization": {"id": 189}, "project": {"owner": {"id": 701}, "assignee": {"id": 854}, "organization": {"id": 920}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 30}, "assignee": {"id": 522}, "organization": {"id": 607}, "project": {"owner": {"id": 780}, "assignee": {"id": 888}, "organization": {"id": 921}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 333, "owner": {"id": 11}, "assignee": {"id": 506}, "organization": {"id": 689}, "project": {"owner": {"id": 777}, "assignee": {"id": 801}, "organization": {"id": 988}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"id": 310, "owner": {"id": 95}, "assignee": {"id": 556}, "organization": {"id": 110}, "project": {"owner": {"id": 764}, "assignee": {"id": 809}, "organization": {"id": 905}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 384, "owner": {"id": 85}, "assignee": {"id": 533}, "organization": {"id": 135}, "project": {"owner": {"id": 736}, "assignee": {"id": 896}, "organization": {"id": 928}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 336, "owner": {"id": 3}, "assignee": {"id": 556}, "organization": {"id": 657}, "project": {"owner": {"id": 774}, "assignee": {"id": 891}, "organization": {"id": 910}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 321, "owner": {"id": 41}, "assignee": {"id": 544}, "organization": {"id": 629}, "project": {"owner": {"id": 789}, "assignee": {"id": 837}, "organization": {"id": 927}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 116, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 333, "owner": {"id": 25}, "assignee": {"id": 586}, "organization": {"id": 116}, "project": {"owner": {"id": 785}, "assignee": {"id": 838}, "organization": {"id": 955}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 241}, "user": {"role": "supervisor"}}}, "resource": {"id": 331, "owner": {"id": 52}, "assignee": {"id": 579}, "organization": {"id": 192}, "project": {"owner": {"id": 753}, "assignee": {"id": 802}, "organization": {"id": 938}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 119, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 14}, "assignee": {"id": 520}, "organization": {"id": 617}, "project": {"owner": {"id": 762}, "assignee": {"id": 899}, "organization": {"id": 924}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 181, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 370, "owner": {"id": 42}, "assignee": {"id": 563}, "organization": {"id": 601}, "project": {"owner": {"id": 767}, "assignee": {"id": 874}, "organization": {"id": 935}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 93}, "assignee": {"id": 558}, "organization": {"id": 115}, "project": {"owner": {"id": 773}, "assignee": {"id": 833}, "organization": {"id": 906}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 250}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 21}, "assignee": {"id": 591}, "organization": {"id": 107}, "project": {"owner": {"id": 749}, "assignee": {"id": 834}, "organization": {"id": 966}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 149, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 65}, "assignee": {"id": 582}, "organization": {"id": 638}, "project": {"owner": {"id": 755}, "assignee": {"id": 824}, "organization": {"id": 941}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 93}, "assignee": {"id": 517}, "organization": {"id": 656}, "project": {"owner": {"id": 707}, "assignee": {"id": 820}, "organization": {"id": 921}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"id": 373, "owner": {"id": 39}, "assignee": {"id": 597}, "organization": {"id": 133}, "project": {"owner": {"id": 776}, "assignee": {"id": 859}, "organization": {"id": 970}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 210}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 13}, "assignee": {"id": 556}, "organization": {"id": 158}, "project": {"owner": {"id": 704}, "assignee": {"id": 884}, "organization": {"id": 947}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 365, "owner": {"id": 26}, "assignee": {"id": 558}, "organization": {"id": 684}, "project": {"owner": {"id": 711}, "assignee": {"id": 802}, "organization": {"id": 982}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 271}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 66}, "assignee": {"id": 599}, "organization": {"id": 658}, "project": {"owner": {"id": 740}, "assignee": {"id": 849}, "organization": {"id": 978}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 95}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 95}, "assignee": {"id": 570}, "organization": {"id": 119}, "project": {"owner": {"id": 707}, "assignee": {"id": 882}, "organization": {"id": 918}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"id": 328, "owner": {"id": 31}, "assignee": {"id": 572}, "organization": {"id": 165}, "project": {"owner": {"id": 754}, "assignee": {"id": 836}, "organization": {"id": 948}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"id": 308, "owner": {"id": 56}, "assignee": {"id": 556}, "organization": {"id": 681}, "project": {"owner": {"id": 700}, "assignee": {"id": 843}, "organization": {"id": 906}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 39}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 39}, "assignee": {"id": 516}, "organization": {"id": 606}, "project": {"owner": {"id": 715}, "assignee": {"id": 868}, "organization": {"id": 975}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 346, "owner": {"id": 31}, "assignee": {"id": 560}, "organization": {"id": 144}, "project": {"owner": {"id": 747}, "assignee": {"id": 894}, "organization": {"id": 974}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 90}, "assignee": {"id": 503}, "organization": {"id": 167}, "project": {"owner": {"id": 752}, "assignee": {"id": 855}, "organization": {"id": 928}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 318, "owner": {"id": 4}, "assignee": {"id": 558}, "organization": {"id": 663}, "project": {"owner": {"id": 718}, "assignee": {"id": 871}, "organization": {"id": 923}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 38}, "assignee": {"id": 572}, "organization": {"id": 617}, "project": {"owner": {"id": 763}, "assignee": {"id": 826}, "organization": {"id": 987}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"id": 325, "owner": {"id": 52}, "assignee": {"id": 502}, "organization": {"id": 163}, "project": {"owner": {"id": 707}, "assignee": {"id": 869}, "organization": {"id": 993}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 283}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 21}, "assignee": {"id": 561}, "organization": {"id": 154}, "project": {"owner": {"id": 727}, "assignee": {"id": 817}, "organization": {"id": 996}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"id": 389, "owner": {"id": 37}, "assignee": {"id": 596}, "organization": {"id": 629}, "project": {"owner": {"id": 742}, "assignee": {"id": 814}, "organization": {"id": 942}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"id": 352, "owner": {"id": 37}, "assignee": {"id": 583}, "organization": {"id": 645}, "project": {"owner": {"id": 784}, "assignee": {"id": 803}, "organization": {"id": 980}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 98}, "assignee": {"id": 576}, "organization": {"id": 180}, "project": {"owner": {"id": 710}, "assignee": {"id": 854}, "organization": {"id": 966}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 196, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 47}, "assignee": {"id": 554}, "organization": {"id": 196}, "project": {"owner": {"id": 795}, "assignee": {"id": 829}, "organization": {"id": 967}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 7}, "assignee": {"id": 519}, "organization": {"id": 656}, "project": {"owner": {"id": 744}, "assignee": {"id": 879}, "organization": {"id": 958}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 358, "owner": {"id": 95}, "assignee": {"id": 502}, "organization": {"id": 649}, "project": {"owner": {"id": 715}, "assignee": {"id": 800}, "organization": {"id": 971}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 330, "owner": {"id": 47}, "assignee": {"id": 550}, "organization": {"id": 110}, "project": {"owner": {"id": 798}, "assignee": {"id": 891}, "organization": {"id": 948}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 378, "owner": {"id": 33}, "assignee": {"id": 537}, "organization": {"id": 106}, "project": {"owner": {"id": 793}, "assignee": {"id": 807}, "organization": {"id": 938}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 62}, "assignee": {"id": 535}, "organization": {"id": 620}, "project": {"owner": {"id": 789}, "assignee": {"id": 842}, "organization": {"id": 909}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 85}, "assignee": {"id": 516}, "organization": {"id": 680}, "project": {"owner": {"id": 727}, "assignee": {"id": 895}, "organization": {"id": 935}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 78}, "assignee": {"id": 516}, "organization": {"id": 164}, "project": {"owner": {"id": 709}, "assignee": {"id": 888}, "organization": {"id": 928}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 35}, "assignee": {"id": 596}, "organization": {"id": 112}, "project": {"owner": {"id": 746}, "assignee": {"id": 819}, "organization": {"id": 984}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 9, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 9}, "assignee": {"id": 586}, "organization": {"id": 668}, "project": {"owner": {"id": 726}, "assignee": {"id": 868}, "organization": {"id": 989}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 193, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"id": 383, "owner": {"id": 46}, "assignee": {"id": 580}, "organization": {"id": 650}, "project": {"owner": {"id": 775}, "assignee": {"id": 884}, "organization": {"id": 939}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 154, "owner": {"id": 281}, "user": {"role": "maintainer"}}}, "resource": {"id": 383, "owner": {"id": 15}, "assignee": {"id": 506}, "organization": {"id": 154}, "project": {"owner": {"id": 729}, "assignee": {"id": 818}, "organization": {"id": 984}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 83}, "assignee": {"id": 551}, "organization": {"id": 194}, "project": {"owner": {"id": 756}, "assignee": {"id": 893}, "organization": {"id": 978}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 95}, "assignee": {"id": 586}, "organization": {"id": 678}, "project": {"owner": {"id": 761}, "assignee": {"id": 814}, "organization": {"id": 991}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 128, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 396, "owner": {"id": 35}, "assignee": {"id": 569}, "organization": {"id": 687}, "project": {"owner": {"id": 779}, "assignee": {"id": 855}, "organization": {"id": 937}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 182, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 44}, "assignee": {"id": 599}, "organization": {"id": 182}, "project": {"owner": {"id": 784}, "assignee": {"id": 809}, "organization": {"id": 962}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 123, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 309, "owner": {"id": 16}, "assignee": {"id": 586}, "organization": {"id": 123}, "project": {"owner": {"id": 708}, "assignee": {"id": 831}, "organization": {"id": 925}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 39}, "assignee": {"id": 562}, "organization": {"id": 684}, "project": {"owner": {"id": 718}, "assignee": {"id": 857}, "organization": {"id": 972}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 295}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 35}, "assignee": {"id": 503}, "organization": {"id": 658}, "project": {"owner": {"id": 763}, "assignee": {"id": 887}, "organization": {"id": 924}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 69}, "assignee": {"id": 501}, "organization": {"id": 108}, "project": {"owner": {"id": 758}, "assignee": {"id": 824}, "organization": {"id": 966}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 245}, "user": {"role": "worker"}}}, "resource": {"id": 378, "owner": {"id": 70}, "assignee": {"id": 503}, "organization": {"id": 168}, "project": {"owner": {"id": 783}, "assignee": {"id": 825}, "organization": {"id": 940}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"id": 301, "owner": {"id": 92}, "assignee": {"id": 576}, "organization": {"id": 615}, "project": {"owner": {"id": 792}, "assignee": {"id": 830}, "organization": {"id": 933}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 33, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 300, "owner": {"id": 33}, "assignee": {"id": 535}, "organization": {"id": 621}, "project": {"owner": {"id": 753}, "assignee": {"id": 859}, "organization": {"id": 986}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 366, "owner": {"id": 0}, "assignee": {"id": 578}, "organization": {"id": 195}, "project": {"owner": {"id": 794}, "assignee": {"id": 862}, "organization": {"id": 911}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 193, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 43}, "assignee": {"id": 577}, "organization": {"id": 193}, "project": {"owner": {"id": 752}, "assignee": {"id": 868}, "organization": {"id": 912}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 396, "owner": {"id": 31}, "assignee": {"id": 555}, "organization": {"id": 682}, "project": {"owner": {"id": 712}, "assignee": {"id": 889}, "organization": {"id": 979}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 271}, "user": {"role": null}}}, "resource": {"id": 309, "owner": {"id": 91}, "assignee": {"id": 538}, "organization": {"id": 629}, "project": {"owner": {"id": 747}, "assignee": {"id": 865}, "organization": {"id": 989}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 63}, "assignee": {"id": 593}, "organization": {"id": 119}, "project": {"owner": {"id": 783}, "assignee": {"id": 834}, "organization": {"id": 935}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 93}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 93}, "assignee": {"id": 599}, "organization": {"id": 128}, "project": {"owner": {"id": 760}, "assignee": {"id": 862}, "organization": {"id": 954}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 347, "owner": {"id": 24}, "assignee": {"id": 557}, "organization": {"id": 699}, "project": {"owner": {"id": 770}, "assignee": {"id": 882}, "organization": {"id": 942}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 330, "owner": {"id": 74}, "assignee": {"id": 565}, "organization": {"id": 615}, "project": {"owner": {"id": 791}, "assignee": {"id": 897}, "organization": {"id": 944}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 99}, "assignee": {"id": 548}, "organization": {"id": 173}, "project": {"owner": {"id": 765}, "assignee": {"id": 859}, "organization": {"id": 965}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 92}, "assignee": {"id": 524}, "organization": {"id": 118}, "project": {"owner": {"id": 712}, "assignee": {"id": 852}, "organization": {"id": 959}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 22}, "assignee": {"id": 570}, "organization": {"id": 617}, "project": {"owner": {"id": 773}, "assignee": {"id": 859}, "organization": {"id": 955}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"id": 336, "owner": {"id": 6}, "assignee": {"id": 540}, "organization": {"id": 609}, "project": {"owner": {"id": 704}, "assignee": {"id": 879}, "organization": {"id": 938}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 3, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 362, "owner": {"id": 3}, "assignee": {"id": 509}, "organization": {"id": 110}, "project": {"owner": {"id": 761}, "assignee": {"id": 809}, "organization": {"id": 900}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 91}, "assignee": {"id": 558}, "organization": {"id": 122}, "project": {"owner": {"id": 769}, "assignee": {"id": 849}, "organization": {"id": 954}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 63}, "assignee": {"id": 549}, "organization": {"id": 652}, "project": {"owner": {"id": 736}, "assignee": {"id": 862}, "organization": {"id": 939}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"id": 384, "owner": {"id": 7}, "assignee": {"id": 557}, "organization": {"id": 697}, "project": {"owner": {"id": 799}, "assignee": {"id": 842}, "organization": {"id": 941}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 59}, "assignee": {"id": 544}, "organization": {"id": 181}, "project": {"owner": {"id": 770}, "assignee": {"id": 813}, "organization": {"id": 971}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 49}, "assignee": {"id": 572}, "organization": {"id": 192}, "project": {"owner": {"id": 757}, "assignee": {"id": 884}, "organization": {"id": 978}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"id": 397, "owner": {"id": 75}, "assignee": {"id": 535}, "organization": {"id": 631}, "project": {"owner": {"id": 745}, "assignee": {"id": 851}, "organization": {"id": 975}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"id": 321, "owner": {"id": 6}, "assignee": {"id": 595}, "organization": {"id": 660}, "project": {"owner": {"id": 719}, "assignee": {"id": 845}, "organization": {"id": 966}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 237}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 97}, "assignee": {"id": 583}, "organization": {"id": 165}, "project": {"owner": {"id": 733}, "assignee": {"id": 882}, "organization": {"id": 979}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 29}, "assignee": {"id": 541}, "organization": {"id": 126}, "project": {"owner": {"id": 753}, "assignee": {"id": 893}, "organization": {"id": 925}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 315, "owner": {"id": 1}, "assignee": {"id": 555}, "organization": {"id": 630}, "project": {"owner": {"id": 751}, "assignee": {"id": 814}, "organization": {"id": 948}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"id": 363, "owner": {"id": 8}, "assignee": {"id": 539}, "organization": {"id": 615}, "project": {"owner": {"id": 766}, "assignee": {"id": 840}, "organization": {"id": 922}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 306, "owner": {"id": 78}, "assignee": {"id": 536}, "organization": {"id": 121}, "project": {"owner": {"id": 756}, "assignee": {"id": 890}, "organization": {"id": 900}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 29}, "assignee": {"id": 548}, "organization": {"id": 131}, "project": {"owner": {"id": 708}, "assignee": {"id": 818}, "organization": {"id": 951}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"id": 327, "owner": {"id": 26}, "assignee": {"id": 574}, "organization": {"id": 623}, "project": {"owner": {"id": 782}, "assignee": {"id": 821}, "organization": {"id": 978}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": {"id": 188, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 88}, "assignee": {"id": 567}, "organization": {"id": 664}, "project": {"owner": {"id": 753}, "assignee": {"id": 856}, "organization": {"id": 988}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 84}, "assignee": {"id": 532}, "organization": {"id": 111}, "project": {"owner": {"id": 775}, "assignee": {"id": 857}, "organization": {"id": 955}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 365, "owner": {"id": 21}, "assignee": {"id": 533}, "organization": {"id": 148}, "project": {"owner": {"id": 762}, "assignee": {"id": 810}, "organization": {"id": 993}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 227}, "user": {"role": "maintainer"}}}, "resource": {"id": 376, "owner": {"id": 38}, "assignee": {"id": 535}, "organization": {"id": 602}, "project": {"owner": {"id": 775}, "assignee": {"id": 896}, "organization": {"id": 945}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 92, "privilege": "none"}, "organization": {"id": 118, "owner": {"id": 205}, "user": {"role": "maintainer"}}}, "resource": {"id": 331, "owner": {"id": 92}, "assignee": {"id": 551}, "organization": {"id": 601}, "project": {"owner": {"id": 796}, "assignee": {"id": 825}, "organization": {"id": 979}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 0}, "assignee": {"id": 503}, "organization": {"id": 106}, "project": {"owner": {"id": 763}, "assignee": {"id": 858}, "organization": {"id": 931}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 79}, "assignee": {"id": 575}, "organization": {"id": 137}, "project": {"owner": {"id": 776}, "assignee": {"id": 839}, "organization": {"id": 972}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 384, "owner": {"id": 31}, "assignee": {"id": 572}, "organization": {"id": 656}, "project": {"owner": {"id": 736}, "assignee": {"id": 854}, "organization": {"id": 902}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 60}, "assignee": {"id": 591}, "organization": {"id": 625}, "project": {"owner": {"id": 753}, "assignee": {"id": 891}, "organization": {"id": 936}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"id": 333, "owner": {"id": 83}, "assignee": {"id": 542}, "organization": {"id": 123}, "project": {"owner": {"id": 753}, "assignee": {"id": 872}, "organization": {"id": 958}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 6}, "assignee": {"id": 593}, "organization": {"id": 189}, "project": {"owner": {"id": 707}, "assignee": {"id": 832}, "organization": {"id": 947}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 142, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 38}, "assignee": {"id": 508}, "organization": {"id": 648}, "project": {"owner": {"id": 736}, "assignee": {"id": 857}, "organization": {"id": 911}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"id": 388, "owner": {"id": 4}, "assignee": {"id": 522}, "organization": {"id": 614}, "project": {"owner": {"id": 738}, "assignee": {"id": 875}, "organization": {"id": 913}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 332, "owner": {"id": 77}, "assignee": {"id": 531}, "organization": {"id": 146}, "project": {"owner": {"id": 759}, "assignee": {"id": 872}, "organization": {"id": 934}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 23}, "assignee": {"id": 529}, "organization": {"id": 141}, "project": {"owner": {"id": 796}, "assignee": {"id": 806}, "organization": {"id": 993}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 396, "owner": {"id": 54}, "assignee": {"id": 579}, "organization": {"id": 607}, "project": {"owner": {"id": 745}, "assignee": {"id": 837}, "organization": {"id": 917}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 46}, "assignee": {"id": 589}, "organization": {"id": 619}, "project": {"owner": {"id": 734}, "assignee": {"id": 859}, "organization": {"id": 906}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 497}, "assignee": {"id": 96}, "organization": {"id": 118}, "project": {"owner": {"id": 795}, "assignee": {"id": 807}, "organization": {"id": 929}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 445}, "assignee": {"id": 4}, "organization": {"id": 157}, "project": {"owner": {"id": 742}, "assignee": {"id": 876}, "organization": {"id": 938}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 99, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 384, "owner": {"id": 456}, "assignee": {"id": 99}, "organization": {"id": 628}, "project": {"owner": {"id": 783}, "assignee": {"id": 876}, "organization": {"id": 988}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 466}, "assignee": {"id": 82}, "organization": {"id": 633}, "project": {"owner": {"id": 748}, "assignee": {"id": 880}, "organization": {"id": 981}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 255}, "user": {"role": "maintainer"}}}, "resource": {"id": 365, "owner": {"id": 419}, "assignee": {"id": 75}, "organization": {"id": 169}, "project": {"owner": {"id": 798}, "assignee": {"id": 828}, "organization": {"id": 936}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"id": 330, "owner": {"id": 459}, "assignee": {"id": 69}, "organization": {"id": 157}, "project": {"owner": {"id": 755}, "assignee": {"id": 889}, "organization": {"id": 905}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 356, "owner": {"id": 400}, "assignee": {"id": 45}, "organization": {"id": 638}, "project": {"owner": {"id": 752}, "assignee": {"id": 891}, "organization": {"id": 907}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 188, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"id": 362, "owner": {"id": 443}, "assignee": {"id": 95}, "organization": {"id": 619}, "project": {"owner": {"id": 729}, "assignee": {"id": 829}, "organization": {"id": 993}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 137, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 300, "owner": {"id": 427}, "assignee": {"id": 91}, "organization": {"id": 137}, "project": {"owner": {"id": 725}, "assignee": {"id": 804}, "organization": {"id": 971}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 160, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 371, "owner": {"id": 476}, "assignee": {"id": 66}, "organization": {"id": 160}, "project": {"owner": {"id": 740}, "assignee": {"id": 838}, "organization": {"id": 969}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 472}, "assignee": {"id": 75}, "organization": {"id": 626}, "project": {"owner": {"id": 742}, "assignee": {"id": 890}, "organization": {"id": 904}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 99, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 214}, "user": {"role": "supervisor"}}}, "resource": {"id": 393, "owner": {"id": 484}, "assignee": {"id": 99}, "organization": {"id": 644}, "project": {"owner": {"id": 788}, "assignee": {"id": 859}, "organization": {"id": 957}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 419}, "assignee": {"id": 54}, "organization": {"id": 142}, "project": {"owner": {"id": 781}, "assignee": {"id": 876}, "organization": {"id": 978}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": {"id": 189, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"id": 366, "owner": {"id": 472}, "assignee": {"id": 67}, "organization": {"id": 189}, "project": {"owner": {"id": 797}, "assignee": {"id": 826}, "organization": {"id": 925}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 373, "owner": {"id": 420}, "assignee": {"id": 79}, "organization": {"id": 679}, "project": {"owner": {"id": 756}, "assignee": {"id": 888}, "organization": {"id": 932}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 197, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 410}, "assignee": {"id": 16}, "organization": {"id": 677}, "project": {"owner": {"id": 720}, "assignee": {"id": 832}, "organization": {"id": 941}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 487}, "assignee": {"id": 75}, "organization": {"id": 115}, "project": {"owner": {"id": 707}, "assignee": {"id": 837}, "organization": {"id": 964}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 475}, "assignee": {"id": 42}, "organization": {"id": 183}, "project": {"owner": {"id": 705}, "assignee": {"id": 803}, "organization": {"id": 971}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"id": 319, "owner": {"id": 402}, "assignee": {"id": 18}, "organization": {"id": 692}, "project": {"owner": {"id": 769}, "assignee": {"id": 867}, "organization": {"id": 988}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 340, "owner": {"id": 411}, "assignee": {"id": 52}, "organization": {"id": 639}, "project": {"owner": {"id": 733}, "assignee": {"id": 884}, "organization": {"id": 985}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 375, "owner": {"id": 426}, "assignee": {"id": 73}, "organization": {"id": 157}, "project": {"owner": {"id": 765}, "assignee": {"id": 806}, "organization": {"id": 974}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 328, "owner": {"id": 444}, "assignee": {"id": 86}, "organization": {"id": 184}, "project": {"owner": {"id": 724}, "assignee": {"id": 804}, "organization": {"id": 999}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"id": 307, "owner": {"id": 486}, "assignee": {"id": 79}, "organization": {"id": 607}, "project": {"owner": {"id": 723}, "assignee": {"id": 871}, "organization": {"id": 989}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 76}, "user": {"role": "owner"}}}, "resource": {"id": 367, "owner": {"id": 408}, "assignee": {"id": 76}, "organization": {"id": 668}, "project": {"owner": {"id": 772}, "assignee": {"id": 829}, "organization": {"id": 915}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 411}, "assignee": {"id": 47}, "organization": {"id": 170}, "project": {"owner": {"id": 710}, "assignee": {"id": 842}, "organization": {"id": 980}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 336, "owner": {"id": 447}, "assignee": {"id": 40}, "organization": {"id": 115}, "project": {"owner": {"id": 797}, "assignee": {"id": 810}, "organization": {"id": 916}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 304, "owner": {"id": 460}, "assignee": {"id": 69}, "organization": {"id": 622}, "project": {"owner": {"id": 729}, "assignee": {"id": 860}, "organization": {"id": 956}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"id": 331, "owner": {"id": 454}, "assignee": {"id": 47}, "organization": {"id": 634}, "project": {"owner": {"id": 718}, "assignee": {"id": 884}, "organization": {"id": 902}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"id": 335, "owner": {"id": 472}, "assignee": {"id": 83}, "organization": {"id": 126}, "project": {"owner": {"id": 790}, "assignee": {"id": 818}, "organization": {"id": 975}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 441}, "assignee": {"id": 19}, "organization": {"id": 138}, "project": {"owner": {"id": 760}, "assignee": {"id": 873}, "organization": {"id": 992}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 283}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 482}, "assignee": {"id": 25}, "organization": {"id": 677}, "project": {"owner": {"id": 733}, "assignee": {"id": 888}, "organization": {"id": 927}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 379, "owner": {"id": 475}, "assignee": {"id": 38}, "organization": {"id": 650}, "project": {"owner": {"id": 788}, "assignee": {"id": 808}, "organization": {"id": 999}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 477}, "assignee": {"id": 76}, "organization": {"id": 169}, "project": {"owner": {"id": 706}, "assignee": {"id": 801}, "organization": {"id": 913}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 471}, "assignee": {"id": 95}, "organization": {"id": 122}, "project": {"owner": {"id": 746}, "assignee": {"id": 873}, "organization": {"id": 943}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 189, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 478}, "assignee": {"id": 48}, "organization": {"id": 617}, "project": {"owner": {"id": 737}, "assignee": {"id": 838}, "organization": {"id": 938}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 214}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 449}, "assignee": {"id": 82}, "organization": {"id": 695}, "project": {"owner": {"id": 765}, "assignee": {"id": 824}, "organization": {"id": 922}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 434}, "assignee": {"id": 75}, "organization": {"id": 106}, "project": {"owner": {"id": 724}, "assignee": {"id": 832}, "organization": {"id": 955}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 499}, "assignee": {"id": 18}, "organization": {"id": 129}, "project": {"owner": {"id": 726}, "assignee": {"id": 833}, "organization": {"id": 979}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"id": 305, "owner": {"id": 402}, "assignee": {"id": 96}, "organization": {"id": 638}, "project": {"owner": {"id": 773}, "assignee": {"id": 851}, "organization": {"id": 999}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 359, "owner": {"id": 413}, "assignee": {"id": 61}, "organization": {"id": 697}, "project": {"owner": {"id": 752}, "assignee": {"id": 884}, "organization": {"id": 916}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 2}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 457}, "assignee": {"id": 2}, "organization": {"id": 197}, "project": {"owner": {"id": 721}, "assignee": {"id": 874}, "organization": {"id": 975}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"id": 345, "owner": {"id": 437}, "assignee": {"id": 50}, "organization": {"id": 120}, "project": {"owner": {"id": 706}, "assignee": {"id": 880}, "organization": {"id": 938}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"id": 372, "owner": {"id": 411}, "assignee": {"id": 94}, "organization": {"id": 637}, "project": {"owner": {"id": 738}, "assignee": {"id": 893}, "organization": {"id": 999}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 322, "owner": {"id": 444}, "assignee": {"id": 21}, "organization": {"id": 699}, "project": {"owner": {"id": 739}, "assignee": {"id": 824}, "organization": {"id": 956}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 193, "owner": {"id": 289}, "user": {"role": "maintainer"}}}, "resource": {"id": 348, "owner": {"id": 458}, "assignee": {"id": 89}, "organization": {"id": 193}, "project": {"owner": {"id": 712}, "assignee": {"id": 851}, "organization": {"id": 938}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 430}, "assignee": {"id": 76}, "organization": {"id": 106}, "project": {"owner": {"id": 706}, "assignee": {"id": 886}, "organization": {"id": 952}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"id": 314, "owner": {"id": 415}, "assignee": {"id": 42}, "organization": {"id": 681}, "project": {"owner": {"id": 758}, "assignee": {"id": 841}, "organization": {"id": 908}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 145, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"id": 361, "owner": {"id": 400}, "assignee": {"id": 27}, "organization": {"id": 668}, "project": {"owner": {"id": 755}, "assignee": {"id": 866}, "organization": {"id": 984}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"id": 398, "owner": {"id": 440}, "assignee": {"id": 55}, "organization": {"id": 186}, "project": {"owner": {"id": 756}, "assignee": {"id": 898}, "organization": {"id": 906}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 154, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 400}, "assignee": {"id": 18}, "organization": {"id": 154}, "project": {"owner": {"id": 722}, "assignee": {"id": 847}, "organization": {"id": 984}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 14, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 411}, "assignee": {"id": 14}, "organization": {"id": 671}, "project": {"owner": {"id": 731}, "assignee": {"id": 875}, "organization": {"id": 949}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 218}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 424}, "assignee": {"id": 88}, "organization": {"id": 631}, "project": {"owner": {"id": 765}, "assignee": {"id": 863}, "organization": {"id": 940}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 423}, "assignee": {"id": 15}, "organization": {"id": 167}, "project": {"owner": {"id": 751}, "assignee": {"id": 891}, "organization": {"id": 917}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 361, "owner": {"id": 461}, "assignee": {"id": 2}, "organization": {"id": 159}, "project": {"owner": {"id": 754}, "assignee": {"id": 860}, "organization": {"id": 932}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"id": 305, "owner": {"id": 494}, "assignee": {"id": 53}, "organization": {"id": 623}, "project": {"owner": {"id": 752}, "assignee": {"id": 871}, "organization": {"id": 954}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"id": 366, "owner": {"id": 484}, "assignee": {"id": 19}, "organization": {"id": 656}, "project": {"owner": {"id": 782}, "assignee": {"id": 871}, "organization": {"id": 949}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 237}, "user": {"role": null}}}, "resource": {"id": 383, "owner": {"id": 446}, "assignee": {"id": 42}, "organization": {"id": 166}, "project": {"owner": {"id": 761}, "assignee": {"id": 816}, "organization": {"id": 908}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"id": 345, "owner": {"id": 446}, "assignee": {"id": 51}, "organization": {"id": 120}, "project": {"owner": {"id": 790}, "assignee": {"id": 836}, "organization": {"id": 911}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 174, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 391, "owner": {"id": 424}, "assignee": {"id": 96}, "organization": {"id": 637}, "project": {"owner": {"id": 786}, "assignee": {"id": 838}, "organization": {"id": 977}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 499}, "assignee": {"id": 55}, "organization": {"id": 628}, "project": {"owner": {"id": 703}, "assignee": {"id": 802}, "organization": {"id": 998}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 96, "privilege": "worker"}, "organization": {"id": 116, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 367, "owner": {"id": 461}, "assignee": {"id": 96}, "organization": {"id": 116}, "project": {"owner": {"id": 729}, "assignee": {"id": 862}, "organization": {"id": 954}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 497}, "assignee": {"id": 68}, "organization": {"id": 109}, "project": {"owner": {"id": 724}, "assignee": {"id": 845}, "organization": {"id": 961}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"id": 397, "owner": {"id": 433}, "assignee": {"id": 1}, "organization": {"id": 687}, "project": {"owner": {"id": 730}, "assignee": {"id": 815}, "organization": {"id": 951}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 401}, "assignee": {"id": 24}, "organization": {"id": 653}, "project": {"owner": {"id": 733}, "assignee": {"id": 830}, "organization": {"id": 931}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 447}, "assignee": {"id": 59}, "organization": {"id": 138}, "project": {"owner": {"id": 727}, "assignee": {"id": 831}, "organization": {"id": 924}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 481}, "assignee": {"id": 92}, "organization": {"id": 197}, "project": {"owner": {"id": 752}, "assignee": {"id": 866}, "organization": {"id": 965}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 378, "owner": {"id": 441}, "assignee": {"id": 38}, "organization": {"id": 623}, "project": {"owner": {"id": 780}, "assignee": {"id": 869}, "organization": {"id": 945}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 79, "privilege": "worker"}, "organization": {"id": 141, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"id": 333, "owner": {"id": 472}, "assignee": {"id": 79}, "organization": {"id": 676}, "project": {"owner": {"id": 781}, "assignee": {"id": 838}, "organization": {"id": 961}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 403}, "assignee": {"id": 73}, "organization": {"id": 164}, "project": {"owner": {"id": 737}, "assignee": {"id": 810}, "organization": {"id": 935}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 406}, "assignee": {"id": 37}, "organization": {"id": 118}, "project": {"owner": {"id": 760}, "assignee": {"id": 895}, "organization": {"id": 970}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 405}, "assignee": {"id": 66}, "organization": {"id": 649}, "project": {"owner": {"id": 730}, "assignee": {"id": 897}, "organization": {"id": 900}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 482}, "assignee": {"id": 45}, "organization": {"id": 649}, "project": {"owner": {"id": 793}, "assignee": {"id": 869}, "organization": {"id": 921}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"id": 394, "owner": {"id": 465}, "assignee": {"id": 26}, "organization": {"id": 198}, "project": {"owner": {"id": 749}, "assignee": {"id": 858}, "organization": {"id": 934}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 435}, "assignee": {"id": 77}, "organization": {"id": 153}, "project": {"owner": {"id": 762}, "assignee": {"id": 851}, "organization": {"id": 990}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 458}, "assignee": {"id": 34}, "organization": {"id": 624}, "project": {"owner": {"id": 752}, "assignee": {"id": 851}, "organization": {"id": 961}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 3, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 479}, "assignee": {"id": 3}, "organization": {"id": 646}, "project": {"owner": {"id": 787}, "assignee": {"id": 850}, "organization": {"id": 930}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"id": 397, "owner": {"id": 429}, "assignee": {"id": 68}, "organization": {"id": 171}, "project": {"owner": {"id": 779}, "assignee": {"id": 863}, "organization": {"id": 937}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 301, "owner": {"id": 469}, "assignee": {"id": 89}, "organization": {"id": 139}, "project": {"owner": {"id": 776}, "assignee": {"id": 805}, "organization": {"id": 990}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 393, "owner": {"id": 444}, "assignee": {"id": 86}, "organization": {"id": 620}, "project": {"owner": {"id": 758}, "assignee": {"id": 850}, "organization": {"id": 972}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 473}, "assignee": {"id": 92}, "organization": {"id": 662}, "project": {"owner": {"id": 775}, "assignee": {"id": 808}, "organization": {"id": 962}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 334, "owner": {"id": 400}, "assignee": {"id": 11}, "organization": {"id": 159}, "project": {"owner": {"id": 787}, "assignee": {"id": 831}, "organization": {"id": 912}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 107, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 376, "owner": {"id": 469}, "assignee": {"id": 0}, "organization": {"id": 107}, "project": {"owner": {"id": 789}, "assignee": {"id": 819}, "organization": {"id": 911}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 405}, "assignee": {"id": 97}, "organization": {"id": 693}, "project": {"owner": {"id": 701}, "assignee": {"id": 839}, "organization": {"id": 927}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 365, "owner": {"id": 474}, "assignee": {"id": 32}, "organization": {"id": 664}, "project": {"owner": {"id": 739}, "assignee": {"id": 855}, "organization": {"id": 935}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 494}, "assignee": {"id": 0}, "organization": {"id": 145}, "project": {"owner": {"id": 788}, "assignee": {"id": 870}, "organization": {"id": 978}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 418}, "assignee": {"id": 85}, "organization": {"id": 128}, "project": {"owner": {"id": 792}, "assignee": {"id": 849}, "organization": {"id": 930}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 178, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 449}, "assignee": {"id": 52}, "organization": {"id": 602}, "project": {"owner": {"id": 796}, "assignee": {"id": 891}, "organization": {"id": 911}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": {"id": 176, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 330, "owner": {"id": 465}, "assignee": {"id": 66}, "organization": {"id": 677}, "project": {"owner": {"id": 764}, "assignee": {"id": 877}, "organization": {"id": 949}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 154, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 338, "owner": {"id": 486}, "assignee": {"id": 5}, "organization": {"id": 154}, "project": {"owner": {"id": 772}, "assignee": {"id": 866}, "organization": {"id": 940}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 372, "owner": {"id": 454}, "assignee": {"id": 49}, "organization": {"id": 171}, "project": {"owner": {"id": 777}, "assignee": {"id": 848}, "organization": {"id": 984}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"id": 330, "owner": {"id": 499}, "assignee": {"id": 98}, "organization": {"id": 620}, "project": {"owner": {"id": 777}, "assignee": {"id": 816}, "organization": {"id": 975}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 433}, "assignee": {"id": 69}, "organization": {"id": 671}, "project": {"owner": {"id": 723}, "assignee": {"id": 877}, "organization": {"id": 940}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 185, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 433}, "assignee": {"id": 55}, "organization": {"id": 185}, "project": {"owner": {"id": 729}, "assignee": {"id": 821}, "organization": {"id": 997}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"id": 334, "owner": {"id": 421}, "assignee": {"id": 31}, "organization": {"id": 180}, "project": {"owner": {"id": 738}, "assignee": {"id": 862}, "organization": {"id": 948}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"id": 361, "owner": {"id": 436}, "assignee": {"id": 86}, "organization": {"id": 609}, "project": {"owner": {"id": 705}, "assignee": {"id": 818}, "organization": {"id": 913}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"id": 383, "owner": {"id": 425}, "assignee": {"id": 96}, "organization": {"id": 649}, "project": {"owner": {"id": 753}, "assignee": {"id": 880}, "organization": {"id": 952}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 149, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 439}, "assignee": {"id": 24}, "organization": {"id": 149}, "project": {"owner": {"id": 756}, "assignee": {"id": 831}, "organization": {"id": 922}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 264}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 474}, "assignee": {"id": 26}, "organization": {"id": 155}, "project": {"owner": {"id": 789}, "assignee": {"id": 820}, "organization": {"id": 934}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"id": 354, "owner": {"id": 482}, "assignee": {"id": 30}, "organization": {"id": 624}, "project": {"owner": {"id": 736}, "assignee": {"id": 830}, "organization": {"id": 955}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 176, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 441}, "assignee": {"id": 40}, "organization": {"id": 618}, "project": {"owner": {"id": 722}, "assignee": {"id": 805}, "organization": {"id": 947}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 48}, "user": {"role": "owner"}}}, "resource": {"id": 303, "owner": {"id": 417}, "assignee": {"id": 530}, "organization": {"id": 100}, "project": {"owner": {"id": 785}, "assignee": {"id": 844}, "organization": {"id": 934}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 357, "owner": {"id": 499}, "assignee": {"id": 584}, "organization": {"id": 128}, "project": {"owner": {"id": 717}, "assignee": {"id": 811}, "organization": {"id": 900}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 407}, "assignee": {"id": 549}, "organization": {"id": 617}, "project": {"owner": {"id": 749}, "assignee": {"id": 828}, "organization": {"id": 943}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 102, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 416}, "assignee": {"id": 578}, "organization": {"id": 681}, "project": {"owner": {"id": 762}, "assignee": {"id": 835}, "organization": {"id": 947}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 478}, "assignee": {"id": 557}, "organization": {"id": 118}, "project": {"owner": {"id": 736}, "assignee": {"id": 890}, "organization": {"id": 954}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 383, "owner": {"id": 442}, "assignee": {"id": 516}, "organization": {"id": 191}, "project": {"owner": {"id": 722}, "assignee": {"id": 817}, "organization": {"id": 997}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 297}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 434}, "assignee": {"id": 557}, "organization": {"id": 600}, "project": {"owner": {"id": 768}, "assignee": {"id": 893}, "organization": {"id": 949}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 415}, "assignee": {"id": 529}, "organization": {"id": 640}, "project": {"owner": {"id": 788}, "assignee": {"id": 844}, "organization": {"id": 946}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"id": 359, "owner": {"id": 474}, "assignee": {"id": 566}, "organization": {"id": 131}, "project": {"owner": {"id": 709}, "assignee": {"id": 864}, "organization": {"id": 954}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 357, "owner": {"id": 492}, "assignee": {"id": 529}, "organization": {"id": 159}, "project": {"owner": {"id": 742}, "assignee": {"id": 858}, "organization": {"id": 908}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 336, "owner": {"id": 412}, "assignee": {"id": 557}, "organization": {"id": 636}, "project": {"owner": {"id": 724}, "assignee": {"id": 829}, "organization": {"id": 938}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 391, "owner": {"id": 409}, "assignee": {"id": 580}, "organization": {"id": 626}, "project": {"owner": {"id": 792}, "assignee": {"id": 897}, "organization": {"id": 971}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 341, "owner": {"id": 447}, "assignee": {"id": 564}, "organization": {"id": 153}, "project": {"owner": {"id": 724}, "assignee": {"id": 802}, "organization": {"id": 970}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 483}, "assignee": {"id": 593}, "organization": {"id": 147}, "project": {"owner": {"id": 747}, "assignee": {"id": 878}, "organization": {"id": 975}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"id": 355, "owner": {"id": 432}, "assignee": {"id": 599}, "organization": {"id": 662}, "project": {"owner": {"id": 768}, "assignee": {"id": 823}, "organization": {"id": 913}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 233}, "user": {"role": "worker"}}}, "resource": {"id": 353, "owner": {"id": 464}, "assignee": {"id": 585}, "organization": {"id": 645}, "project": {"owner": {"id": 757}, "assignee": {"id": 810}, "organization": {"id": 996}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 149, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 460}, "assignee": {"id": 553}, "organization": {"id": 149}, "project": {"owner": {"id": 712}, "assignee": {"id": 809}, "organization": {"id": 962}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 429}, "assignee": {"id": 540}, "organization": {"id": 151}, "project": {"owner": {"id": 758}, "assignee": {"id": 831}, "organization": {"id": 914}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 190, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 452}, "assignee": {"id": 571}, "organization": {"id": 655}, "project": {"owner": {"id": 743}, "assignee": {"id": 846}, "organization": {"id": 957}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 99, "privilege": "admin"}, "organization": {"id": 119, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 475}, "assignee": {"id": 508}, "organization": {"id": 650}, "project": {"owner": {"id": 771}, "assignee": {"id": 808}, "organization": {"id": 979}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 497}, "assignee": {"id": 527}, "organization": {"id": 102}, "project": {"owner": {"id": 751}, "assignee": {"id": 849}, "organization": {"id": 975}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 430}, "assignee": {"id": 530}, "organization": {"id": 114}, "project": {"owner": {"id": 798}, "assignee": {"id": 840}, "organization": {"id": 934}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 352, "owner": {"id": 401}, "assignee": {"id": 519}, "organization": {"id": 626}, "project": {"owner": {"id": 790}, "assignee": {"id": 846}, "organization": {"id": 997}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 199, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"id": 311, "owner": {"id": 478}, "assignee": {"id": 504}, "organization": {"id": 683}, "project": {"owner": {"id": 737}, "assignee": {"id": 838}, "organization": {"id": 991}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"id": 381, "owner": {"id": 401}, "assignee": {"id": 567}, "organization": {"id": 188}, "project": {"owner": {"id": 770}, "assignee": {"id": 860}, "organization": {"id": 951}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"id": 378, "owner": {"id": 454}, "assignee": {"id": 541}, "organization": {"id": 192}, "project": {"owner": {"id": 799}, "assignee": {"id": 860}, "organization": {"id": 904}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 454}, "assignee": {"id": 517}, "organization": {"id": 613}, "project": {"owner": {"id": 792}, "assignee": {"id": 842}, "organization": {"id": 999}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 432}, "assignee": {"id": 513}, "organization": {"id": 694}, "project": {"owner": {"id": 715}, "assignee": {"id": 871}, "organization": {"id": 954}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 445}, "assignee": {"id": 529}, "organization": {"id": 170}, "project": {"owner": {"id": 776}, "assignee": {"id": 846}, "organization": {"id": 937}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 374, "owner": {"id": 492}, "assignee": {"id": 599}, "organization": {"id": 126}, "project": {"owner": {"id": 733}, "assignee": {"id": 819}, "organization": {"id": 970}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 75, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 389, "owner": {"id": 478}, "assignee": {"id": 581}, "organization": {"id": 690}, "project": {"owner": {"id": 713}, "assignee": {"id": 801}, "organization": {"id": 931}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"id": 376, "owner": {"id": 406}, "assignee": {"id": 531}, "organization": {"id": 639}, "project": {"owner": {"id": 760}, "assignee": {"id": 886}, "organization": {"id": 903}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 380, "owner": {"id": 472}, "assignee": {"id": 536}, "organization": {"id": 161}, "project": {"owner": {"id": 744}, "assignee": {"id": 830}, "organization": {"id": 927}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 373, "owner": {"id": 449}, "assignee": {"id": 532}, "organization": {"id": 140}, "project": {"owner": {"id": 782}, "assignee": {"id": 891}, "organization": {"id": 985}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 45, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 404}, "assignee": {"id": 586}, "organization": {"id": 682}, "project": {"owner": {"id": 745}, "assignee": {"id": 837}, "organization": {"id": 974}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 409}, "assignee": {"id": 547}, "organization": {"id": 687}, "project": {"owner": {"id": 737}, "assignee": {"id": 840}, "organization": {"id": 939}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 263}, "user": {"role": null}}}, "resource": {"id": 397, "owner": {"id": 449}, "assignee": {"id": 516}, "organization": {"id": 190}, "project": {"owner": {"id": 787}, "assignee": {"id": 814}, "organization": {"id": 981}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"id": 393, "owner": {"id": 465}, "assignee": {"id": 593}, "organization": {"id": 142}, "project": {"owner": {"id": 746}, "assignee": {"id": 861}, "organization": {"id": 906}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 334, "owner": {"id": 451}, "assignee": {"id": 520}, "organization": {"id": 656}, "project": {"owner": {"id": 721}, "assignee": {"id": 834}, "organization": {"id": 920}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 417}, "assignee": {"id": 570}, "organization": {"id": 616}, "project": {"owner": {"id": 790}, "assignee": {"id": 889}, "organization": {"id": 913}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 444}, "assignee": {"id": 545}, "organization": {"id": 107}, "project": {"owner": {"id": 712}, "assignee": {"id": 844}, "organization": {"id": 934}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 399, "owner": {"id": 418}, "assignee": {"id": 587}, "organization": {"id": 160}, "project": {"owner": {"id": 758}, "assignee": {"id": 881}, "organization": {"id": 952}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 15}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 429}, "assignee": {"id": 543}, "organization": {"id": 622}, "project": {"owner": {"id": 749}, "assignee": {"id": 804}, "organization": {"id": 945}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 460}, "assignee": {"id": 546}, "organization": {"id": 628}, "project": {"owner": {"id": 799}, "assignee": {"id": 826}, "organization": {"id": 908}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "upload:data", "auth": {"user": {"id": 45, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 345, "owner": {"id": 417}, "assignee": {"id": 536}, "organization": {"id": 181}, "project": {"owner": {"id": 760}, "assignee": {"id": 852}, "organization": {"id": 947}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:desc", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"id": 376, "owner": {"id": 483}, "assignee": {"id": 524}, "organization": {"id": 196}, "project": {"owner": {"id": 765}, "assignee": {"id": 813}, "organization": {"id": 960}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 127, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 449}, "assignee": {"id": 501}, "organization": {"id": 636}, "project": {"owner": {"id": 761}, "assignee": {"id": 861}, "organization": {"id": 933}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 439}, "assignee": {"id": 561}, "organization": {"id": 655}, "project": {"owner": {"id": 753}, "assignee": {"id": 893}, "organization": {"id": 944}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 384, "owner": {"id": 447}, "assignee": {"id": 518}, "organization": {"id": 147}, "project": {"owner": {"id": 784}, "assignee": {"id": 889}, "organization": {"id": 971}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 20, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 330, "owner": {"id": 482}, "assignee": {"id": 515}, "organization": {"id": 115}, "project": {"owner": {"id": 785}, "assignee": {"id": 849}, "organization": {"id": 974}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 416}, "assignee": {"id": 551}, "organization": {"id": 631}, "project": {"owner": {"id": 782}, "assignee": {"id": 872}, "organization": {"id": 996}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 450}, "assignee": {"id": 599}, "organization": {"id": 636}, "project": {"owner": {"id": 703}, "assignee": {"id": 891}, "organization": {"id": 931}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": {"id": 165, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"id": 301, "owner": {"id": 473}, "assignee": {"id": 588}, "organization": {"id": 165}, "project": {"owner": {"id": 777}, "assignee": {"id": 846}, "organization": {"id": 911}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 14, "privilege": "user"}, "organization": {"id": 190, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 451}, "assignee": {"id": 590}, "organization": {"id": 190}, "project": {"owner": {"id": 723}, "assignee": {"id": 899}, "organization": {"id": 938}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 408}, "assignee": {"id": 524}, "organization": {"id": 653}, "project": {"owner": {"id": 700}, "assignee": {"id": 827}, "organization": {"id": 908}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 459}, "assignee": {"id": 585}, "organization": {"id": 673}, "project": {"owner": {"id": 772}, "assignee": {"id": 852}, "organization": {"id": 923}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 225}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 422}, "assignee": {"id": 525}, "organization": {"id": 151}, "project": {"owner": {"id": 705}, "assignee": {"id": 880}, "organization": {"id": 958}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 369, "owner": {"id": 465}, "assignee": {"id": 563}, "organization": {"id": 132}, "project": {"owner": {"id": 753}, "assignee": {"id": 873}, "organization": {"id": 978}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 58, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 229}, "user": {"role": null}}}, "resource": {"id": 334, "owner": {"id": 407}, "assignee": {"id": 544}, "organization": {"id": 682}, "project": {"owner": {"id": 733}, "assignee": {"id": 849}, "organization": {"id": 998}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 261}, "user": {"role": null}}}, "resource": {"id": 316, "owner": {"id": 493}, "assignee": {"id": 549}, "organization": {"id": 684}, "project": {"owner": {"id": 717}, "assignee": {"id": 812}, "organization": {"id": 940}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 59}, "user": {"role": "owner"}}}, "resource": {"id": 328, "owner": {"id": 423}, "assignee": {"id": 500}, "organization": {"id": 110}, "project": {"owner": {"id": 779}, "assignee": {"id": 814}, "organization": {"id": 923}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 452}, "assignee": {"id": 568}, "organization": {"id": 166}, "project": {"owner": {"id": 714}, "assignee": {"id": 804}, "organization": {"id": 991}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"id": 357, "owner": {"id": 437}, "assignee": {"id": 598}, "organization": {"id": 685}, "project": {"owner": {"id": 746}, "assignee": {"id": 884}, "organization": {"id": 972}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 55, "privilege": "worker"}, "organization": {"id": 112, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 416}, "assignee": {"id": 588}, "organization": {"id": 659}, "project": {"owner": {"id": 731}, "assignee": {"id": 845}, "organization": {"id": 940}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"id": 362, "owner": {"id": 449}, "assignee": {"id": 524}, "organization": {"id": 126}, "project": {"owner": {"id": 708}, "assignee": {"id": 860}, "organization": {"id": 915}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 442}, "assignee": {"id": 510}, "organization": {"id": 159}, "project": {"owner": {"id": 738}, "assignee": {"id": 895}, "organization": {"id": 950}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"id": 373, "owner": {"id": 434}, "assignee": {"id": 564}, "organization": {"id": 628}, "project": {"owner": {"id": 744}, "assignee": {"id": 837}, "organization": {"id": 942}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 479}, "assignee": {"id": 572}, "organization": {"id": 648}, "project": {"owner": {"id": 746}, "assignee": {"id": 888}, "organization": {"id": 975}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 372, "owner": {"id": 436}, "assignee": {"id": 540}, "organization": {"id": 138}, "project": {"owner": {"id": 748}, "assignee": {"id": 873}, "organization": {"id": 930}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 389, "owner": {"id": 437}, "assignee": {"id": 554}, "organization": {"id": 118}, "project": {"owner": {"id": 754}, "assignee": {"id": 848}, "organization": {"id": 917}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 497}, "assignee": {"id": 584}, "organization": {"id": 685}, "project": {"owner": {"id": 745}, "assignee": {"id": 819}, "organization": {"id": 946}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 301, "owner": {"id": 465}, "assignee": {"id": 599}, "organization": {"id": 621}, "project": {"owner": {"id": 761}, "assignee": {"id": 827}, "organization": {"id": 934}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 336, "owner": {"id": 412}, "assignee": {"id": 526}, "organization": {"id": 166}, "project": {"owner": {"id": 740}, "assignee": {"id": 864}, "organization": {"id": 922}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"id": 391, "owner": {"id": 447}, "assignee": {"id": 547}, "organization": {"id": 114}, "project": {"owner": {"id": 798}, "assignee": {"id": 897}, "organization": {"id": 997}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 467}, "assignee": {"id": 545}, "organization": {"id": 668}, "project": {"owner": {"id": 734}, "assignee": {"id": 811}, "organization": {"id": 923}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"id": 318, "owner": {"id": 429}, "assignee": {"id": 582}, "organization": {"id": 684}, "project": {"owner": {"id": 749}, "assignee": {"id": 828}, "organization": {"id": 936}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 286}, "user": {"role": null}}}, "resource": {"id": 359, "owner": {"id": 497}, "assignee": {"id": 523}, "organization": {"id": 105}, "project": {"owner": {"id": 732}, "assignee": {"id": 833}, "organization": {"id": 900}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 343, "owner": {"id": 420}, "assignee": {"id": 526}, "organization": {"id": 159}, "project": {"owner": {"id": 739}, "assignee": {"id": 820}, "organization": {"id": 994}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 313, "owner": {"id": 453}, "assignee": {"id": 526}, "organization": {"id": 698}, "project": {"owner": {"id": 762}, "assignee": {"id": 841}, "organization": {"id": 986}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"id": 311, "owner": {"id": 466}, "assignee": {"id": 502}, "organization": {"id": 613}, "project": {"owner": {"id": 742}, "assignee": {"id": 822}, "organization": {"id": 991}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 28}, "user": {"role": "owner"}}}, "resource": {"id": 381, "owner": {"id": 460}, "assignee": {"id": 566}, "organization": {"id": 157}, "project": {"owner": {"id": 791}, "assignee": {"id": 846}, "organization": {"id": 909}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 400}, "assignee": {"id": 523}, "organization": {"id": 109}, "project": {"owner": {"id": 700}, "assignee": {"id": 833}, "organization": {"id": 963}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 321, "owner": {"id": 455}, "assignee": {"id": 582}, "organization": {"id": 669}, "project": {"owner": {"id": 759}, "assignee": {"id": 838}, "organization": {"id": 972}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 497}, "assignee": {"id": 591}, "organization": {"id": 667}, "project": {"owner": {"id": 756}, "assignee": {"id": 838}, "organization": {"id": 920}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 270}, "user": {"role": "maintainer"}}}, "resource": {"id": 367, "owner": {"id": 440}, "assignee": {"id": 583}, "organization": {"id": 164}, "project": {"owner": {"id": 763}, "assignee": {"id": 858}, "organization": {"id": 967}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 452}, "assignee": {"id": 589}, "organization": {"id": 105}, "project": {"owner": {"id": 773}, "assignee": {"id": 840}, "organization": {"id": 932}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 327, "owner": {"id": 499}, "assignee": {"id": 535}, "organization": {"id": 648}, "project": {"owner": {"id": 700}, "assignee": {"id": 884}, "organization": {"id": 946}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 381, "owner": {"id": 492}, "assignee": {"id": 535}, "organization": {"id": 656}, "project": {"owner": {"id": 703}, "assignee": {"id": 857}, "organization": {"id": 978}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 438}, "assignee": {"id": 520}, "organization": {"id": 155}, "project": {"owner": {"id": 787}, "assignee": {"id": 831}, "organization": {"id": 918}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"id": 379, "owner": {"id": 417}, "assignee": {"id": 561}, "organization": {"id": 183}, "project": {"owner": {"id": 710}, "assignee": {"id": 845}, "organization": {"id": 904}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"id": 348, "owner": {"id": 421}, "assignee": {"id": 597}, "organization": {"id": 659}, "project": {"owner": {"id": 724}, "assignee": {"id": 845}, "organization": {"id": 940}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 474}, "assignee": {"id": 572}, "organization": {"id": 621}, "project": {"owner": {"id": 779}, "assignee": {"id": 887}, "organization": {"id": 920}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 228}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 491}, "assignee": {"id": 506}, "organization": {"id": 141}, "project": {"owner": {"id": 756}, "assignee": {"id": 896}, "organization": {"id": 975}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 342, "owner": {"id": 443}, "assignee": {"id": 560}, "organization": {"id": 102}, "project": {"owner": {"id": 724}, "assignee": {"id": 898}, "organization": {"id": 956}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 432}, "assignee": {"id": 550}, "organization": {"id": 626}, "project": {"owner": {"id": 746}, "assignee": {"id": 807}, "organization": {"id": 914}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 224}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 431}, "assignee": {"id": 556}, "organization": {"id": 623}, "project": {"owner": {"id": 796}, "assignee": {"id": 817}, "organization": {"id": 942}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 74, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 369, "owner": {"id": 481}, "assignee": {"id": 575}, "organization": {"id": 146}, "project": {"owner": {"id": 727}, "assignee": {"id": 838}, "organization": {"id": 928}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 226}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 476}, "assignee": {"id": 552}, "organization": {"id": 102}, "project": {"owner": {"id": 771}, "assignee": {"id": 813}, "organization": {"id": 922}}}} } -test_scope_UPLOAD_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "upload:data", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 421}, "assignee": {"id": 565}, "organization": {"id": 653}, "project": {"owner": {"id": 784}, "assignee": {"id": 844}, "organization": {"id": 973}}}} +test_scope_UPDATE_DESC_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:desc", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 341, "owner": {"id": 435}, "assignee": {"id": 593}, "organization": {"id": 648}, "project": {"owner": {"id": 769}, "assignee": {"id": 886}, "organization": {"id": 990}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": null}, "resource": {"id": 343, "owner": {"id": 494}, "assignee": {"id": 504}, "organization": {"id": 695}, "project": {"owner": {"id": 49}, "assignee": {"id": 814}, "organization": {"id": 945}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": null}, "resource": {"id": 381, "owner": {"id": 414}, "assignee": {"id": 578}, "organization": {"id": 682}, "project": {"owner": {"id": 21}, "assignee": {"id": 833}, "organization": {"id": 956}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": null}, "resource": {"id": 308, "owner": {"id": 400}, "assignee": {"id": 569}, "organization": {"id": 662}, "project": {"owner": {"id": 26}, "assignee": {"id": 802}, "organization": {"id": 943}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": null}, "resource": {"id": 366, "owner": {"id": 481}, "assignee": {"id": 550}, "organization": {"id": 681}, "project": {"owner": {"id": 20}, "assignee": {"id": 850}, "organization": {"id": 997}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": null}, "resource": {"id": 350, "owner": {"id": 471}, "assignee": {"id": 542}, "organization": {"id": 698}, "project": {"owner": {"id": 34}, "assignee": {"id": 884}, "organization": {"id": 991}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": null}, "resource": {"id": 347, "owner": {"id": 494}, "assignee": {"id": 573}, "organization": {"id": 659}, "project": {"owner": {"id": 41}, "assignee": {"id": 841}, "organization": {"id": 906}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": null}, "resource": {"id": 350, "owner": {"id": 448}, "assignee": {"id": 556}, "organization": {"id": 630}, "project": {"owner": {"id": 73}, "assignee": {"id": 828}, "organization": {"id": 937}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": null}, "resource": {"id": 350, "owner": {"id": 465}, "assignee": {"id": 579}, "organization": {"id": 638}, "project": {"owner": {"id": 15}, "assignee": {"id": 879}, "organization": {"id": 934}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": null}, "resource": {"id": 324, "owner": {"id": 496}, "assignee": {"id": 574}, "organization": {"id": 669}, "project": {"owner": {"id": 99}, "assignee": {"id": 843}, "organization": {"id": 937}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": null}, "resource": {"id": 349, "owner": {"id": 438}, "assignee": {"id": 584}, "organization": {"id": 644}, "project": {"owner": {"id": 52}, "assignee": {"id": 876}, "organization": {"id": 956}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": null}, "resource": {"id": 321, "owner": {"id": 417}, "assignee": {"id": 530}, "organization": {"id": 662}, "project": {"owner": {"id": 729}, "assignee": {"id": 97}, "organization": {"id": 941}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": null}, "resource": {"id": 351, "owner": {"id": 439}, "assignee": {"id": 550}, "organization": {"id": 688}, "project": {"owner": {"id": 777}, "assignee": {"id": 67}, "organization": {"id": 973}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": null}, "resource": {"id": 384, "owner": {"id": 439}, "assignee": {"id": 513}, "organization": {"id": 662}, "project": {"owner": {"id": 760}, "assignee": {"id": 2}, "organization": {"id": 960}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": null}, "resource": {"id": 391, "owner": {"id": 479}, "assignee": {"id": 503}, "organization": {"id": 615}, "project": {"owner": {"id": 778}, "assignee": {"id": 37}, "organization": {"id": 983}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": null}, "resource": {"id": 313, "owner": {"id": 464}, "assignee": {"id": 525}, "organization": {"id": 647}, "project": {"owner": {"id": 721}, "assignee": {"id": 52}, "organization": {"id": 914}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": null}, "resource": {"id": 364, "owner": {"id": 484}, "assignee": {"id": 596}, "organization": {"id": 644}, "project": {"owner": {"id": 724}, "assignee": {"id": 29}, "organization": {"id": 990}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": null}, "resource": {"id": 341, "owner": {"id": 414}, "assignee": {"id": 548}, "organization": {"id": 637}, "project": {"owner": {"id": 715}, "assignee": {"id": 95}, "organization": {"id": 902}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 12, "privilege": "worker"}, "organization": null}, "resource": {"id": 303, "owner": {"id": 430}, "assignee": {"id": 580}, "organization": {"id": 670}, "project": {"owner": {"id": 727}, "assignee": {"id": 12}, "organization": {"id": 964}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": null}, "resource": {"id": 376, "owner": {"id": 469}, "assignee": {"id": 547}, "organization": {"id": 682}, "project": {"owner": {"id": 786}, "assignee": {"id": 64}, "organization": {"id": 989}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": null}, "resource": {"id": 392, "owner": {"id": 496}, "assignee": {"id": 533}, "organization": {"id": 635}, "project": {"owner": {"id": 705}, "assignee": {"id": 37}, "organization": {"id": 945}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": null}, "resource": {"id": 378, "owner": {"id": 36}, "assignee": {"id": 544}, "organization": {"id": 643}, "project": {"owner": {"id": 767}, "assignee": {"id": 811}, "organization": {"id": 967}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": null}, "resource": {"id": 340, "owner": {"id": 65}, "assignee": {"id": 566}, "organization": {"id": 623}, "project": {"owner": {"id": 733}, "assignee": {"id": 876}, "organization": {"id": 987}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": null}, "resource": {"id": 322, "owner": {"id": 30}, "assignee": {"id": 517}, "organization": {"id": 656}, "project": {"owner": {"id": 751}, "assignee": {"id": 855}, "organization": {"id": 927}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": null}, "resource": {"id": 378, "owner": {"id": 69}, "assignee": {"id": 540}, "organization": {"id": 654}, "project": {"owner": {"id": 769}, "assignee": {"id": 819}, "organization": {"id": 920}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": null}, "resource": {"id": 372, "owner": {"id": 94}, "assignee": {"id": 556}, "organization": {"id": 603}, "project": {"owner": {"id": 747}, "assignee": {"id": 814}, "organization": {"id": 982}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 29}, "assignee": {"id": 562}, "organization": {"id": 632}, "project": {"owner": {"id": 759}, "assignee": {"id": 887}, "organization": {"id": 973}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": null}, "resource": {"id": 388, "owner": {"id": 97}, "assignee": {"id": 592}, "organization": {"id": 610}, "project": {"owner": {"id": 739}, "assignee": {"id": 818}, "organization": {"id": 963}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 71}, "assignee": {"id": 537}, "organization": {"id": 674}, "project": {"owner": {"id": 790}, "assignee": {"id": 831}, "organization": {"id": 981}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": null}, "resource": {"id": 360, "owner": {"id": 61}, "assignee": {"id": 549}, "organization": {"id": 664}, "project": {"owner": {"id": 744}, "assignee": {"id": 888}, "organization": {"id": 938}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 66, "privilege": "none"}, "organization": null}, "resource": {"id": 389, "owner": {"id": 66}, "assignee": {"id": 527}, "organization": {"id": 607}, "project": {"owner": {"id": 779}, "assignee": {"id": 865}, "organization": {"id": 939}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": null}, "resource": {"id": 317, "owner": {"id": 417}, "assignee": {"id": 61}, "organization": {"id": 695}, "project": {"owner": {"id": 769}, "assignee": {"id": 828}, "organization": {"id": 968}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": null}, "resource": {"id": 310, "owner": {"id": 452}, "assignee": {"id": 5}, "organization": {"id": 629}, "project": {"owner": {"id": 713}, "assignee": {"id": 891}, "organization": {"id": 953}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": null}, "resource": {"id": 305, "owner": {"id": 415}, "assignee": {"id": 56}, "organization": {"id": 635}, "project": {"owner": {"id": 782}, "assignee": {"id": 847}, "organization": {"id": 983}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": null}, "resource": {"id": 378, "owner": {"id": 416}, "assignee": {"id": 28}, "organization": {"id": 655}, "project": {"owner": {"id": 779}, "assignee": {"id": 883}, "organization": {"id": 942}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": null}, "resource": {"id": 395, "owner": {"id": 476}, "assignee": {"id": 27}, "organization": {"id": 674}, "project": {"owner": {"id": 706}, "assignee": {"id": 853}, "organization": {"id": 909}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 93, "privilege": "user"}, "organization": null}, "resource": {"id": 350, "owner": {"id": 421}, "assignee": {"id": 93}, "organization": {"id": 681}, "project": {"owner": {"id": 775}, "assignee": {"id": 891}, "organization": {"id": 948}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": null}, "resource": {"id": 300, "owner": {"id": 461}, "assignee": {"id": 14}, "organization": {"id": 628}, "project": {"owner": {"id": 793}, "assignee": {"id": 881}, "organization": {"id": 916}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": null}, "resource": {"id": 384, "owner": {"id": 476}, "assignee": {"id": 43}, "organization": {"id": 668}, "project": {"owner": {"id": 761}, "assignee": {"id": 807}, "organization": {"id": 945}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": null}, "resource": {"id": 331, "owner": {"id": 429}, "assignee": {"id": 91}, "organization": {"id": 658}, "project": {"owner": {"id": 756}, "assignee": {"id": 887}, "organization": {"id": 985}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": null}, "resource": {"id": 300, "owner": {"id": 472}, "assignee": {"id": 8}, "organization": {"id": 602}, "project": {"owner": {"id": 785}, "assignee": {"id": 886}, "organization": {"id": 909}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": null}, "resource": {"id": 352, "owner": {"id": 443}, "assignee": {"id": 572}, "organization": {"id": 688}, "project": {"owner": {"id": 753}, "assignee": {"id": 886}, "organization": {"id": 997}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": null}, "resource": {"id": 366, "owner": {"id": 472}, "assignee": {"id": 593}, "organization": {"id": 630}, "project": {"owner": {"id": 750}, "assignee": {"id": 834}, "organization": {"id": 960}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": null}, "resource": {"id": 389, "owner": {"id": 429}, "assignee": {"id": 585}, "organization": {"id": 605}, "project": {"owner": {"id": 723}, "assignee": {"id": 893}, "organization": {"id": 940}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": null}, "resource": {"id": 391, "owner": {"id": 435}, "assignee": {"id": 593}, "organization": {"id": 634}, "project": {"owner": {"id": 732}, "assignee": {"id": 838}, "organization": {"id": 948}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 36, "privilege": "user"}, "organization": null}, "resource": {"id": 387, "owner": {"id": 466}, "assignee": {"id": 593}, "organization": {"id": 642}, "project": {"owner": {"id": 799}, "assignee": {"id": 876}, "organization": {"id": 924}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": null}, "resource": {"id": 319, "owner": {"id": 497}, "assignee": {"id": 547}, "organization": {"id": 695}, "project": {"owner": {"id": 703}, "assignee": {"id": 825}, "organization": {"id": 939}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 463}, "assignee": {"id": 592}, "organization": {"id": 699}, "project": {"owner": {"id": 763}, "assignee": {"id": 800}, "organization": {"id": 933}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": null}, "resource": {"id": 385, "owner": {"id": 464}, "assignee": {"id": 532}, "organization": {"id": 693}, "project": {"owner": {"id": 717}, "assignee": {"id": 845}, "organization": {"id": 900}}}} } -test_scope_UPDATE_PROJECT_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": null}, "resource": {"id": 368, "owner": {"id": 499}, "assignee": {"id": 584}, "organization": {"id": 661}, "project": {"owner": {"id": 768}, "assignee": {"id": 873}, "organization": {"id": 905}}}} +test_scope_EXPORT_BACKUP_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": null}, "resource": {"id": 361, "owner": {"id": 481}, "assignee": {"id": 509}, "organization": {"id": 644}, "project": {"owner": {"id": 736}, "assignee": {"id": 886}, "organization": {"id": 906}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 149, "owner": {"id": 79}, "user": {"role": "owner"}}}, "resource": {"id": 383, "owner": {"id": 465}, "assignee": {"id": 570}, "organization": {"id": 149}, "project": {"owner": {"id": 79}, "assignee": {"id": 803}, "organization": {"id": 915}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 334, "owner": {"id": 496}, "assignee": {"id": 584}, "organization": {"id": 136}, "project": {"owner": {"id": 73}, "assignee": {"id": 822}, "organization": {"id": 941}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 34}, "user": {"role": "owner"}}}, "resource": {"id": 301, "owner": {"id": 430}, "assignee": {"id": 579}, "organization": {"id": 617}, "project": {"owner": {"id": 34}, "assignee": {"id": 812}, "organization": {"id": 954}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 77}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 497}, "assignee": {"id": 561}, "organization": {"id": 604}, "project": {"owner": {"id": 77}, "assignee": {"id": 853}, "organization": {"id": 930}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 397, "owner": {"id": 401}, "assignee": {"id": 550}, "organization": {"id": 157}, "project": {"owner": {"id": 61}, "assignee": {"id": 852}, "organization": {"id": 901}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 7, "privilege": "admin"}, "organization": {"id": 116, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 408}, "assignee": {"id": 584}, "organization": {"id": 116}, "project": {"owner": {"id": 7}, "assignee": {"id": 852}, "organization": {"id": 964}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 488}, "assignee": {"id": 511}, "organization": {"id": 622}, "project": {"owner": {"id": 40}, "assignee": {"id": 839}, "organization": {"id": 958}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 71, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 244}, "user": {"role": "maintainer"}}}, "resource": {"id": 318, "owner": {"id": 401}, "assignee": {"id": 506}, "organization": {"id": 662}, "project": {"owner": {"id": 71}, "assignee": {"id": 807}, "organization": {"id": 929}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"id": 316, "owner": {"id": 474}, "assignee": {"id": 537}, "organization": {"id": 185}, "project": {"owner": {"id": 64}, "assignee": {"id": 880}, "organization": {"id": 968}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 373, "owner": {"id": 477}, "assignee": {"id": 506}, "organization": {"id": 168}, "project": {"owner": {"id": 41}, "assignee": {"id": 844}, "organization": {"id": 973}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": {"id": 168, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 385, "owner": {"id": 450}, "assignee": {"id": 579}, "organization": {"id": 681}, "project": {"owner": {"id": 85}, "assignee": {"id": 845}, "organization": {"id": 961}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 374, "owner": {"id": 403}, "assignee": {"id": 517}, "organization": {"id": 671}, "project": {"owner": {"id": 55}, "assignee": {"id": 807}, "organization": {"id": 991}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 123, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 395, "owner": {"id": 448}, "assignee": {"id": 590}, "organization": {"id": 123}, "project": {"owner": {"id": 52}, "assignee": {"id": 887}, "organization": {"id": 965}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 123, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"id": 355, "owner": {"id": 427}, "assignee": {"id": 517}, "organization": {"id": 123}, "project": {"owner": {"id": 34}, "assignee": {"id": 808}, "organization": {"id": 992}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 15, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"id": 301, "owner": {"id": 444}, "assignee": {"id": 548}, "organization": {"id": 684}, "project": {"owner": {"id": 15}, "assignee": {"id": 813}, "organization": {"id": 981}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 492}, "assignee": {"id": 566}, "organization": {"id": 655}, "project": {"owner": {"id": 56}, "assignee": {"id": 845}, "organization": {"id": 983}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"id": 365, "owner": {"id": 468}, "assignee": {"id": 505}, "organization": {"id": 140}, "project": {"owner": {"id": 94}, "assignee": {"id": 888}, "organization": {"id": 915}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"id": 311, "owner": {"id": 418}, "assignee": {"id": 590}, "organization": {"id": 167}, "project": {"owner": {"id": 77}, "assignee": {"id": 836}, "organization": {"id": 996}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 239}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 437}, "assignee": {"id": 538}, "organization": {"id": 633}, "project": {"owner": {"id": 51}, "assignee": {"id": 861}, "organization": {"id": 985}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 416}, "assignee": {"id": 587}, "organization": {"id": 678}, "project": {"owner": {"id": 78}, "assignee": {"id": 878}, "organization": {"id": 989}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 328, "owner": {"id": 454}, "assignee": {"id": 515}, "organization": {"id": 168}, "project": {"owner": {"id": 25}, "assignee": {"id": 828}, "organization": {"id": 902}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 492}, "assignee": {"id": 529}, "organization": {"id": 154}, "project": {"owner": {"id": 97}, "assignee": {"id": 830}, "organization": {"id": 919}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"id": 337, "owner": {"id": 419}, "assignee": {"id": 570}, "organization": {"id": 686}, "project": {"owner": {"id": 35}, "assignee": {"id": 851}, "organization": {"id": 959}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 25, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 322, "owner": {"id": 438}, "assignee": {"id": 562}, "organization": {"id": 639}, "project": {"owner": {"id": 25}, "assignee": {"id": 851}, "organization": {"id": 948}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 400}, "assignee": {"id": 547}, "organization": {"id": 118}, "project": {"owner": {"id": 8}, "assignee": {"id": 826}, "organization": {"id": 963}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 2, "privilege": "business"}, "organization": {"id": 127, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 456}, "assignee": {"id": 582}, "organization": {"id": 127}, "project": {"owner": {"id": 2}, "assignee": {"id": 843}, "organization": {"id": 958}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 36, "privilege": "business"}, "organization": {"id": 173, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 439}, "assignee": {"id": 542}, "organization": {"id": 668}, "project": {"owner": {"id": 36}, "assignee": {"id": 864}, "organization": {"id": 996}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 304, "owner": {"id": 489}, "assignee": {"id": 570}, "organization": {"id": 647}, "project": {"owner": {"id": 68}, "assignee": {"id": 852}, "organization": {"id": 930}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 190, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 440}, "assignee": {"id": 599}, "organization": {"id": 190}, "project": {"owner": {"id": 15}, "assignee": {"id": 864}, "organization": {"id": 910}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 413}, "assignee": {"id": 503}, "organization": {"id": 167}, "project": {"owner": {"id": 21}, "assignee": {"id": 841}, "organization": {"id": 940}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"id": 305, "owner": {"id": 453}, "assignee": {"id": 516}, "organization": {"id": 661}, "project": {"owner": {"id": 79}, "assignee": {"id": 830}, "organization": {"id": 903}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 340, "owner": {"id": 474}, "assignee": {"id": 536}, "organization": {"id": 606}, "project": {"owner": {"id": 87}, "assignee": {"id": 848}, "organization": {"id": 934}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 402}, "assignee": {"id": 574}, "organization": {"id": 107}, "project": {"owner": {"id": 26}, "assignee": {"id": 803}, "organization": {"id": 907}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 457}, "assignee": {"id": 574}, "organization": {"id": 112}, "project": {"owner": {"id": 69}, "assignee": {"id": 879}, "organization": {"id": 927}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 200}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 407}, "assignee": {"id": 518}, "organization": {"id": 642}, "project": {"owner": {"id": 84}, "assignee": {"id": 857}, "organization": {"id": 906}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 202}, "user": {"role": "worker"}}}, "resource": {"id": 321, "owner": {"id": 452}, "assignee": {"id": 522}, "organization": {"id": 615}, "project": {"owner": {"id": 67}, "assignee": {"id": 857}, "organization": {"id": 918}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 497}, "assignee": {"id": 527}, "organization": {"id": 194}, "project": {"owner": {"id": 78}, "assignee": {"id": 814}, "organization": {"id": 977}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 313, "owner": {"id": 477}, "assignee": {"id": 520}, "organization": {"id": 177}, "project": {"owner": {"id": 50}, "assignee": {"id": 848}, "organization": {"id": 910}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"id": 398, "owner": {"id": 432}, "assignee": {"id": 556}, "organization": {"id": 689}, "project": {"owner": {"id": 59}, "assignee": {"id": 814}, "organization": {"id": 912}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 301, "owner": {"id": 431}, "assignee": {"id": 509}, "organization": {"id": 676}, "project": {"owner": {"id": 60}, "assignee": {"id": 822}, "organization": {"id": 994}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 322, "owner": {"id": 478}, "assignee": {"id": 527}, "organization": {"id": 191}, "project": {"owner": {"id": 19}, "assignee": {"id": 840}, "organization": {"id": 934}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 148, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"id": 397, "owner": {"id": 471}, "assignee": {"id": 572}, "organization": {"id": 148}, "project": {"owner": {"id": 35}, "assignee": {"id": 829}, "organization": {"id": 963}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 420}, "assignee": {"id": 588}, "organization": {"id": 616}, "project": {"owner": {"id": 56}, "assignee": {"id": 886}, "organization": {"id": 909}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 476}, "assignee": {"id": 590}, "organization": {"id": 685}, "project": {"owner": {"id": 70}, "assignee": {"id": 811}, "organization": {"id": 963}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 192, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"id": 325, "owner": {"id": 439}, "assignee": {"id": 519}, "organization": {"id": 192}, "project": {"owner": {"id": 34}, "assignee": {"id": 882}, "organization": {"id": 904}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 114, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 328, "owner": {"id": 470}, "assignee": {"id": 516}, "organization": {"id": 114}, "project": {"owner": {"id": 18}, "assignee": {"id": 880}, "organization": {"id": 915}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 122, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 448}, "assignee": {"id": 567}, "organization": {"id": 651}, "project": {"owner": {"id": 94}, "assignee": {"id": 858}, "organization": {"id": 966}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"id": 399, "owner": {"id": 431}, "assignee": {"id": 581}, "organization": {"id": 629}, "project": {"owner": {"id": 79}, "assignee": {"id": 868}, "organization": {"id": 932}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 449}, "assignee": {"id": 566}, "organization": {"id": 112}, "project": {"owner": {"id": 10}, "assignee": {"id": 835}, "organization": {"id": 910}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"id": 343, "owner": {"id": 493}, "assignee": {"id": 580}, "organization": {"id": 130}, "project": {"owner": {"id": 83}, "assignee": {"id": 836}, "organization": {"id": 974}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"id": 309, "owner": {"id": 496}, "assignee": {"id": 559}, "organization": {"id": 614}, "project": {"owner": {"id": 57}, "assignee": {"id": 800}, "organization": {"id": 978}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 353, "owner": {"id": 487}, "assignee": {"id": 534}, "organization": {"id": 633}, "project": {"owner": {"id": 26}, "assignee": {"id": 875}, "organization": {"id": 951}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 402}, "assignee": {"id": 570}, "organization": {"id": 111}, "project": {"owner": {"id": 2}, "assignee": {"id": 868}, "organization": {"id": 977}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 389, "owner": {"id": 483}, "assignee": {"id": 551}, "organization": {"id": 137}, "project": {"owner": {"id": 37}, "assignee": {"id": 847}, "organization": {"id": 971}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 131, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 403}, "assignee": {"id": 574}, "organization": {"id": 663}, "project": {"owner": {"id": 71}, "assignee": {"id": 868}, "organization": {"id": 922}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 449}, "assignee": {"id": 515}, "organization": {"id": 616}, "project": {"owner": {"id": 72}, "assignee": {"id": 855}, "organization": {"id": 944}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 322, "owner": {"id": 493}, "assignee": {"id": 583}, "organization": {"id": 188}, "project": {"owner": {"id": 53}, "assignee": {"id": 893}, "organization": {"id": 938}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 334, "owner": {"id": 493}, "assignee": {"id": 571}, "organization": {"id": 159}, "project": {"owner": {"id": 43}, "assignee": {"id": 860}, "organization": {"id": 908}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"id": 313, "owner": {"id": 439}, "assignee": {"id": 556}, "organization": {"id": 625}, "project": {"owner": {"id": 95}, "assignee": {"id": 827}, "organization": {"id": 915}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 495}, "assignee": {"id": 587}, "organization": {"id": 631}, "project": {"owner": {"id": 88}, "assignee": {"id": 890}, "organization": {"id": 936}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"id": 336, "owner": {"id": 470}, "assignee": {"id": 512}, "organization": {"id": 190}, "project": {"owner": {"id": 5}, "assignee": {"id": 806}, "organization": {"id": 931}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"id": 375, "owner": {"id": 435}, "assignee": {"id": 540}, "organization": {"id": 166}, "project": {"owner": {"id": 52}, "assignee": {"id": 819}, "organization": {"id": 932}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 411}, "assignee": {"id": 525}, "organization": {"id": 669}, "project": {"owner": {"id": 31}, "assignee": {"id": 860}, "organization": {"id": 908}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 20}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 499}, "assignee": {"id": 539}, "organization": {"id": 688}, "project": {"owner": {"id": 20}, "assignee": {"id": 888}, "organization": {"id": 959}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": {"id": 129, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 450}, "assignee": {"id": 535}, "organization": {"id": 129}, "project": {"owner": {"id": 75}, "assignee": {"id": 815}, "organization": {"id": 976}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 195, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"id": 389, "owner": {"id": 418}, "assignee": {"id": 512}, "organization": {"id": 195}, "project": {"owner": {"id": 38}, "assignee": {"id": 864}, "organization": {"id": 953}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 485}, "assignee": {"id": 538}, "organization": {"id": 690}, "project": {"owner": {"id": 60}, "assignee": {"id": 846}, "organization": {"id": 938}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 121, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 423}, "assignee": {"id": 562}, "organization": {"id": 603}, "project": {"owner": {"id": 28}, "assignee": {"id": 867}, "organization": {"id": 979}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"id": 354, "owner": {"id": 416}, "assignee": {"id": 564}, "organization": {"id": 169}, "project": {"owner": {"id": 23}, "assignee": {"id": 879}, "organization": {"id": 964}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 199, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 337, "owner": {"id": 414}, "assignee": {"id": 532}, "organization": {"id": 199}, "project": {"owner": {"id": 1}, "assignee": {"id": 837}, "organization": {"id": 918}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 265}, "user": {"role": "supervisor"}}}, "resource": {"id": 307, "owner": {"id": 440}, "assignee": {"id": 568}, "organization": {"id": 661}, "project": {"owner": {"id": 71}, "assignee": {"id": 856}, "organization": {"id": 929}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 72, "privilege": "worker"}, "organization": {"id": 157, "owner": {"id": 218}, "user": {"role": "supervisor"}}}, "resource": {"id": 397, "owner": {"id": 433}, "assignee": {"id": 536}, "organization": {"id": 695}, "project": {"owner": {"id": 72}, "assignee": {"id": 803}, "organization": {"id": 928}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 343, "owner": {"id": 444}, "assignee": {"id": 564}, "organization": {"id": 132}, "project": {"owner": {"id": 27}, "assignee": {"id": 884}, "organization": {"id": 923}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 8, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 206}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 458}, "assignee": {"id": 505}, "organization": {"id": 153}, "project": {"owner": {"id": 8}, "assignee": {"id": 806}, "organization": {"id": 965}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"id": 395, "owner": {"id": 499}, "assignee": {"id": 571}, "organization": {"id": 692}, "project": {"owner": {"id": 42}, "assignee": {"id": 802}, "organization": {"id": 950}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 288}, "user": {"role": "worker"}}}, "resource": {"id": 310, "owner": {"id": 489}, "assignee": {"id": 518}, "organization": {"id": 657}, "project": {"owner": {"id": 90}, "assignee": {"id": 886}, "organization": {"id": 984}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 443}, "assignee": {"id": 551}, "organization": {"id": 110}, "project": {"owner": {"id": 2}, "assignee": {"id": 892}, "organization": {"id": 970}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 419}, "assignee": {"id": 534}, "organization": {"id": 185}, "project": {"owner": {"id": 43}, "assignee": {"id": 882}, "organization": {"id": 959}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"id": 313, "owner": {"id": 494}, "assignee": {"id": 562}, "organization": {"id": 624}, "project": {"owner": {"id": 58}, "assignee": {"id": 867}, "organization": {"id": 934}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 319, "owner": {"id": 407}, "assignee": {"id": 514}, "organization": {"id": 680}, "project": {"owner": {"id": 90}, "assignee": {"id": 831}, "organization": {"id": 916}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"id": 383, "owner": {"id": 450}, "assignee": {"id": 573}, "organization": {"id": 126}, "project": {"owner": {"id": 83}, "assignee": {"id": 869}, "organization": {"id": 980}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 480}, "assignee": {"id": 561}, "organization": {"id": 184}, "project": {"owner": {"id": 57}, "assignee": {"id": 805}, "organization": {"id": 943}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 374, "owner": {"id": 412}, "assignee": {"id": 544}, "organization": {"id": 657}, "project": {"owner": {"id": 55}, "assignee": {"id": 855}, "organization": {"id": 919}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 364, "owner": {"id": 457}, "assignee": {"id": 541}, "organization": {"id": 612}, "project": {"owner": {"id": 99}, "assignee": {"id": 899}, "organization": {"id": 982}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 486}, "assignee": {"id": 588}, "organization": {"id": 157}, "project": {"owner": {"id": 71}, "assignee": {"id": 802}, "organization": {"id": 948}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 439}, "assignee": {"id": 593}, "organization": {"id": 173}, "project": {"owner": {"id": 58}, "assignee": {"id": 876}, "organization": {"id": 950}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 341, "owner": {"id": 402}, "assignee": {"id": 565}, "organization": {"id": 685}, "project": {"owner": {"id": 73}, "assignee": {"id": 837}, "organization": {"id": 907}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 321, "owner": {"id": 498}, "assignee": {"id": 541}, "organization": {"id": 602}, "project": {"owner": {"id": 49}, "assignee": {"id": 866}, "organization": {"id": 974}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"id": 391, "owner": {"id": 441}, "assignee": {"id": 597}, "organization": {"id": 117}, "project": {"owner": {"id": 64}, "assignee": {"id": 851}, "organization": {"id": 919}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 227}, "user": {"role": "supervisor"}}}, "resource": {"id": 370, "owner": {"id": 436}, "assignee": {"id": 547}, "organization": {"id": 164}, "project": {"owner": {"id": 13}, "assignee": {"id": 842}, "organization": {"id": 910}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 323, "owner": {"id": 467}, "assignee": {"id": 518}, "organization": {"id": 658}, "project": {"owner": {"id": 25}, "assignee": {"id": 806}, "organization": {"id": 913}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"id": 335, "owner": {"id": 488}, "assignee": {"id": 553}, "organization": {"id": 644}, "project": {"owner": {"id": 52}, "assignee": {"id": 893}, "organization": {"id": 917}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 428}, "assignee": {"id": 547}, "organization": {"id": 192}, "project": {"owner": {"id": 47}, "assignee": {"id": 800}, "organization": {"id": 974}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"id": 355, "owner": {"id": 432}, "assignee": {"id": 545}, "organization": {"id": 137}, "project": {"owner": {"id": 57}, "assignee": {"id": 873}, "organization": {"id": 939}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"id": 395, "owner": {"id": 434}, "assignee": {"id": 572}, "organization": {"id": 617}, "project": {"owner": {"id": 25}, "assignee": {"id": 832}, "organization": {"id": 942}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"id": 339, "owner": {"id": 439}, "assignee": {"id": 501}, "organization": {"id": 605}, "project": {"owner": {"id": 76}, "assignee": {"id": 882}, "organization": {"id": 950}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 416}, "assignee": {"id": 516}, "organization": {"id": 112}, "project": {"owner": {"id": 3}, "assignee": {"id": 825}, "organization": {"id": 992}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 319, "owner": {"id": 468}, "assignee": {"id": 585}, "organization": {"id": 169}, "project": {"owner": {"id": 88}, "assignee": {"id": 866}, "organization": {"id": 971}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 342, "owner": {"id": 413}, "assignee": {"id": 560}, "organization": {"id": 655}, "project": {"owner": {"id": 44}, "assignee": {"id": 828}, "organization": {"id": 931}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 428}, "assignee": {"id": 542}, "organization": {"id": 625}, "project": {"owner": {"id": 50}, "assignee": {"id": 838}, "organization": {"id": 982}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 137, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 477}, "assignee": {"id": 545}, "organization": {"id": 137}, "project": {"owner": {"id": 778}, "assignee": {"id": 89}, "organization": {"id": 920}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"id": 318, "owner": {"id": 472}, "assignee": {"id": 589}, "organization": {"id": 153}, "project": {"owner": {"id": 732}, "assignee": {"id": 4}, "organization": {"id": 996}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"id": 315, "owner": {"id": 405}, "assignee": {"id": 586}, "organization": {"id": 636}, "project": {"owner": {"id": 724}, "assignee": {"id": 87}, "organization": {"id": 937}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 0, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 337, "owner": {"id": 488}, "assignee": {"id": 515}, "organization": {"id": 666}, "project": {"owner": {"id": 760}, "assignee": {"id": 0}, "organization": {"id": 955}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 334, "owner": {"id": 441}, "assignee": {"id": 507}, "organization": {"id": 195}, "project": {"owner": {"id": 726}, "assignee": {"id": 49}, "organization": {"id": 909}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"id": 365, "owner": {"id": 406}, "assignee": {"id": 578}, "organization": {"id": 147}, "project": {"owner": {"id": 766}, "assignee": {"id": 52}, "organization": {"id": 927}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 464}, "assignee": {"id": 589}, "organization": {"id": 611}, "project": {"owner": {"id": 721}, "assignee": {"id": 10}, "organization": {"id": 922}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 353, "owner": {"id": 446}, "assignee": {"id": 510}, "organization": {"id": 657}, "project": {"owner": {"id": 772}, "assignee": {"id": 91}, "organization": {"id": 952}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 417}, "assignee": {"id": 536}, "organization": {"id": 150}, "project": {"owner": {"id": 722}, "assignee": {"id": 34}, "organization": {"id": 965}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"id": 330, "owner": {"id": 444}, "assignee": {"id": 565}, "organization": {"id": 110}, "project": {"owner": {"id": 721}, "assignee": {"id": 48}, "organization": {"id": 959}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 330, "owner": {"id": 479}, "assignee": {"id": 578}, "organization": {"id": 658}, "project": {"owner": {"id": 700}, "assignee": {"id": 21}, "organization": {"id": 916}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 218}, "user": {"role": "supervisor"}}}, "resource": {"id": 399, "owner": {"id": 449}, "assignee": {"id": 544}, "organization": {"id": 664}, "project": {"owner": {"id": 733}, "assignee": {"id": 32}, "organization": {"id": 999}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 71, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 243}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 454}, "assignee": {"id": 519}, "organization": {"id": 153}, "project": {"owner": {"id": 748}, "assignee": {"id": 71}, "organization": {"id": 912}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 243}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 472}, "assignee": {"id": 597}, "organization": {"id": 135}, "project": {"owner": {"id": 734}, "assignee": {"id": 96}, "organization": {"id": 954}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 123, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 446}, "assignee": {"id": 563}, "organization": {"id": 632}, "project": {"owner": {"id": 738}, "assignee": {"id": 94}, "organization": {"id": 907}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 375, "owner": {"id": 422}, "assignee": {"id": 500}, "organization": {"id": 696}, "project": {"owner": {"id": 721}, "assignee": {"id": 12}, "organization": {"id": 904}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 37, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"id": 345, "owner": {"id": 487}, "assignee": {"id": 573}, "organization": {"id": 164}, "project": {"owner": {"id": 729}, "assignee": {"id": 37}, "organization": {"id": 970}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 433}, "assignee": {"id": 522}, "organization": {"id": 112}, "project": {"owner": {"id": 789}, "assignee": {"id": 10}, "organization": {"id": 911}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 61, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"id": 359, "owner": {"id": 438}, "assignee": {"id": 501}, "organization": {"id": 661}, "project": {"owner": {"id": 797}, "assignee": {"id": 61}, "organization": {"id": 908}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 270}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 476}, "assignee": {"id": 599}, "organization": {"id": 648}, "project": {"owner": {"id": 793}, "assignee": {"id": 83}, "organization": {"id": 986}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 20}, "user": {"role": "owner"}}}, "resource": {"id": 361, "owner": {"id": 436}, "assignee": {"id": 540}, "organization": {"id": 133}, "project": {"owner": {"id": 769}, "assignee": {"id": 20}, "organization": {"id": 931}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 95}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 422}, "assignee": {"id": 586}, "organization": {"id": 151}, "project": {"owner": {"id": 732}, "assignee": {"id": 95}, "organization": {"id": 968}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 139, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"id": 374, "owner": {"id": 433}, "assignee": {"id": 595}, "organization": {"id": 605}, "project": {"owner": {"id": 715}, "assignee": {"id": 87}, "organization": {"id": 928}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"id": 327, "owner": {"id": 468}, "assignee": {"id": 511}, "organization": {"id": 667}, "project": {"owner": {"id": 717}, "assignee": {"id": 83}, "organization": {"id": 995}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 278}, "user": {"role": "maintainer"}}}, "resource": {"id": 384, "owner": {"id": 462}, "assignee": {"id": 532}, "organization": {"id": 152}, "project": {"owner": {"id": 779}, "assignee": {"id": 58}, "organization": {"id": 926}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 421}, "assignee": {"id": 544}, "organization": {"id": 165}, "project": {"owner": {"id": 736}, "assignee": {"id": 5}, "organization": {"id": 933}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 303, "owner": {"id": 495}, "assignee": {"id": 573}, "organization": {"id": 669}, "project": {"owner": {"id": 750}, "assignee": {"id": 93}, "organization": {"id": 951}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 189, "owner": {"id": 282}, "user": {"role": "maintainer"}}}, "resource": {"id": 366, "owner": {"id": 441}, "assignee": {"id": 530}, "organization": {"id": 696}, "project": {"owner": {"id": 742}, "assignee": {"id": 33}, "organization": {"id": 906}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 378, "owner": {"id": 420}, "assignee": {"id": 586}, "organization": {"id": 193}, "project": {"owner": {"id": 779}, "assignee": {"id": 95}, "organization": {"id": 992}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"id": 346, "owner": {"id": 483}, "assignee": {"id": 550}, "organization": {"id": 145}, "project": {"owner": {"id": 753}, "assignee": {"id": 61}, "organization": {"id": 930}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 16, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"id": 362, "owner": {"id": 422}, "assignee": {"id": 567}, "organization": {"id": 627}, "project": {"owner": {"id": 794}, "assignee": {"id": 16}, "organization": {"id": 936}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 378, "owner": {"id": 485}, "assignee": {"id": 556}, "organization": {"id": 672}, "project": {"owner": {"id": 754}, "assignee": {"id": 70}, "organization": {"id": 980}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 320, "owner": {"id": 494}, "assignee": {"id": 516}, "organization": {"id": 170}, "project": {"owner": {"id": 721}, "assignee": {"id": 96}, "organization": {"id": 976}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": {"id": 138, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"id": 373, "owner": {"id": 452}, "assignee": {"id": 503}, "organization": {"id": 138}, "project": {"owner": {"id": 782}, "assignee": {"id": 14}, "organization": {"id": 976}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 334, "owner": {"id": 476}, "assignee": {"id": 516}, "organization": {"id": 648}, "project": {"owner": {"id": 799}, "assignee": {"id": 97}, "organization": {"id": 951}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 106, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 443}, "assignee": {"id": 516}, "organization": {"id": 609}, "project": {"owner": {"id": 705}, "assignee": {"id": 55}, "organization": {"id": 971}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 398, "owner": {"id": 490}, "assignee": {"id": 599}, "organization": {"id": 143}, "project": {"owner": {"id": 781}, "assignee": {"id": 4}, "organization": {"id": 997}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 233}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 496}, "assignee": {"id": 505}, "organization": {"id": 105}, "project": {"owner": {"id": 727}, "assignee": {"id": 86}, "organization": {"id": 971}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 382, "owner": {"id": 449}, "assignee": {"id": 507}, "organization": {"id": 620}, "project": {"owner": {"id": 783}, "assignee": {"id": 65}, "organization": {"id": 956}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 305, "owner": {"id": 473}, "assignee": {"id": 523}, "organization": {"id": 691}, "project": {"owner": {"id": 736}, "assignee": {"id": 99}, "organization": {"id": 954}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 339, "owner": {"id": 458}, "assignee": {"id": 509}, "organization": {"id": 196}, "project": {"owner": {"id": 733}, "assignee": {"id": 54}, "organization": {"id": 980}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 309, "owner": {"id": 491}, "assignee": {"id": 544}, "organization": {"id": 146}, "project": {"owner": {"id": 775}, "assignee": {"id": 37}, "organization": {"id": 924}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 69}, "user": {"role": "owner"}}}, "resource": {"id": 363, "owner": {"id": 411}, "assignee": {"id": 569}, "organization": {"id": 608}, "project": {"owner": {"id": 709}, "assignee": {"id": 69}, "organization": {"id": 922}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"id": 379, "owner": {"id": 421}, "assignee": {"id": 545}, "organization": {"id": 688}, "project": {"owner": {"id": 702}, "assignee": {"id": 16}, "organization": {"id": 921}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 484}, "assignee": {"id": 510}, "organization": {"id": 152}, "project": {"owner": {"id": 788}, "assignee": {"id": 21}, "organization": {"id": 965}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"id": 397, "owner": {"id": 453}, "assignee": {"id": 532}, "organization": {"id": 141}, "project": {"owner": {"id": 790}, "assignee": {"id": 89}, "organization": {"id": 930}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 139, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"id": 353, "owner": {"id": 404}, "assignee": {"id": 526}, "organization": {"id": 602}, "project": {"owner": {"id": 793}, "assignee": {"id": 73}, "organization": {"id": 982}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 282}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 417}, "assignee": {"id": 518}, "organization": {"id": 664}, "project": {"owner": {"id": 720}, "assignee": {"id": 46}, "organization": {"id": 905}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 413}, "assignee": {"id": 538}, "organization": {"id": 144}, "project": {"owner": {"id": 746}, "assignee": {"id": 16}, "organization": {"id": 976}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 9, "privilege": "user"}, "organization": {"id": 122, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 394, "owner": {"id": 465}, "assignee": {"id": 562}, "organization": {"id": 122}, "project": {"owner": {"id": 728}, "assignee": {"id": 9}, "organization": {"id": 962}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 399, "owner": {"id": 480}, "assignee": {"id": 577}, "organization": {"id": 626}, "project": {"owner": {"id": 780}, "assignee": {"id": 37}, "organization": {"id": 948}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 136, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"id": 359, "owner": {"id": 409}, "assignee": {"id": 593}, "organization": {"id": 633}, "project": {"owner": {"id": 720}, "assignee": {"id": 18}, "organization": {"id": 945}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 145, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 446}, "assignee": {"id": 592}, "organization": {"id": 145}, "project": {"owner": {"id": 709}, "assignee": {"id": 50}, "organization": {"id": 948}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 390, "owner": {"id": 431}, "assignee": {"id": 572}, "organization": {"id": 170}, "project": {"owner": {"id": 746}, "assignee": {"id": 25}, "organization": {"id": 971}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 335, "owner": {"id": 422}, "assignee": {"id": 585}, "organization": {"id": 662}, "project": {"owner": {"id": 774}, "assignee": {"id": 73}, "organization": {"id": 988}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 424}, "assignee": {"id": 502}, "organization": {"id": 630}, "project": {"owner": {"id": 767}, "assignee": {"id": 66}, "organization": {"id": 994}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 145, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 437}, "assignee": {"id": 509}, "organization": {"id": 145}, "project": {"owner": {"id": 758}, "assignee": {"id": 80}, "organization": {"id": 916}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 457}, "assignee": {"id": 521}, "organization": {"id": 109}, "project": {"owner": {"id": 770}, "assignee": {"id": 63}, "organization": {"id": 927}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 441}, "assignee": {"id": 594}, "organization": {"id": 654}, "project": {"owner": {"id": 728}, "assignee": {"id": 95}, "organization": {"id": 901}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 331, "owner": {"id": 411}, "assignee": {"id": 500}, "organization": {"id": 673}, "project": {"owner": {"id": 736}, "assignee": {"id": 63}, "organization": {"id": 999}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 471}, "assignee": {"id": 504}, "organization": {"id": 134}, "project": {"owner": {"id": 746}, "assignee": {"id": 89}, "organization": {"id": 978}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 86}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 497}, "assignee": {"id": 588}, "organization": {"id": 143}, "project": {"owner": {"id": 707}, "assignee": {"id": 86}, "organization": {"id": 983}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 35}, "user": {"role": "owner"}}}, "resource": {"id": 361, "owner": {"id": 476}, "assignee": {"id": 524}, "organization": {"id": 612}, "project": {"owner": {"id": 734}, "assignee": {"id": 35}, "organization": {"id": 920}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 419}, "assignee": {"id": 560}, "organization": {"id": 687}, "project": {"owner": {"id": 739}, "assignee": {"id": 9}, "organization": {"id": 978}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 223}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 464}, "assignee": {"id": 511}, "organization": {"id": 176}, "project": {"owner": {"id": 779}, "assignee": {"id": 24}, "organization": {"id": 955}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 420}, "assignee": {"id": 564}, "organization": {"id": 160}, "project": {"owner": {"id": 713}, "assignee": {"id": 89}, "organization": {"id": 980}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 473}, "assignee": {"id": 549}, "organization": {"id": 629}, "project": {"owner": {"id": 771}, "assignee": {"id": 88}, "organization": {"id": 981}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"id": 378, "owner": {"id": 462}, "assignee": {"id": 540}, "organization": {"id": 684}, "project": {"owner": {"id": 742}, "assignee": {"id": 40}, "organization": {"id": 913}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 172, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 422}, "assignee": {"id": 535}, "organization": {"id": 172}, "project": {"owner": {"id": 721}, "assignee": {"id": 17}, "organization": {"id": 998}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 465}, "assignee": {"id": 556}, "organization": {"id": 110}, "project": {"owner": {"id": 798}, "assignee": {"id": 69}, "organization": {"id": 982}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 177, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 395, "owner": {"id": 436}, "assignee": {"id": 588}, "organization": {"id": 672}, "project": {"owner": {"id": 710}, "assignee": {"id": 97}, "organization": {"id": 963}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 366, "owner": {"id": 411}, "assignee": {"id": 576}, "organization": {"id": 643}, "project": {"owner": {"id": 777}, "assignee": {"id": 49}, "organization": {"id": 977}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 429}, "assignee": {"id": 572}, "organization": {"id": 154}, "project": {"owner": {"id": 701}, "assignee": {"id": 22}, "organization": {"id": 901}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 419}, "assignee": {"id": 566}, "organization": {"id": 114}, "project": {"owner": {"id": 709}, "assignee": {"id": 26}, "organization": {"id": 977}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 14, "privilege": "worker"}, "organization": {"id": 156, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 480}, "assignee": {"id": 532}, "organization": {"id": 695}, "project": {"owner": {"id": 784}, "assignee": {"id": 14}, "organization": {"id": 951}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 437}, "assignee": {"id": 522}, "organization": {"id": 690}, "project": {"owner": {"id": 747}, "assignee": {"id": 80}, "organization": {"id": 914}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"id": 362, "owner": {"id": 444}, "assignee": {"id": 547}, "organization": {"id": 159}, "project": {"owner": {"id": 725}, "assignee": {"id": 71}, "organization": {"id": 962}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 156, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 446}, "assignee": {"id": 574}, "organization": {"id": 156}, "project": {"owner": {"id": 702}, "assignee": {"id": 64}, "organization": {"id": 914}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 186, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 453}, "assignee": {"id": 565}, "organization": {"id": 608}, "project": {"owner": {"id": 721}, "assignee": {"id": 76}, "organization": {"id": 989}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 3, "privilege": "worker"}, "organization": {"id": 150, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 336, "owner": {"id": 450}, "assignee": {"id": 547}, "organization": {"id": 647}, "project": {"owner": {"id": 729}, "assignee": {"id": 3}, "organization": {"id": 942}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 77}, "user": {"role": "owner"}}}, "resource": {"id": 303, "owner": {"id": 416}, "assignee": {"id": 506}, "organization": {"id": 153}, "project": {"owner": {"id": 740}, "assignee": {"id": 77}, "organization": {"id": 988}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"id": 374, "owner": {"id": 406}, "assignee": {"id": 586}, "organization": {"id": 171}, "project": {"owner": {"id": 762}, "assignee": {"id": 91}, "organization": {"id": 948}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 405}, "assignee": {"id": 576}, "organization": {"id": 618}, "project": {"owner": {"id": 763}, "assignee": {"id": 91}, "organization": {"id": 985}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 14}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 416}, "assignee": {"id": 585}, "organization": {"id": 626}, "project": {"owner": {"id": 702}, "assignee": {"id": 14}, "organization": {"id": 904}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 178, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 460}, "assignee": {"id": 542}, "organization": {"id": 178}, "project": {"owner": {"id": 798}, "assignee": {"id": 73}, "organization": {"id": 914}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 459}, "assignee": {"id": 544}, "organization": {"id": 126}, "project": {"owner": {"id": 792}, "assignee": {"id": 27}, "organization": {"id": 923}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 276}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 458}, "assignee": {"id": 583}, "organization": {"id": 612}, "project": {"owner": {"id": 726}, "assignee": {"id": 7}, "organization": {"id": 995}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 39, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 278}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 473}, "assignee": {"id": 597}, "organization": {"id": 613}, "project": {"owner": {"id": 792}, "assignee": {"id": 39}, "organization": {"id": 914}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 149, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 494}, "assignee": {"id": 553}, "organization": {"id": 149}, "project": {"owner": {"id": 729}, "assignee": {"id": 35}, "organization": {"id": 908}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 242}, "user": {"role": "supervisor"}}}, "resource": {"id": 303, "owner": {"id": 442}, "assignee": {"id": 534}, "organization": {"id": 100}, "project": {"owner": {"id": 765}, "assignee": {"id": 67}, "organization": {"id": 961}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 279}, "user": {"role": "supervisor"}}}, "resource": {"id": 376, "owner": {"id": 401}, "assignee": {"id": 507}, "organization": {"id": 697}, "project": {"owner": {"id": 719}, "assignee": {"id": 10}, "organization": {"id": 912}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 405}, "assignee": {"id": 555}, "organization": {"id": 606}, "project": {"owner": {"id": 707}, "assignee": {"id": 18}, "organization": {"id": 907}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"id": 341, "owner": {"id": 402}, "assignee": {"id": 538}, "organization": {"id": 158}, "project": {"owner": {"id": 774}, "assignee": {"id": 32}, "organization": {"id": 936}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 464}, "assignee": {"id": 530}, "organization": {"id": 115}, "project": {"owner": {"id": 723}, "assignee": {"id": 43}, "organization": {"id": 946}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 108, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 415}, "assignee": {"id": 513}, "organization": {"id": 685}, "project": {"owner": {"id": 700}, "assignee": {"id": 25}, "organization": {"id": 945}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 245}, "user": {"role": "worker"}}}, "resource": {"id": 398, "owner": {"id": 486}, "assignee": {"id": 583}, "organization": {"id": 681}, "project": {"owner": {"id": 725}, "assignee": {"id": 26}, "organization": {"id": 966}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 45, "privilege": "none"}, "organization": {"id": 160, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 369, "owner": {"id": 433}, "assignee": {"id": 599}, "organization": {"id": 160}, "project": {"owner": {"id": 753}, "assignee": {"id": 45}, "organization": {"id": 930}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 360, "owner": {"id": 489}, "assignee": {"id": 514}, "organization": {"id": 182}, "project": {"owner": {"id": 723}, "assignee": {"id": 4}, "organization": {"id": 922}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 444}, "assignee": {"id": 506}, "organization": {"id": 657}, "project": {"owner": {"id": 787}, "assignee": {"id": 54}, "organization": {"id": 918}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 416}, "assignee": {"id": 589}, "organization": {"id": 659}, "project": {"owner": {"id": 793}, "assignee": {"id": 67}, "organization": {"id": 925}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 117, "owner": {"id": 33}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 33}, "assignee": {"id": 518}, "organization": {"id": 117}, "project": {"owner": {"id": 766}, "assignee": {"id": 819}, "organization": {"id": 911}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 74}, "assignee": {"id": 593}, "organization": {"id": 161}, "project": {"owner": {"id": 715}, "assignee": {"id": 886}, "organization": {"id": 926}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 345, "owner": {"id": 9}, "assignee": {"id": 511}, "organization": {"id": 622}, "project": {"owner": {"id": 774}, "assignee": {"id": 870}, "organization": {"id": 979}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 103, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 320, "owner": {"id": 32}, "assignee": {"id": 576}, "organization": {"id": 604}, "project": {"owner": {"id": 734}, "assignee": {"id": 836}, "organization": {"id": 984}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": {"id": 190, "owner": {"id": 276}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 12}, "assignee": {"id": 599}, "organization": {"id": 190}, "project": {"owner": {"id": 776}, "assignee": {"id": 856}, "organization": {"id": 918}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 13}, "assignee": {"id": 518}, "organization": {"id": 192}, "project": {"owner": {"id": 711}, "assignee": {"id": 831}, "organization": {"id": 974}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 70}, "assignee": {"id": 508}, "organization": {"id": 699}, "project": {"owner": {"id": 790}, "assignee": {"id": 866}, "organization": {"id": 900}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 55, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 201}, "user": {"role": "maintainer"}}}, "resource": {"id": 318, "owner": {"id": 55}, "assignee": {"id": 562}, "organization": {"id": 658}, "project": {"owner": {"id": 770}, "assignee": {"id": 848}, "organization": {"id": 974}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 378, "owner": {"id": 40}, "assignee": {"id": 543}, "organization": {"id": 106}, "project": {"owner": {"id": 719}, "assignee": {"id": 852}, "organization": {"id": 913}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 16}, "assignee": {"id": 556}, "organization": {"id": 185}, "project": {"owner": {"id": 799}, "assignee": {"id": 847}, "organization": {"id": 971}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 72}, "assignee": {"id": 567}, "organization": {"id": 695}, "project": {"owner": {"id": 756}, "assignee": {"id": 872}, "organization": {"id": 974}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 328, "owner": {"id": 77}, "assignee": {"id": 518}, "organization": {"id": 654}, "project": {"owner": {"id": 715}, "assignee": {"id": 896}, "organization": {"id": 926}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 18}, "assignee": {"id": 540}, "organization": {"id": 114}, "project": {"owner": {"id": 764}, "assignee": {"id": 803}, "organization": {"id": 937}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 150, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"id": 334, "owner": {"id": 93}, "assignee": {"id": 575}, "organization": {"id": 150}, "project": {"owner": {"id": 732}, "assignee": {"id": 838}, "organization": {"id": 963}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"id": 373, "owner": {"id": 11}, "assignee": {"id": 535}, "organization": {"id": 688}, "project": {"owner": {"id": 759}, "assignee": {"id": 845}, "organization": {"id": 968}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 116, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 41}, "assignee": {"id": 521}, "organization": {"id": 646}, "project": {"owner": {"id": 721}, "assignee": {"id": 871}, "organization": {"id": 991}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 162, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"id": 398, "owner": {"id": 6}, "assignee": {"id": 505}, "organization": {"id": 162}, "project": {"owner": {"id": 729}, "assignee": {"id": 831}, "organization": {"id": 919}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 28}, "assignee": {"id": 526}, "organization": {"id": 199}, "project": {"owner": {"id": 713}, "assignee": {"id": 826}, "organization": {"id": 936}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 3}, "assignee": {"id": 533}, "organization": {"id": 632}, "project": {"owner": {"id": 731}, "assignee": {"id": 862}, "organization": {"id": 971}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 25}, "assignee": {"id": 519}, "organization": {"id": 692}, "project": {"owner": {"id": 724}, "assignee": {"id": 861}, "organization": {"id": 922}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 53}, "assignee": {"id": 588}, "organization": {"id": 103}, "project": {"owner": {"id": 742}, "assignee": {"id": 833}, "organization": {"id": 907}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 0}, "assignee": {"id": 552}, "organization": {"id": 157}, "project": {"owner": {"id": 705}, "assignee": {"id": 872}, "organization": {"id": 979}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"id": 300, "owner": {"id": 61}, "assignee": {"id": 539}, "organization": {"id": 688}, "project": {"owner": {"id": 759}, "assignee": {"id": 856}, "organization": {"id": 966}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"id": 324, "owner": {"id": 43}, "assignee": {"id": 581}, "organization": {"id": 685}, "project": {"owner": {"id": 751}, "assignee": {"id": 893}, "organization": {"id": 984}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 199, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"id": 373, "owner": {"id": 31}, "assignee": {"id": 534}, "organization": {"id": 199}, "project": {"owner": {"id": 757}, "assignee": {"id": 897}, "organization": {"id": 929}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 41}, "assignee": {"id": 582}, "organization": {"id": 103}, "project": {"owner": {"id": 708}, "assignee": {"id": 855}, "organization": {"id": 967}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 276}, "user": {"role": "maintainer"}}}, "resource": {"id": 355, "owner": {"id": 18}, "assignee": {"id": 520}, "organization": {"id": 680}, "project": {"owner": {"id": 788}, "assignee": {"id": 890}, "organization": {"id": 979}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"id": 399, "owner": {"id": 48}, "assignee": {"id": 535}, "organization": {"id": 621}, "project": {"owner": {"id": 754}, "assignee": {"id": 821}, "organization": {"id": 983}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 346, "owner": {"id": 19}, "assignee": {"id": 584}, "organization": {"id": 145}, "project": {"owner": {"id": 752}, "assignee": {"id": 866}, "organization": {"id": 968}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"id": 300, "owner": {"id": 6}, "assignee": {"id": 586}, "organization": {"id": 114}, "project": {"owner": {"id": 708}, "assignee": {"id": 884}, "organization": {"id": 960}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"id": 320, "owner": {"id": 48}, "assignee": {"id": 586}, "organization": {"id": 631}, "project": {"owner": {"id": 753}, "assignee": {"id": 828}, "organization": {"id": 999}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 395, "owner": {"id": 28}, "assignee": {"id": 532}, "organization": {"id": 607}, "project": {"owner": {"id": 721}, "assignee": {"id": 806}, "organization": {"id": 927}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 209}, "user": {"role": "worker"}}}, "resource": {"id": 309, "owner": {"id": 83}, "assignee": {"id": 588}, "organization": {"id": 162}, "project": {"owner": {"id": 740}, "assignee": {"id": 893}, "organization": {"id": 939}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 301, "owner": {"id": 68}, "assignee": {"id": 529}, "organization": {"id": 162}, "project": {"owner": {"id": 716}, "assignee": {"id": 844}, "organization": {"id": 906}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 51}, "assignee": {"id": 558}, "organization": {"id": 668}, "project": {"owner": {"id": 772}, "assignee": {"id": 808}, "organization": {"id": 947}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 244}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 70}, "assignee": {"id": 542}, "organization": {"id": 695}, "project": {"owner": {"id": 788}, "assignee": {"id": 814}, "organization": {"id": 910}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 17, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 292}, "user": {"role": null}}}, "resource": {"id": 367, "owner": {"id": 17}, "assignee": {"id": 529}, "organization": {"id": 108}, "project": {"owner": {"id": 706}, "assignee": {"id": 829}, "organization": {"id": 902}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 73}, "assignee": {"id": 585}, "organization": {"id": 117}, "project": {"owner": {"id": 759}, "assignee": {"id": 859}, "organization": {"id": 982}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 63, "privilege": "business"}, "organization": {"id": 159, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 354, "owner": {"id": 63}, "assignee": {"id": 531}, "organization": {"id": 608}, "project": {"owner": {"id": 723}, "assignee": {"id": 855}, "organization": {"id": 945}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 397, "owner": {"id": 88}, "assignee": {"id": 554}, "organization": {"id": 668}, "project": {"owner": {"id": 794}, "assignee": {"id": 822}, "organization": {"id": 934}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 149, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 386, "owner": {"id": 44}, "assignee": {"id": 539}, "organization": {"id": 149}, "project": {"owner": {"id": 788}, "assignee": {"id": 898}, "organization": {"id": 973}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 316, "owner": {"id": 13}, "assignee": {"id": 584}, "organization": {"id": 117}, "project": {"owner": {"id": 722}, "assignee": {"id": 820}, "organization": {"id": 978}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 26}, "assignee": {"id": 513}, "organization": {"id": 647}, "project": {"owner": {"id": 738}, "assignee": {"id": 885}, "organization": {"id": 954}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 59}, "user": {"role": "owner"}}}, "resource": {"id": 385, "owner": {"id": 59}, "assignee": {"id": 514}, "organization": {"id": 635}, "project": {"owner": {"id": 799}, "assignee": {"id": 845}, "organization": {"id": 977}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 397, "owner": {"id": 71}, "assignee": {"id": 500}, "organization": {"id": 173}, "project": {"owner": {"id": 755}, "assignee": {"id": 824}, "organization": {"id": 908}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 333, "owner": {"id": 75}, "assignee": {"id": 582}, "organization": {"id": 142}, "project": {"owner": {"id": 724}, "assignee": {"id": 806}, "organization": {"id": 902}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 12}, "assignee": {"id": 554}, "organization": {"id": 662}, "project": {"owner": {"id": 715}, "assignee": {"id": 812}, "organization": {"id": 986}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 122, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 373, "owner": {"id": 42}, "assignee": {"id": 582}, "organization": {"id": 699}, "project": {"owner": {"id": 773}, "assignee": {"id": 887}, "organization": {"id": 912}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"id": 307, "owner": {"id": 30}, "assignee": {"id": 549}, "organization": {"id": 189}, "project": {"owner": {"id": 785}, "assignee": {"id": 886}, "organization": {"id": 938}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 174, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 41}, "assignee": {"id": 560}, "organization": {"id": 174}, "project": {"owner": {"id": 797}, "assignee": {"id": 892}, "organization": {"id": 908}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 67}, "assignee": {"id": 587}, "organization": {"id": 653}, "project": {"owner": {"id": 779}, "assignee": {"id": 871}, "organization": {"id": 940}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 325, "owner": {"id": 56}, "assignee": {"id": 574}, "organization": {"id": 681}, "project": {"owner": {"id": 716}, "assignee": {"id": 840}, "organization": {"id": 975}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 99, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 336, "owner": {"id": 99}, "assignee": {"id": 513}, "organization": {"id": 194}, "project": {"owner": {"id": 798}, "assignee": {"id": 823}, "organization": {"id": 912}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 286}, "user": {"role": "worker"}}}, "resource": {"id": 330, "owner": {"id": 34}, "assignee": {"id": 516}, "organization": {"id": 191}, "project": {"owner": {"id": 796}, "assignee": {"id": 830}, "organization": {"id": 948}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 24}, "assignee": {"id": 512}, "organization": {"id": 647}, "project": {"owner": {"id": 716}, "assignee": {"id": 834}, "organization": {"id": 926}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 98, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"id": 302, "owner": {"id": 98}, "assignee": {"id": 542}, "organization": {"id": 625}, "project": {"owner": {"id": 735}, "assignee": {"id": 827}, "organization": {"id": 963}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 151, "owner": {"id": 266}, "user": {"role": null}}}, "resource": {"id": 390, "owner": {"id": 27}, "assignee": {"id": 581}, "organization": {"id": 151}, "project": {"owner": {"id": 760}, "assignee": {"id": 891}, "organization": {"id": 977}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 59}, "assignee": {"id": 579}, "organization": {"id": 178}, "project": {"owner": {"id": 746}, "assignee": {"id": 850}, "organization": {"id": 914}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 31}, "assignee": {"id": 579}, "organization": {"id": 676}, "project": {"owner": {"id": 787}, "assignee": {"id": 830}, "organization": {"id": 921}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 43}, "assignee": {"id": 512}, "organization": {"id": 654}, "project": {"owner": {"id": 738}, "assignee": {"id": 818}, "organization": {"id": 977}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 350, "owner": {"id": 62}, "assignee": {"id": 588}, "organization": {"id": 126}, "project": {"owner": {"id": 752}, "assignee": {"id": 865}, "organization": {"id": 926}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 3, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 350, "owner": {"id": 3}, "assignee": {"id": 516}, "organization": {"id": 102}, "project": {"owner": {"id": 748}, "assignee": {"id": 811}, "organization": {"id": 955}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"id": 398, "owner": {"id": 46}, "assignee": {"id": 537}, "organization": {"id": 658}, "project": {"owner": {"id": 752}, "assignee": {"id": 808}, "organization": {"id": 947}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 30, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 30}, "assignee": {"id": 580}, "organization": {"id": 603}, "project": {"owner": {"id": 712}, "assignee": {"id": 820}, "organization": {"id": 981}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 374, "owner": {"id": 75}, "assignee": {"id": 543}, "organization": {"id": 143}, "project": {"owner": {"id": 715}, "assignee": {"id": 867}, "organization": {"id": 999}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 290}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 11}, "assignee": {"id": 508}, "organization": {"id": 122}, "project": {"owner": {"id": 700}, "assignee": {"id": 813}, "organization": {"id": 909}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 65}, "assignee": {"id": 575}, "organization": {"id": 652}, "project": {"owner": {"id": 722}, "assignee": {"id": 886}, "organization": {"id": 946}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"id": 355, "owner": {"id": 89}, "assignee": {"id": 574}, "organization": {"id": 681}, "project": {"owner": {"id": 747}, "assignee": {"id": 828}, "organization": {"id": 920}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 322, "owner": {"id": 49}, "assignee": {"id": 525}, "organization": {"id": 148}, "project": {"owner": {"id": 771}, "assignee": {"id": 877}, "organization": {"id": 939}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 56}, "assignee": {"id": 586}, "organization": {"id": 123}, "project": {"owner": {"id": 706}, "assignee": {"id": 840}, "organization": {"id": 943}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"id": 379, "owner": {"id": 34}, "assignee": {"id": 513}, "organization": {"id": 620}, "project": {"owner": {"id": 749}, "assignee": {"id": 897}, "organization": {"id": 986}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 305, "owner": {"id": 20}, "assignee": {"id": 506}, "organization": {"id": 624}, "project": {"owner": {"id": 755}, "assignee": {"id": 894}, "organization": {"id": 950}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 30, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 30}, "assignee": {"id": 570}, "organization": {"id": 173}, "project": {"owner": {"id": 794}, "assignee": {"id": 839}, "organization": {"id": 977}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 258}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 81}, "assignee": {"id": 571}, "organization": {"id": 106}, "project": {"owner": {"id": 787}, "assignee": {"id": 861}, "organization": {"id": 915}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 36, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 342, "owner": {"id": 36}, "assignee": {"id": 588}, "organization": {"id": 654}, "project": {"owner": {"id": 767}, "assignee": {"id": 896}, "organization": {"id": 908}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 24}, "assignee": {"id": 590}, "organization": {"id": 632}, "project": {"owner": {"id": 751}, "assignee": {"id": 898}, "organization": {"id": 936}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 130, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"id": 340, "owner": {"id": 90}, "assignee": {"id": 596}, "organization": {"id": 130}, "project": {"owner": {"id": 772}, "assignee": {"id": 822}, "organization": {"id": 921}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 254}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 31}, "assignee": {"id": 553}, "organization": {"id": 145}, "project": {"owner": {"id": 763}, "assignee": {"id": 860}, "organization": {"id": 924}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"id": 398, "owner": {"id": 44}, "assignee": {"id": 552}, "organization": {"id": 649}, "project": {"owner": {"id": 707}, "assignee": {"id": 881}, "organization": {"id": 968}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"id": 347, "owner": {"id": 10}, "assignee": {"id": 591}, "organization": {"id": 658}, "project": {"owner": {"id": 772}, "assignee": {"id": 824}, "organization": {"id": 946}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 85}, "assignee": {"id": 530}, "organization": {"id": 153}, "project": {"owner": {"id": 731}, "assignee": {"id": 859}, "organization": {"id": 913}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 8}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 8}, "assignee": {"id": 571}, "organization": {"id": 121}, "project": {"owner": {"id": 734}, "assignee": {"id": 824}, "organization": {"id": 993}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 141, "owner": {"id": 56}, "user": {"role": "owner"}}}, "resource": {"id": 325, "owner": {"id": 56}, "assignee": {"id": 532}, "organization": {"id": 626}, "project": {"owner": {"id": 773}, "assignee": {"id": 818}, "organization": {"id": 980}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 372, "owner": {"id": 29}, "assignee": {"id": 514}, "organization": {"id": 676}, "project": {"owner": {"id": 755}, "assignee": {"id": 818}, "organization": {"id": 988}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 311, "owner": {"id": 22}, "assignee": {"id": 583}, "organization": {"id": 196}, "project": {"owner": {"id": 717}, "assignee": {"id": 851}, "organization": {"id": 920}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 242}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 6}, "assignee": {"id": 548}, "organization": {"id": 186}, "project": {"owner": {"id": 742}, "assignee": {"id": 829}, "organization": {"id": 914}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 387, "owner": {"id": 30}, "assignee": {"id": 583}, "organization": {"id": 623}, "project": {"owner": {"id": 734}, "assignee": {"id": 874}, "organization": {"id": 970}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 23}, "assignee": {"id": 540}, "organization": {"id": 638}, "project": {"owner": {"id": 709}, "assignee": {"id": 895}, "organization": {"id": 955}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"id": 367, "owner": {"id": 95}, "assignee": {"id": 566}, "organization": {"id": 104}, "project": {"owner": {"id": 731}, "assignee": {"id": 801}, "organization": {"id": 911}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"id": 338, "owner": {"id": 50}, "assignee": {"id": 514}, "organization": {"id": 172}, "project": {"owner": {"id": 704}, "assignee": {"id": 819}, "organization": {"id": 952}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 118, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 40}, "assignee": {"id": 511}, "organization": {"id": 680}, "project": {"owner": {"id": 786}, "assignee": {"id": 847}, "organization": {"id": 926}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 116, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 1}, "assignee": {"id": 525}, "organization": {"id": 676}, "project": {"owner": {"id": 782}, "assignee": {"id": 833}, "organization": {"id": 979}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 361, "owner": {"id": 49}, "assignee": {"id": 537}, "organization": {"id": 197}, "project": {"owner": {"id": 764}, "assignee": {"id": 894}, "organization": {"id": 945}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"id": 324, "owner": {"id": 24}, "assignee": {"id": 588}, "organization": {"id": 129}, "project": {"owner": {"id": 797}, "assignee": {"id": 808}, "organization": {"id": 981}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 209}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 83}, "assignee": {"id": 567}, "organization": {"id": 636}, "project": {"owner": {"id": 737}, "assignee": {"id": 802}, "organization": {"id": 998}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"id": 394, "owner": {"id": 43}, "assignee": {"id": 589}, "organization": {"id": 606}, "project": {"owner": {"id": 725}, "assignee": {"id": 829}, "organization": {"id": 966}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"id": 371, "owner": {"id": 23}, "assignee": {"id": 559}, "organization": {"id": 105}, "project": {"owner": {"id": 729}, "assignee": {"id": 859}, "organization": {"id": 969}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"id": 368, "owner": {"id": 86}, "assignee": {"id": 539}, "organization": {"id": 173}, "project": {"owner": {"id": 722}, "assignee": {"id": 844}, "organization": {"id": 933}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"id": 372, "owner": {"id": 40}, "assignee": {"id": 559}, "organization": {"id": 693}, "project": {"owner": {"id": 708}, "assignee": {"id": 863}, "organization": {"id": 925}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 150, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 361, "owner": {"id": 27}, "assignee": {"id": 567}, "organization": {"id": 608}, "project": {"owner": {"id": 745}, "assignee": {"id": 847}, "organization": {"id": 988}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 383, "owner": {"id": 475}, "assignee": {"id": 19}, "organization": {"id": 180}, "project": {"owner": {"id": 767}, "assignee": {"id": 884}, "organization": {"id": 929}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 327, "owner": {"id": 438}, "assignee": {"id": 13}, "organization": {"id": 151}, "project": {"owner": {"id": 783}, "assignee": {"id": 827}, "organization": {"id": 935}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 80, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 80}, "user": {"role": "owner"}}}, "resource": {"id": 376, "owner": {"id": 431}, "assignee": {"id": 80}, "organization": {"id": 602}, "project": {"owner": {"id": 709}, "assignee": {"id": 823}, "organization": {"id": 906}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 99, "privilege": "admin"}, "organization": {"id": 103, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 386, "owner": {"id": 409}, "assignee": {"id": 99}, "organization": {"id": 668}, "project": {"owner": {"id": 771}, "assignee": {"id": 845}, "organization": {"id": 900}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 145, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 346, "owner": {"id": 468}, "assignee": {"id": 64}, "organization": {"id": 145}, "project": {"owner": {"id": 782}, "assignee": {"id": 864}, "organization": {"id": 966}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 127, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 485}, "assignee": {"id": 25}, "organization": {"id": 127}, "project": {"owner": {"id": 748}, "assignee": {"id": 831}, "organization": {"id": 978}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"id": 355, "owner": {"id": 447}, "assignee": {"id": 49}, "organization": {"id": 647}, "project": {"owner": {"id": 714}, "assignee": {"id": 816}, "organization": {"id": 974}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 448}, "assignee": {"id": 16}, "organization": {"id": 609}, "project": {"owner": {"id": 744}, "assignee": {"id": 828}, "organization": {"id": 964}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 163, "owner": {"id": 281}, "user": {"role": "supervisor"}}}, "resource": {"id": 384, "owner": {"id": 452}, "assignee": {"id": 8}, "organization": {"id": 163}, "project": {"owner": {"id": 724}, "assignee": {"id": 809}, "organization": {"id": 906}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 493}, "assignee": {"id": 26}, "organization": {"id": 121}, "project": {"owner": {"id": 719}, "assignee": {"id": 835}, "organization": {"id": 985}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 218}, "user": {"role": "supervisor"}}}, "resource": {"id": 322, "owner": {"id": 401}, "assignee": {"id": 39}, "organization": {"id": 676}, "project": {"owner": {"id": 768}, "assignee": {"id": 831}, "organization": {"id": 961}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 149, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 356, "owner": {"id": 441}, "assignee": {"id": 84}, "organization": {"id": 694}, "project": {"owner": {"id": 707}, "assignee": {"id": 818}, "organization": {"id": 953}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 117, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 374, "owner": {"id": 429}, "assignee": {"id": 96}, "organization": {"id": 117}, "project": {"owner": {"id": 791}, "assignee": {"id": 819}, "organization": {"id": 930}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"id": 377, "owner": {"id": 438}, "assignee": {"id": 23}, "organization": {"id": 130}, "project": {"owner": {"id": 779}, "assignee": {"id": 893}, "organization": {"id": 923}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 316, "owner": {"id": 459}, "assignee": {"id": 89}, "organization": {"id": 639}, "project": {"owner": {"id": 781}, "assignee": {"id": 892}, "organization": {"id": 916}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"id": 355, "owner": {"id": 441}, "assignee": {"id": 43}, "organization": {"id": 600}, "project": {"owner": {"id": 789}, "assignee": {"id": 854}, "organization": {"id": 947}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 156, "owner": {"id": 214}, "user": {"role": null}}}, "resource": {"id": 305, "owner": {"id": 442}, "assignee": {"id": 51}, "organization": {"id": 156}, "project": {"owner": {"id": 752}, "assignee": {"id": 897}, "organization": {"id": 907}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 76, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 463}, "assignee": {"id": 76}, "organization": {"id": 161}, "project": {"owner": {"id": 774}, "assignee": {"id": 840}, "organization": {"id": 980}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 127, "owner": {"id": 255}, "user": {"role": null}}}, "resource": {"id": 300, "owner": {"id": 428}, "assignee": {"id": 41}, "organization": {"id": 630}, "project": {"owner": {"id": 710}, "assignee": {"id": 870}, "organization": {"id": 960}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"id": 396, "owner": {"id": 405}, "assignee": {"id": 41}, "organization": {"id": 651}, "project": {"owner": {"id": 730}, "assignee": {"id": 879}, "organization": {"id": 999}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"id": 333, "owner": {"id": 443}, "assignee": {"id": 61}, "organization": {"id": 142}, "project": {"owner": {"id": 741}, "assignee": {"id": 800}, "organization": {"id": 910}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 166, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 410}, "assignee": {"id": 7}, "organization": {"id": 166}, "project": {"owner": {"id": 763}, "assignee": {"id": 842}, "organization": {"id": 909}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 391, "owner": {"id": 430}, "assignee": {"id": 53}, "organization": {"id": 659}, "project": {"owner": {"id": 741}, "assignee": {"id": 813}, "organization": {"id": 999}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"id": 322, "owner": {"id": 451}, "assignee": {"id": 5}, "organization": {"id": 656}, "project": {"owner": {"id": 734}, "assignee": {"id": 864}, "organization": {"id": 965}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 377, "owner": {"id": 477}, "assignee": {"id": 85}, "organization": {"id": 157}, "project": {"owner": {"id": 748}, "assignee": {"id": 826}, "organization": {"id": 967}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 355, "owner": {"id": 444}, "assignee": {"id": 33}, "organization": {"id": 178}, "project": {"owner": {"id": 776}, "assignee": {"id": 814}, "organization": {"id": 967}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 334, "owner": {"id": 498}, "assignee": {"id": 62}, "organization": {"id": 638}, "project": {"owner": {"id": 759}, "assignee": {"id": 830}, "organization": {"id": 925}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 437}, "assignee": {"id": 76}, "organization": {"id": 694}, "project": {"owner": {"id": 793}, "assignee": {"id": 827}, "organization": {"id": 956}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 334, "owner": {"id": 462}, "assignee": {"id": 61}, "organization": {"id": 178}, "project": {"owner": {"id": 739}, "assignee": {"id": 832}, "organization": {"id": 977}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 293}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 460}, "assignee": {"id": 12}, "organization": {"id": 182}, "project": {"owner": {"id": 767}, "assignee": {"id": 816}, "organization": {"id": 933}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 390, "owner": {"id": 446}, "assignee": {"id": 47}, "organization": {"id": 648}, "project": {"owner": {"id": 757}, "assignee": {"id": 826}, "organization": {"id": 987}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 130, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 485}, "assignee": {"id": 1}, "organization": {"id": 653}, "project": {"owner": {"id": 766}, "assignee": {"id": 818}, "organization": {"id": 912}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 40, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"id": 342, "owner": {"id": 406}, "assignee": {"id": 40}, "organization": {"id": 109}, "project": {"owner": {"id": 765}, "assignee": {"id": 856}, "organization": {"id": 911}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 469}, "assignee": {"id": 77}, "organization": {"id": 179}, "project": {"owner": {"id": 756}, "assignee": {"id": 886}, "organization": {"id": 952}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 113, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 447}, "assignee": {"id": 84}, "organization": {"id": 632}, "project": {"owner": {"id": 780}, "assignee": {"id": 821}, "organization": {"id": 992}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 449}, "assignee": {"id": 74}, "organization": {"id": 689}, "project": {"owner": {"id": 742}, "assignee": {"id": 895}, "organization": {"id": 923}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"id": 305, "owner": {"id": 453}, "assignee": {"id": 26}, "organization": {"id": 162}, "project": {"owner": {"id": 750}, "assignee": {"id": 857}, "organization": {"id": 969}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 499}, "assignee": {"id": 37}, "organization": {"id": 198}, "project": {"owner": {"id": 772}, "assignee": {"id": 855}, "organization": {"id": 970}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 239}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 472}, "assignee": {"id": 4}, "organization": {"id": 677}, "project": {"owner": {"id": 778}, "assignee": {"id": 881}, "organization": {"id": 932}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 207}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 454}, "assignee": {"id": 89}, "organization": {"id": 670}, "project": {"owner": {"id": 718}, "assignee": {"id": 809}, "organization": {"id": 995}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 381, "owner": {"id": 456}, "assignee": {"id": 37}, "organization": {"id": 142}, "project": {"owner": {"id": 763}, "assignee": {"id": 875}, "organization": {"id": 927}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 41, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 352, "owner": {"id": 459}, "assignee": {"id": 41}, "organization": {"id": 177}, "project": {"owner": {"id": 734}, "assignee": {"id": 805}, "organization": {"id": 996}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 14, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 14}, "user": {"role": "owner"}}}, "resource": {"id": 320, "owner": {"id": 413}, "assignee": {"id": 14}, "organization": {"id": 698}, "project": {"owner": {"id": 778}, "assignee": {"id": 866}, "organization": {"id": 939}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 373, "owner": {"id": 483}, "assignee": {"id": 3}, "organization": {"id": 664}, "project": {"owner": {"id": 733}, "assignee": {"id": 839}, "organization": {"id": 987}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 193, "owner": {"id": 221}, "user": {"role": "maintainer"}}}, "resource": {"id": 362, "owner": {"id": 489}, "assignee": {"id": 96}, "organization": {"id": 193}, "project": {"owner": {"id": 746}, "assignee": {"id": 889}, "organization": {"id": 967}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": {"id": 163, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 365, "owner": {"id": 493}, "assignee": {"id": 50}, "organization": {"id": 163}, "project": {"owner": {"id": 732}, "assignee": {"id": 822}, "organization": {"id": 936}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 495}, "assignee": {"id": 51}, "organization": {"id": 652}, "project": {"owner": {"id": 780}, "assignee": {"id": 867}, "organization": {"id": 932}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 470}, "assignee": {"id": 46}, "organization": {"id": 603}, "project": {"owner": {"id": 720}, "assignee": {"id": 881}, "organization": {"id": 987}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 448}, "assignee": {"id": 88}, "organization": {"id": 196}, "project": {"owner": {"id": 786}, "assignee": {"id": 827}, "organization": {"id": 952}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 193, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 337, "owner": {"id": 423}, "assignee": {"id": 86}, "organization": {"id": 193}, "project": {"owner": {"id": 783}, "assignee": {"id": 888}, "organization": {"id": 991}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 309, "owner": {"id": 424}, "assignee": {"id": 10}, "organization": {"id": 663}, "project": {"owner": {"id": 708}, "assignee": {"id": 898}, "organization": {"id": 947}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 192, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"id": 373, "owner": {"id": 442}, "assignee": {"id": 30}, "organization": {"id": 689}, "project": {"owner": {"id": 741}, "assignee": {"id": 883}, "organization": {"id": 931}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 128, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"id": 331, "owner": {"id": 416}, "assignee": {"id": 96}, "organization": {"id": 128}, "project": {"owner": {"id": 732}, "assignee": {"id": 810}, "organization": {"id": 962}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 20, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 255}, "user": {"role": "worker"}}}, "resource": {"id": 316, "owner": {"id": 449}, "assignee": {"id": 20}, "organization": {"id": 147}, "project": {"owner": {"id": 732}, "assignee": {"id": 880}, "organization": {"id": 919}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 149, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 478}, "assignee": {"id": 66}, "organization": {"id": 621}, "project": {"owner": {"id": 799}, "assignee": {"id": 825}, "organization": {"id": 981}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 45, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 334, "owner": {"id": 474}, "assignee": {"id": 45}, "organization": {"id": 606}, "project": {"owner": {"id": 701}, "assignee": {"id": 844}, "organization": {"id": 975}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 124, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 470}, "assignee": {"id": 51}, "organization": {"id": 124}, "project": {"owner": {"id": 791}, "assignee": {"id": 887}, "organization": {"id": 921}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 465}, "assignee": {"id": 42}, "organization": {"id": 176}, "project": {"owner": {"id": 759}, "assignee": {"id": 850}, "organization": {"id": 983}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 138, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"id": 328, "owner": {"id": 418}, "assignee": {"id": 15}, "organization": {"id": 607}, "project": {"owner": {"id": 711}, "assignee": {"id": 814}, "organization": {"id": 916}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 6, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 332, "owner": {"id": 405}, "assignee": {"id": 6}, "organization": {"id": 652}, "project": {"owner": {"id": 712}, "assignee": {"id": 844}, "organization": {"id": 900}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 447}, "assignee": {"id": 62}, "organization": {"id": 120}, "project": {"owner": {"id": 702}, "assignee": {"id": 815}, "organization": {"id": 936}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"id": 391, "owner": {"id": 440}, "assignee": {"id": 18}, "organization": {"id": 109}, "project": {"owner": {"id": 734}, "assignee": {"id": 882}, "organization": {"id": 973}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 484}, "assignee": {"id": 23}, "organization": {"id": 616}, "project": {"owner": {"id": 760}, "assignee": {"id": 826}, "organization": {"id": 975}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 188, "owner": {"id": 45}, "user": {"role": "owner"}}}, "resource": {"id": 324, "owner": {"id": 445}, "assignee": {"id": 45}, "organization": {"id": 692}, "project": {"owner": {"id": 779}, "assignee": {"id": 898}, "organization": {"id": 955}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"id": 382, "owner": {"id": 406}, "assignee": {"id": 71}, "organization": {"id": 178}, "project": {"owner": {"id": 778}, "assignee": {"id": 834}, "organization": {"id": 952}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 438}, "assignee": {"id": 66}, "organization": {"id": 165}, "project": {"owner": {"id": 751}, "assignee": {"id": 836}, "organization": {"id": 979}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 81, "privilege": "worker"}, "organization": {"id": 150, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 476}, "assignee": {"id": 81}, "organization": {"id": 639}, "project": {"owner": {"id": 740}, "assignee": {"id": 806}, "organization": {"id": 954}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 159, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 398, "owner": {"id": 408}, "assignee": {"id": 37}, "organization": {"id": 683}, "project": {"owner": {"id": 768}, "assignee": {"id": 843}, "organization": {"id": 925}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 329, "owner": {"id": 440}, "assignee": {"id": 66}, "organization": {"id": 133}, "project": {"owner": {"id": 706}, "assignee": {"id": 875}, "organization": {"id": 966}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 106, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 438}, "assignee": {"id": 54}, "organization": {"id": 106}, "project": {"owner": {"id": 703}, "assignee": {"id": 896}, "organization": {"id": 906}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 426}, "assignee": {"id": 99}, "organization": {"id": 657}, "project": {"owner": {"id": 744}, "assignee": {"id": 821}, "organization": {"id": 988}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"id": 320, "owner": {"id": 405}, "assignee": {"id": 28}, "organization": {"id": 670}, "project": {"owner": {"id": 762}, "assignee": {"id": 820}, "organization": {"id": 933}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 250}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 441}, "assignee": {"id": 9}, "organization": {"id": 161}, "project": {"owner": {"id": 738}, "assignee": {"id": 855}, "organization": {"id": 981}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 12, "privilege": "worker"}, "organization": {"id": 125, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"id": 396, "owner": {"id": 430}, "assignee": {"id": 12}, "organization": {"id": 125}, "project": {"owner": {"id": 710}, "assignee": {"id": 819}, "organization": {"id": 944}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 283}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 447}, "assignee": {"id": 11}, "organization": {"id": 615}, "project": {"owner": {"id": 724}, "assignee": {"id": 845}, "organization": {"id": 945}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 319, "owner": {"id": 403}, "assignee": {"id": 60}, "organization": {"id": 688}, "project": {"owner": {"id": 718}, "assignee": {"id": 892}, "organization": {"id": 924}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 412}, "assignee": {"id": 5}, "organization": {"id": 109}, "project": {"owner": {"id": 725}, "assignee": {"id": 827}, "organization": {"id": 952}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 455}, "assignee": {"id": 69}, "organization": {"id": 124}, "project": {"owner": {"id": 725}, "assignee": {"id": 832}, "organization": {"id": 956}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 388, "owner": {"id": 448}, "assignee": {"id": 19}, "organization": {"id": 639}, "project": {"owner": {"id": 729}, "assignee": {"id": 899}, "organization": {"id": 913}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 440}, "assignee": {"id": 69}, "organization": {"id": 629}, "project": {"owner": {"id": 739}, "assignee": {"id": 856}, "organization": {"id": 962}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 142, "owner": {"id": 54}, "user": {"role": "owner"}}}, "resource": {"id": 344, "owner": {"id": 420}, "assignee": {"id": 54}, "organization": {"id": 142}, "project": {"owner": {"id": 729}, "assignee": {"id": 800}, "organization": {"id": 934}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 118, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 386, "owner": {"id": 415}, "assignee": {"id": 99}, "organization": {"id": 118}, "project": {"owner": {"id": 779}, "assignee": {"id": 866}, "organization": {"id": 998}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 176, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 306, "owner": {"id": 421}, "assignee": {"id": 55}, "organization": {"id": 670}, "project": {"owner": {"id": 750}, "assignee": {"id": 838}, "organization": {"id": 982}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 427}, "assignee": {"id": 73}, "organization": {"id": 639}, "project": {"owner": {"id": 774}, "assignee": {"id": 889}, "organization": {"id": 997}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 273}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 420}, "assignee": {"id": 34}, "organization": {"id": 186}, "project": {"owner": {"id": 756}, "assignee": {"id": 879}, "organization": {"id": 913}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 479}, "assignee": {"id": 23}, "organization": {"id": 179}, "project": {"owner": {"id": 783}, "assignee": {"id": 885}, "organization": {"id": 970}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 183, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 416}, "assignee": {"id": 98}, "organization": {"id": 696}, "project": {"owner": {"id": 761}, "assignee": {"id": 871}, "organization": {"id": 915}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 199, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 390, "owner": {"id": 442}, "assignee": {"id": 42}, "organization": {"id": 666}, "project": {"owner": {"id": 771}, "assignee": {"id": 815}, "organization": {"id": 943}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 298}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 426}, "assignee": {"id": 96}, "organization": {"id": 163}, "project": {"owner": {"id": 783}, "assignee": {"id": 862}, "organization": {"id": 946}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"id": 373, "owner": {"id": 451}, "assignee": {"id": 86}, "organization": {"id": 153}, "project": {"owner": {"id": 749}, "assignee": {"id": 861}, "organization": {"id": 929}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 369, "owner": {"id": 435}, "assignee": {"id": 4}, "organization": {"id": 627}, "project": {"owner": {"id": 715}, "assignee": {"id": 855}, "organization": {"id": 937}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 132, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 472}, "assignee": {"id": 67}, "organization": {"id": 687}, "project": {"owner": {"id": 700}, "assignee": {"id": 811}, "organization": {"id": 992}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 250}, "user": {"role": "worker"}}}, "resource": {"id": 316, "owner": {"id": 406}, "assignee": {"id": 18}, "organization": {"id": 175}, "project": {"owner": {"id": 755}, "assignee": {"id": 818}, "organization": {"id": 936}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 283}, "user": {"role": "worker"}}}, "resource": {"id": 395, "owner": {"id": 436}, "assignee": {"id": 88}, "organization": {"id": 110}, "project": {"owner": {"id": 709}, "assignee": {"id": 881}, "organization": {"id": 996}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"id": 333, "owner": {"id": 415}, "assignee": {"id": 62}, "organization": {"id": 672}, "project": {"owner": {"id": 747}, "assignee": {"id": 817}, "organization": {"id": 997}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 262}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 449}, "assignee": {"id": 18}, "organization": {"id": 605}, "project": {"owner": {"id": 737}, "assignee": {"id": 814}, "organization": {"id": 954}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 330, "owner": {"id": 476}, "assignee": {"id": 84}, "organization": {"id": 182}, "project": {"owner": {"id": 736}, "assignee": {"id": 807}, "organization": {"id": 988}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 318, "owner": {"id": 414}, "assignee": {"id": 1}, "organization": {"id": 122}, "project": {"owner": {"id": 786}, "assignee": {"id": 867}, "organization": {"id": 940}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"id": 317, "owner": {"id": 467}, "assignee": {"id": 38}, "organization": {"id": 628}, "project": {"owner": {"id": 787}, "assignee": {"id": 856}, "organization": {"id": 936}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"id": 386, "owner": {"id": 450}, "assignee": {"id": 97}, "organization": {"id": 697}, "project": {"owner": {"id": 736}, "assignee": {"id": 852}, "organization": {"id": 949}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"id": 300, "owner": {"id": 408}, "assignee": {"id": 586}, "organization": {"id": 133}, "project": {"owner": {"id": 734}, "assignee": {"id": 832}, "organization": {"id": 936}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 12}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 485}, "assignee": {"id": 575}, "organization": {"id": 134}, "project": {"owner": {"id": 710}, "assignee": {"id": 843}, "organization": {"id": 959}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 71, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"id": 376, "owner": {"id": 457}, "assignee": {"id": 571}, "organization": {"id": 627}, "project": {"owner": {"id": 783}, "assignee": {"id": 870}, "organization": {"id": 989}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 66}, "user": {"role": "owner"}}}, "resource": {"id": 343, "owner": {"id": 487}, "assignee": {"id": 534}, "organization": {"id": 672}, "project": {"owner": {"id": 785}, "assignee": {"id": 881}, "organization": {"id": 998}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 445}, "assignee": {"id": 550}, "organization": {"id": 125}, "project": {"owner": {"id": 764}, "assignee": {"id": 810}, "organization": {"id": 997}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"id": 314, "owner": {"id": 450}, "assignee": {"id": 541}, "organization": {"id": 130}, "project": {"owner": {"id": 756}, "assignee": {"id": 841}, "organization": {"id": 967}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 163, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 423}, "assignee": {"id": 507}, "organization": {"id": 621}, "project": {"owner": {"id": 778}, "assignee": {"id": 843}, "organization": {"id": 973}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 290}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 429}, "assignee": {"id": 573}, "organization": {"id": 618}, "project": {"owner": {"id": 786}, "assignee": {"id": 856}, "organization": {"id": 952}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 482}, "assignee": {"id": 559}, "organization": {"id": 192}, "project": {"owner": {"id": 762}, "assignee": {"id": 862}, "organization": {"id": 994}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 467}, "assignee": {"id": 531}, "organization": {"id": 155}, "project": {"owner": {"id": 774}, "assignee": {"id": 808}, "organization": {"id": 981}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 379, "owner": {"id": 458}, "assignee": {"id": 591}, "organization": {"id": 685}, "project": {"owner": {"id": 751}, "assignee": {"id": 807}, "organization": {"id": 903}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 347, "owner": {"id": 428}, "assignee": {"id": 587}, "organization": {"id": 696}, "project": {"owner": {"id": 774}, "assignee": {"id": 868}, "organization": {"id": 945}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 7, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"id": 395, "owner": {"id": 458}, "assignee": {"id": 548}, "organization": {"id": 192}, "project": {"owner": {"id": 753}, "assignee": {"id": 883}, "organization": {"id": 977}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 288}, "user": {"role": "worker"}}}, "resource": {"id": 392, "owner": {"id": 410}, "assignee": {"id": 515}, "organization": {"id": 169}, "project": {"owner": {"id": 705}, "assignee": {"id": 830}, "organization": {"id": 938}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 97, "privilege": "admin"}, "organization": {"id": 149, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"id": 309, "owner": {"id": 485}, "assignee": {"id": 524}, "organization": {"id": 639}, "project": {"owner": {"id": 725}, "assignee": {"id": 805}, "organization": {"id": 958}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 5, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 471}, "assignee": {"id": 540}, "organization": {"id": 619}, "project": {"owner": {"id": 718}, "assignee": {"id": 835}, "organization": {"id": 932}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 293}, "user": {"role": null}}}, "resource": {"id": 398, "owner": {"id": 481}, "assignee": {"id": 560}, "organization": {"id": 138}, "project": {"owner": {"id": 718}, "assignee": {"id": 859}, "organization": {"id": 945}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"id": 381, "owner": {"id": 459}, "assignee": {"id": 533}, "organization": {"id": 154}, "project": {"owner": {"id": 753}, "assignee": {"id": 861}, "organization": {"id": 969}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 119, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 404}, "assignee": {"id": 533}, "organization": {"id": 609}, "project": {"owner": {"id": 790}, "assignee": {"id": 819}, "organization": {"id": 945}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 328, "owner": {"id": 444}, "assignee": {"id": 558}, "organization": {"id": 646}, "project": {"owner": {"id": 780}, "assignee": {"id": 869}, "organization": {"id": 952}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 487}, "assignee": {"id": 561}, "organization": {"id": 162}, "project": {"owner": {"id": 731}, "assignee": {"id": 868}, "organization": {"id": 969}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"id": 361, "owner": {"id": 414}, "assignee": {"id": 532}, "organization": {"id": 118}, "project": {"owner": {"id": 750}, "assignee": {"id": 850}, "organization": {"id": 984}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 421}, "assignee": {"id": 573}, "organization": {"id": 629}, "project": {"owner": {"id": 776}, "assignee": {"id": 810}, "organization": {"id": 952}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"id": 364, "owner": {"id": 418}, "assignee": {"id": 546}, "organization": {"id": 646}, "project": {"owner": {"id": 711}, "assignee": {"id": 832}, "organization": {"id": 913}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 379, "owner": {"id": 407}, "assignee": {"id": 590}, "organization": {"id": 117}, "project": {"owner": {"id": 787}, "assignee": {"id": 814}, "organization": {"id": 904}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"id": 331, "owner": {"id": 481}, "assignee": {"id": 524}, "organization": {"id": 158}, "project": {"owner": {"id": 748}, "assignee": {"id": 843}, "organization": {"id": 965}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 163, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"id": 399, "owner": {"id": 423}, "assignee": {"id": 544}, "organization": {"id": 676}, "project": {"owner": {"id": 779}, "assignee": {"id": 825}, "organization": {"id": 903}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 318, "owner": {"id": 451}, "assignee": {"id": 595}, "organization": {"id": 601}, "project": {"owner": {"id": 770}, "assignee": {"id": 893}, "organization": {"id": 962}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 218}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 439}, "assignee": {"id": 575}, "organization": {"id": 191}, "project": {"owner": {"id": 789}, "assignee": {"id": 815}, "organization": {"id": 987}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"id": 366, "owner": {"id": 480}, "assignee": {"id": 565}, "organization": {"id": 187}, "project": {"owner": {"id": 732}, "assignee": {"id": 813}, "organization": {"id": 969}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 277}, "user": {"role": "supervisor"}}}, "resource": {"id": 309, "owner": {"id": 430}, "assignee": {"id": 545}, "organization": {"id": 619}, "project": {"owner": {"id": 768}, "assignee": {"id": 807}, "organization": {"id": 918}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 424}, "assignee": {"id": 581}, "organization": {"id": 648}, "project": {"owner": {"id": 705}, "assignee": {"id": 874}, "organization": {"id": 961}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 189, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 498}, "assignee": {"id": 587}, "organization": {"id": 189}, "project": {"owner": {"id": 761}, "assignee": {"id": 848}, "organization": {"id": 921}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 411}, "assignee": {"id": 506}, "organization": {"id": 194}, "project": {"owner": {"id": 713}, "assignee": {"id": 879}, "organization": {"id": 937}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 218}, "user": {"role": "worker"}}}, "resource": {"id": 335, "owner": {"id": 427}, "assignee": {"id": 564}, "organization": {"id": 674}, "project": {"owner": {"id": 735}, "assignee": {"id": 895}, "organization": {"id": 990}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 282}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 447}, "assignee": {"id": 592}, "organization": {"id": 686}, "project": {"owner": {"id": 783}, "assignee": {"id": 848}, "organization": {"id": 983}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"id": 332, "owner": {"id": 442}, "assignee": {"id": 597}, "organization": {"id": 153}, "project": {"owner": {"id": 762}, "assignee": {"id": 802}, "organization": {"id": 994}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 170, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"id": 347, "owner": {"id": 465}, "assignee": {"id": 509}, "organization": {"id": 170}, "project": {"owner": {"id": 745}, "assignee": {"id": 879}, "organization": {"id": 975}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 93, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 271}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 483}, "assignee": {"id": 569}, "organization": {"id": 686}, "project": {"owner": {"id": 702}, "assignee": {"id": 814}, "organization": {"id": 972}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 155, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"id": 354, "owner": {"id": 449}, "assignee": {"id": 532}, "organization": {"id": 680}, "project": {"owner": {"id": 753}, "assignee": {"id": 846}, "organization": {"id": 977}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 72}, "user": {"role": "owner"}}}, "resource": {"id": 337, "owner": {"id": 477}, "assignee": {"id": 547}, "organization": {"id": 142}, "project": {"owner": {"id": 760}, "assignee": {"id": 830}, "organization": {"id": 994}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 372, "owner": {"id": 436}, "assignee": {"id": 520}, "organization": {"id": 116}, "project": {"owner": {"id": 775}, "assignee": {"id": 873}, "organization": {"id": 941}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 76, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 76}, "user": {"role": "owner"}}}, "resource": {"id": 318, "owner": {"id": 490}, "assignee": {"id": 584}, "organization": {"id": 637}, "project": {"owner": {"id": 730}, "assignee": {"id": 808}, "organization": {"id": 913}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 139, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 322, "owner": {"id": 444}, "assignee": {"id": 572}, "organization": {"id": 621}, "project": {"owner": {"id": 755}, "assignee": {"id": 895}, "organization": {"id": 991}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "update:project", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 492}, "assignee": {"id": 595}, "organization": {"id": 166}, "project": {"owner": {"id": 795}, "assignee": {"id": 866}, "organization": {"id": 932}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "export:backup", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 486}, "assignee": {"id": 550}, "organization": {"id": 153}, "project": {"owner": {"id": 740}, "assignee": {"id": 885}, "organization": {"id": 990}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 303, "owner": {"id": 478}, "assignee": {"id": 522}, "organization": {"id": 693}, "project": {"owner": {"id": 711}, "assignee": {"id": 862}, "organization": {"id": 909}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 355, "owner": {"id": 476}, "assignee": {"id": 526}, "organization": {"id": 623}, "project": {"owner": {"id": 775}, "assignee": {"id": 859}, "organization": {"id": 976}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 322, "owner": {"id": 432}, "assignee": {"id": 507}, "organization": {"id": 130}, "project": {"owner": {"id": 761}, "assignee": {"id": 825}, "organization": {"id": 920}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 68, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 346, "owner": {"id": 493}, "assignee": {"id": 510}, "organization": {"id": 137}, "project": {"owner": {"id": 738}, "assignee": {"id": 839}, "organization": {"id": 968}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"id": 333, "owner": {"id": 449}, "assignee": {"id": 585}, "organization": {"id": 677}, "project": {"owner": {"id": 741}, "assignee": {"id": 837}, "organization": {"id": 950}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 158, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 335, "owner": {"id": 403}, "assignee": {"id": 506}, "organization": {"id": 699}, "project": {"owner": {"id": 700}, "assignee": {"id": 886}, "organization": {"id": 923}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 343, "owner": {"id": 476}, "assignee": {"id": 568}, "organization": {"id": 180}, "project": {"owner": {"id": 780}, "assignee": {"id": 844}, "organization": {"id": 941}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 310, "owner": {"id": 469}, "assignee": {"id": 543}, "organization": {"id": 179}, "project": {"owner": {"id": 737}, "assignee": {"id": 832}, "organization": {"id": 969}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 466}, "assignee": {"id": 524}, "organization": {"id": 664}, "project": {"owner": {"id": 749}, "assignee": {"id": 890}, "organization": {"id": 952}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 347, "owner": {"id": 430}, "assignee": {"id": 597}, "organization": {"id": 655}, "project": {"owner": {"id": 755}, "assignee": {"id": 800}, "organization": {"id": 957}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 7, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 226}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 424}, "assignee": {"id": 595}, "organization": {"id": 153}, "project": {"owner": {"id": 738}, "assignee": {"id": 821}, "organization": {"id": 947}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 218}, "user": {"role": null}}}, "resource": {"id": 363, "owner": {"id": 409}, "assignee": {"id": 520}, "organization": {"id": 116}, "project": {"owner": {"id": 702}, "assignee": {"id": 827}, "organization": {"id": 928}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 131, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 387, "owner": {"id": 498}, "assignee": {"id": 568}, "organization": {"id": 623}, "project": {"owner": {"id": 712}, "assignee": {"id": 897}, "organization": {"id": 948}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 244}, "user": {"role": null}}}, "resource": {"id": 332, "owner": {"id": 477}, "assignee": {"id": 592}, "organization": {"id": 683}, "project": {"owner": {"id": 751}, "assignee": {"id": 839}, "organization": {"id": 990}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 311, "owner": {"id": 471}, "assignee": {"id": 590}, "organization": {"id": 105}, "project": {"owner": {"id": 737}, "assignee": {"id": 800}, "organization": {"id": 960}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 156, "owner": {"id": 76}, "user": {"role": "owner"}}}, "resource": {"id": 349, "owner": {"id": 402}, "assignee": {"id": 575}, "organization": {"id": 156}, "project": {"owner": {"id": 767}, "assignee": {"id": 841}, "organization": {"id": 966}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 327, "owner": {"id": 492}, "assignee": {"id": 559}, "organization": {"id": 695}, "project": {"owner": {"id": 746}, "assignee": {"id": 858}, "organization": {"id": 940}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": {"id": 190, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"id": 322, "owner": {"id": 409}, "assignee": {"id": 524}, "organization": {"id": 676}, "project": {"owner": {"id": 784}, "assignee": {"id": 813}, "organization": {"id": 983}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 277}, "user": {"role": "maintainer"}}}, "resource": {"id": 365, "owner": {"id": 466}, "assignee": {"id": 594}, "organization": {"id": 105}, "project": {"owner": {"id": 794}, "assignee": {"id": 831}, "organization": {"id": 935}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"id": 357, "owner": {"id": 457}, "assignee": {"id": 522}, "organization": {"id": 149}, "project": {"owner": {"id": 785}, "assignee": {"id": 890}, "organization": {"id": 988}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 196, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 414}, "assignee": {"id": 555}, "organization": {"id": 627}, "project": {"owner": {"id": 779}, "assignee": {"id": 876}, "organization": {"id": 908}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 442}, "assignee": {"id": 563}, "organization": {"id": 638}, "project": {"owner": {"id": 769}, "assignee": {"id": 847}, "organization": {"id": 903}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 283}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 418}, "assignee": {"id": 558}, "organization": {"id": 132}, "project": {"owner": {"id": 767}, "assignee": {"id": 826}, "organization": {"id": 979}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"id": 335, "owner": {"id": 421}, "assignee": {"id": 562}, "organization": {"id": 108}, "project": {"owner": {"id": 797}, "assignee": {"id": 826}, "organization": {"id": 900}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": {"id": 158, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"id": 337, "owner": {"id": 452}, "assignee": {"id": 574}, "organization": {"id": 632}, "project": {"owner": {"id": 716}, "assignee": {"id": 848}, "organization": {"id": 976}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"id": 348, "owner": {"id": 435}, "assignee": {"id": 519}, "organization": {"id": 649}, "project": {"owner": {"id": 791}, "assignee": {"id": 878}, "organization": {"id": 951}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"id": 356, "owner": {"id": 494}, "assignee": {"id": 561}, "organization": {"id": 163}, "project": {"owner": {"id": 764}, "assignee": {"id": 884}, "organization": {"id": 924}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 232}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 480}, "assignee": {"id": 554}, "organization": {"id": 174}, "project": {"owner": {"id": 773}, "assignee": {"id": 833}, "organization": {"id": 910}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 320, "owner": {"id": 486}, "assignee": {"id": 510}, "organization": {"id": 618}, "project": {"owner": {"id": 765}, "assignee": {"id": 813}, "organization": {"id": 909}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"id": 368, "owner": {"id": 435}, "assignee": {"id": 528}, "organization": {"id": 606}, "project": {"owner": {"id": 732}, "assignee": {"id": 827}, "organization": {"id": 948}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 3, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"id": 332, "owner": {"id": 424}, "assignee": {"id": 520}, "organization": {"id": 143}, "project": {"owner": {"id": 797}, "assignee": {"id": 867}, "organization": {"id": 986}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 400}, "assignee": {"id": 562}, "organization": {"id": 136}, "project": {"owner": {"id": 795}, "assignee": {"id": 825}, "organization": {"id": 942}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 493}, "assignee": {"id": 552}, "organization": {"id": 676}, "project": {"owner": {"id": 765}, "assignee": {"id": 843}, "organization": {"id": 924}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 115, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 479}, "assignee": {"id": 546}, "organization": {"id": 649}, "project": {"owner": {"id": 770}, "assignee": {"id": 802}, "organization": {"id": 902}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 116, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 364, "owner": {"id": 401}, "assignee": {"id": 521}, "organization": {"id": 116}, "project": {"owner": {"id": 705}, "assignee": {"id": 863}, "organization": {"id": 949}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 419}, "assignee": {"id": 567}, "organization": {"id": 120}, "project": {"owner": {"id": 774}, "assignee": {"id": 847}, "organization": {"id": 974}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 135, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 353, "owner": {"id": 464}, "assignee": {"id": 585}, "organization": {"id": 638}, "project": {"owner": {"id": 765}, "assignee": {"id": 839}, "organization": {"id": 973}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 157, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 488}, "assignee": {"id": 533}, "organization": {"id": 621}, "project": {"owner": {"id": 736}, "assignee": {"id": 859}, "organization": {"id": 922}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 293}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 474}, "assignee": {"id": 514}, "organization": {"id": 101}, "project": {"owner": {"id": 783}, "assignee": {"id": 865}, "organization": {"id": 947}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 398, "owner": {"id": 454}, "assignee": {"id": 558}, "organization": {"id": 175}, "project": {"owner": {"id": 723}, "assignee": {"id": 814}, "organization": {"id": 990}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"id": 301, "owner": {"id": 477}, "assignee": {"id": 559}, "organization": {"id": 622}, "project": {"owner": {"id": 783}, "assignee": {"id": 844}, "organization": {"id": 962}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 156, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 493}, "assignee": {"id": 533}, "organization": {"id": 660}, "project": {"owner": {"id": 769}, "assignee": {"id": 882}, "organization": {"id": 918}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 103, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"id": 345, "owner": {"id": 431}, "assignee": {"id": 593}, "organization": {"id": 103}, "project": {"owner": {"id": 771}, "assignee": {"id": 860}, "organization": {"id": 997}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 451}, "assignee": {"id": 551}, "organization": {"id": 187}, "project": {"owner": {"id": 725}, "assignee": {"id": 833}, "organization": {"id": 939}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"id": 327, "owner": {"id": 418}, "assignee": {"id": 550}, "organization": {"id": 609}, "project": {"owner": {"id": 724}, "assignee": {"id": 834}, "organization": {"id": 940}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 162, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 362, "owner": {"id": 462}, "assignee": {"id": 549}, "organization": {"id": 602}, "project": {"owner": {"id": 781}, "assignee": {"id": 892}, "organization": {"id": 960}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 214}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 446}, "assignee": {"id": 556}, "organization": {"id": 119}, "project": {"owner": {"id": 713}, "assignee": {"id": 851}, "organization": {"id": 974}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 475}, "assignee": {"id": 523}, "organization": {"id": 193}, "project": {"owner": {"id": 781}, "assignee": {"id": 850}, "organization": {"id": 906}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 7, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 336, "owner": {"id": 431}, "assignee": {"id": 550}, "organization": {"id": 600}, "project": {"owner": {"id": 793}, "assignee": {"id": 878}, "organization": {"id": 951}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"id": 335, "owner": {"id": 492}, "assignee": {"id": 515}, "organization": {"id": 612}, "project": {"owner": {"id": 760}, "assignee": {"id": 854}, "organization": {"id": 986}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 113, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"id": 387, "owner": {"id": 435}, "assignee": {"id": 541}, "organization": {"id": 113}, "project": {"owner": {"id": 720}, "assignee": {"id": 849}, "organization": {"id": 976}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 84, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 431}, "assignee": {"id": 595}, "organization": {"id": 165}, "project": {"owner": {"id": 774}, "assignee": {"id": 880}, "organization": {"id": 978}}}} } -test_scope_UPDATE_PROJECT_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "update:project", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 497}, "assignee": {"id": 550}, "organization": {"id": 639}, "project": {"owner": {"id": 783}, "assignee": {"id": 803}, "organization": {"id": 914}}}} +test_scope_EXPORT_BACKUP_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "export:backup", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 388, "owner": {"id": 433}, "assignee": {"id": 574}, "organization": {"id": 668}, "project": {"owner": {"id": 739}, "assignee": {"id": 845}, "organization": {"id": 917}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 85, "privilege": "admin"}, "organization": null}, "resource": {"id": 349, "owner": {"id": 446}, "assignee": {"id": 518}, "organization": {"id": 603}, "project": {"owner": {"id": 85}, "assignee": {"id": 810}, "organization": {"id": 973}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": null}, "resource": {"id": 310, "owner": {"id": 491}, "assignee": {"id": 506}, "organization": {"id": 686}, "project": {"owner": {"id": 57}, "assignee": {"id": 838}, "organization": {"id": 917}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 448}, "assignee": {"id": 528}, "organization": {"id": 645}, "project": {"owner": {"id": 66}, "assignee": {"id": 853}, "organization": {"id": 917}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": null}, "resource": {"id": 383, "owner": {"id": 446}, "assignee": {"id": 595}, "organization": {"id": 679}, "project": {"owner": {"id": 95}, "assignee": {"id": 832}, "organization": {"id": 985}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": null}, "resource": {"id": 357, "owner": {"id": 465}, "assignee": {"id": 530}, "organization": {"id": 601}, "project": {"owner": {"id": 10}, "assignee": {"id": 823}, "organization": {"id": 959}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": null}, "resource": {"id": 343, "owner": {"id": 429}, "assignee": {"id": 565}, "organization": {"id": 636}, "project": {"owner": {"id": 61}, "assignee": {"id": 808}, "organization": {"id": 996}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": null}, "resource": {"id": 376, "owner": {"id": 446}, "assignee": {"id": 585}, "organization": {"id": 616}, "project": {"owner": {"id": 57}, "assignee": {"id": 809}, "organization": {"id": 917}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": null}, "resource": {"id": 313, "owner": {"id": 497}, "assignee": {"id": 509}, "organization": {"id": 691}, "project": {"owner": {"id": 68}, "assignee": {"id": 886}, "organization": {"id": 972}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": null}, "resource": {"id": 315, "owner": {"id": 464}, "assignee": {"id": 517}, "organization": {"id": 666}, "project": {"owner": {"id": 40}, "assignee": {"id": 873}, "organization": {"id": 967}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": null}, "resource": {"id": 370, "owner": {"id": 467}, "assignee": {"id": 506}, "organization": {"id": 679}, "project": {"owner": {"id": 35}, "assignee": {"id": 891}, "organization": {"id": 959}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": null}, "resource": {"id": 335, "owner": {"id": 475}, "assignee": {"id": 577}, "organization": {"id": 608}, "project": {"owner": {"id": 709}, "assignee": {"id": 42}, "organization": {"id": 925}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 34, "privilege": "admin"}, "organization": null}, "resource": {"id": 383, "owner": {"id": 454}, "assignee": {"id": 598}, "organization": {"id": 681}, "project": {"owner": {"id": 712}, "assignee": {"id": 34}, "organization": {"id": 964}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": null}, "resource": {"id": 392, "owner": {"id": 446}, "assignee": {"id": 573}, "organization": {"id": 639}, "project": {"owner": {"id": 781}, "assignee": {"id": 65}, "organization": {"id": 997}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": null}, "resource": {"id": 394, "owner": {"id": 422}, "assignee": {"id": 571}, "organization": {"id": 656}, "project": {"owner": {"id": 748}, "assignee": {"id": 52}, "organization": {"id": 944}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": null}, "resource": {"id": 322, "owner": {"id": 490}, "assignee": {"id": 510}, "organization": {"id": 601}, "project": {"owner": {"id": 769}, "assignee": {"id": 73}, "organization": {"id": 968}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": null}, "resource": {"id": 351, "owner": {"id": 414}, "assignee": {"id": 519}, "organization": {"id": 612}, "project": {"owner": {"id": 792}, "assignee": {"id": 74}, "organization": {"id": 994}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": null}, "resource": {"id": 304, "owner": {"id": 447}, "assignee": {"id": 584}, "organization": {"id": 600}, "project": {"owner": {"id": 737}, "assignee": {"id": 16}, "organization": {"id": 914}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": null}, "resource": {"id": 316, "owner": {"id": 403}, "assignee": {"id": 594}, "organization": {"id": 687}, "project": {"owner": {"id": 743}, "assignee": {"id": 34}, "organization": {"id": 943}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 480}, "assignee": {"id": 581}, "organization": {"id": 615}, "project": {"owner": {"id": 760}, "assignee": {"id": 76}, "organization": {"id": 905}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": null}, "resource": {"id": 343, "owner": {"id": 423}, "assignee": {"id": 548}, "organization": {"id": 651}, "project": {"owner": {"id": 765}, "assignee": {"id": 75}, "organization": {"id": 922}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": null}, "resource": {"id": 351, "owner": {"id": 95}, "assignee": {"id": 532}, "organization": {"id": 609}, "project": {"owner": {"id": 770}, "assignee": {"id": 862}, "organization": {"id": 927}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": null}, "resource": {"id": 370, "owner": {"id": 92}, "assignee": {"id": 571}, "organization": {"id": 614}, "project": {"owner": {"id": 747}, "assignee": {"id": 860}, "organization": {"id": 946}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": null}, "resource": {"id": 377, "owner": {"id": 72}, "assignee": {"id": 531}, "organization": {"id": 621}, "project": {"owner": {"id": 725}, "assignee": {"id": 899}, "organization": {"id": 933}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": null}, "resource": {"id": 348, "owner": {"id": 62}, "assignee": {"id": 503}, "organization": {"id": 664}, "project": {"owner": {"id": 788}, "assignee": {"id": 880}, "organization": {"id": 998}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 20, "privilege": "user"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 20}, "assignee": {"id": 500}, "organization": {"id": 605}, "project": {"owner": {"id": 709}, "assignee": {"id": 894}, "organization": {"id": 912}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": null}, "resource": {"id": 343, "owner": {"id": 47}, "assignee": {"id": 512}, "organization": {"id": 605}, "project": {"owner": {"id": 776}, "assignee": {"id": 824}, "organization": {"id": 953}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": null}, "resource": {"id": 398, "owner": {"id": 26}, "assignee": {"id": 575}, "organization": {"id": 616}, "project": {"owner": {"id": 766}, "assignee": {"id": 814}, "organization": {"id": 972}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": null}, "resource": {"id": 306, "owner": {"id": 37}, "assignee": {"id": 519}, "organization": {"id": 628}, "project": {"owner": {"id": 734}, "assignee": {"id": 865}, "organization": {"id": 985}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": null}, "resource": {"id": 321, "owner": {"id": 20}, "assignee": {"id": 586}, "organization": {"id": 614}, "project": {"owner": {"id": 727}, "assignee": {"id": 853}, "organization": {"id": 929}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 12, "privilege": "none"}, "organization": null}, "resource": {"id": 317, "owner": {"id": 12}, "assignee": {"id": 523}, "organization": {"id": 671}, "project": {"owner": {"id": 726}, "assignee": {"id": 877}, "organization": {"id": 959}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": null}, "resource": {"id": 392, "owner": {"id": 415}, "assignee": {"id": 93}, "organization": {"id": 638}, "project": {"owner": {"id": 766}, "assignee": {"id": 830}, "organization": {"id": 996}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": null}, "resource": {"id": 333, "owner": {"id": 411}, "assignee": {"id": 63}, "organization": {"id": 621}, "project": {"owner": {"id": 712}, "assignee": {"id": 819}, "organization": {"id": 906}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": null}, "resource": {"id": 355, "owner": {"id": 454}, "assignee": {"id": 73}, "organization": {"id": 607}, "project": {"owner": {"id": 759}, "assignee": {"id": 848}, "organization": {"id": 975}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": null}, "resource": {"id": 376, "owner": {"id": 455}, "assignee": {"id": 52}, "organization": {"id": 696}, "project": {"owner": {"id": 708}, "assignee": {"id": 857}, "organization": {"id": 962}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": null}, "resource": {"id": 375, "owner": {"id": 497}, "assignee": {"id": 38}, "organization": {"id": 653}, "project": {"owner": {"id": 749}, "assignee": {"id": 861}, "organization": {"id": 903}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 93, "privilege": "user"}, "organization": null}, "resource": {"id": 334, "owner": {"id": 471}, "assignee": {"id": 93}, "organization": {"id": 673}, "project": {"owner": {"id": 702}, "assignee": {"id": 880}, "organization": {"id": 979}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": null}, "resource": {"id": 357, "owner": {"id": 428}, "assignee": {"id": 16}, "organization": {"id": 623}, "project": {"owner": {"id": 791}, "assignee": {"id": 867}, "organization": {"id": 914}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": null}, "resource": {"id": 318, "owner": {"id": 467}, "assignee": {"id": 7}, "organization": {"id": 670}, "project": {"owner": {"id": 729}, "assignee": {"id": 869}, "organization": {"id": 921}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": null}, "resource": {"id": 315, "owner": {"id": 449}, "assignee": {"id": 47}, "organization": {"id": 686}, "project": {"owner": {"id": 725}, "assignee": {"id": 898}, "organization": {"id": 942}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": null}, "resource": {"id": 366, "owner": {"id": 476}, "assignee": {"id": 55}, "organization": {"id": 603}, "project": {"owner": {"id": 787}, "assignee": {"id": 808}, "organization": {"id": 908}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": null}, "resource": {"id": 350, "owner": {"id": 436}, "assignee": {"id": 537}, "organization": {"id": 629}, "project": {"owner": {"id": 702}, "assignee": {"id": 886}, "organization": {"id": 966}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": null}, "resource": {"id": 337, "owner": {"id": 494}, "assignee": {"id": 504}, "organization": {"id": 669}, "project": {"owner": {"id": 775}, "assignee": {"id": 814}, "organization": {"id": 981}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": null}, "resource": {"id": 318, "owner": {"id": 491}, "assignee": {"id": 583}, "organization": {"id": 623}, "project": {"owner": {"id": 721}, "assignee": {"id": 854}, "organization": {"id": 917}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": null}, "resource": {"id": 399, "owner": {"id": 480}, "assignee": {"id": 579}, "organization": {"id": 605}, "project": {"owner": {"id": 746}, "assignee": {"id": 805}, "organization": {"id": 960}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": null}, "resource": {"id": 328, "owner": {"id": 457}, "assignee": {"id": 529}, "organization": {"id": 643}, "project": {"owner": {"id": 721}, "assignee": {"id": 836}, "organization": {"id": 955}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": null}, "resource": {"id": 307, "owner": {"id": 459}, "assignee": {"id": 586}, "organization": {"id": 659}, "project": {"owner": {"id": 747}, "assignee": {"id": 892}, "organization": {"id": 905}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": null}, "resource": {"id": 381, "owner": {"id": 491}, "assignee": {"id": 529}, "organization": {"id": 632}, "project": {"owner": {"id": 790}, "assignee": {"id": 888}, "organization": {"id": 908}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": null}, "resource": {"id": 317, "owner": {"id": 461}, "assignee": {"id": 539}, "organization": {"id": 624}, "project": {"owner": {"id": 715}, "assignee": {"id": 896}, "organization": {"id": 934}}}} } -test_scope_EXPORT_DATASET_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": null}, "resource": {"id": 367, "owner": {"id": 456}, "assignee": {"id": 570}, "organization": {"id": 685}, "project": {"owner": {"id": 797}, "assignee": {"id": 843}, "organization": {"id": 957}}}} +test_scope_VIEW_DATA_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": null}, "resource": {"id": 379, "owner": {"id": 405}, "assignee": {"id": 519}, "organization": {"id": 686}, "project": {"owner": {"id": 796}, "assignee": {"id": 829}, "organization": {"id": 973}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 76, "privilege": "admin"}, "organization": {"id": 160, "owner": {"id": 76}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 464}, "assignee": {"id": 505}, "organization": {"id": 160}, "project": {"owner": {"id": 76}, "assignee": {"id": 854}, "organization": {"id": 974}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"id": 353, "owner": {"id": 496}, "assignee": {"id": 594}, "organization": {"id": 100}, "project": {"owner": {"id": 4}, "assignee": {"id": 800}, "organization": {"id": 924}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 123, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 361, "owner": {"id": 465}, "assignee": {"id": 511}, "organization": {"id": 646}, "project": {"owner": {"id": 84}, "assignee": {"id": 818}, "organization": {"id": 936}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 426}, "assignee": {"id": 591}, "organization": {"id": 663}, "project": {"owner": {"id": 42}, "assignee": {"id": 869}, "organization": {"id": 971}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"id": 345, "owner": {"id": 470}, "assignee": {"id": 577}, "organization": {"id": 130}, "project": {"owner": {"id": 22}, "assignee": {"id": 837}, "organization": {"id": 989}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 442}, "assignee": {"id": 560}, "organization": {"id": 187}, "project": {"owner": {"id": 89}, "assignee": {"id": 841}, "organization": {"id": 959}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"id": 348, "owner": {"id": 487}, "assignee": {"id": 597}, "organization": {"id": 636}, "project": {"owner": {"id": 53}, "assignee": {"id": 856}, "organization": {"id": 920}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 302, "owner": {"id": 417}, "assignee": {"id": 545}, "organization": {"id": 617}, "project": {"owner": {"id": 41}, "assignee": {"id": 822}, "organization": {"id": 947}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 328, "owner": {"id": 412}, "assignee": {"id": 558}, "organization": {"id": 133}, "project": {"owner": {"id": 1}, "assignee": {"id": 878}, "organization": {"id": 976}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 37, "privilege": "admin"}, "organization": {"id": 187, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"id": 336, "owner": {"id": 484}, "assignee": {"id": 597}, "organization": {"id": 187}, "project": {"owner": {"id": 37}, "assignee": {"id": 807}, "organization": {"id": 969}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 258}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 405}, "assignee": {"id": 596}, "organization": {"id": 647}, "project": {"owner": {"id": 45}, "assignee": {"id": 811}, "organization": {"id": 959}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"id": 334, "owner": {"id": 484}, "assignee": {"id": 534}, "organization": {"id": 613}, "project": {"owner": {"id": 33}, "assignee": {"id": 827}, "organization": {"id": 989}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 487}, "assignee": {"id": 578}, "organization": {"id": 131}, "project": {"owner": {"id": 35}, "assignee": {"id": 894}, "organization": {"id": 915}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 7, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 202}, "user": {"role": "worker"}}}, "resource": {"id": 330, "owner": {"id": 400}, "assignee": {"id": 598}, "organization": {"id": 146}, "project": {"owner": {"id": 7}, "assignee": {"id": 821}, "organization": {"id": 953}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 367, "owner": {"id": 476}, "assignee": {"id": 597}, "organization": {"id": 628}, "project": {"owner": {"id": 41}, "assignee": {"id": 814}, "organization": {"id": 954}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 166, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 430}, "assignee": {"id": 510}, "organization": {"id": 691}, "project": {"owner": {"id": 33}, "assignee": {"id": 873}, "organization": {"id": 944}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 243}, "user": {"role": null}}}, "resource": {"id": 370, "owner": {"id": 432}, "assignee": {"id": 503}, "organization": {"id": 192}, "project": {"owner": {"id": 69}, "assignee": {"id": 819}, "organization": {"id": 989}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 421}, "assignee": {"id": 597}, "organization": {"id": 134}, "project": {"owner": {"id": 98}, "assignee": {"id": 816}, "organization": {"id": 944}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 141, "owner": {"id": 207}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 495}, "assignee": {"id": 575}, "organization": {"id": 682}, "project": {"owner": {"id": 36}, "assignee": {"id": 807}, "organization": {"id": 971}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 484}, "assignee": {"id": 595}, "organization": {"id": 620}, "project": {"owner": {"id": 75}, "assignee": {"id": 887}, "organization": {"id": 941}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 473}, "assignee": {"id": 571}, "organization": {"id": 100}, "project": {"owner": {"id": 98}, "assignee": {"id": 838}, "organization": {"id": 924}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 321, "owner": {"id": 461}, "assignee": {"id": 589}, "organization": {"id": 160}, "project": {"owner": {"id": 96}, "assignee": {"id": 858}, "organization": {"id": 979}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 193, "owner": {"id": 76}, "user": {"role": "owner"}}}, "resource": {"id": 307, "owner": {"id": 402}, "assignee": {"id": 551}, "organization": {"id": 660}, "project": {"owner": {"id": 76}, "assignee": {"id": 866}, "organization": {"id": 959}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 159, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"id": 328, "owner": {"id": 448}, "assignee": {"id": 565}, "organization": {"id": 698}, "project": {"owner": {"id": 42}, "assignee": {"id": 865}, "organization": {"id": 970}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 73, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"id": 310, "owner": {"id": 496}, "assignee": {"id": 560}, "organization": {"id": 132}, "project": {"owner": {"id": 73}, "assignee": {"id": 811}, "organization": {"id": 910}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": {"id": 114, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 442}, "assignee": {"id": 572}, "organization": {"id": 114}, "project": {"owner": {"id": 22}, "assignee": {"id": 846}, "organization": {"id": 975}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 220}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 458}, "assignee": {"id": 553}, "organization": {"id": 608}, "project": {"owner": {"id": 94}, "assignee": {"id": 883}, "organization": {"id": 974}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 455}, "assignee": {"id": 589}, "organization": {"id": 632}, "project": {"owner": {"id": 44}, "assignee": {"id": 843}, "organization": {"id": 944}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 259}, "user": {"role": "supervisor"}}}, "resource": {"id": 325, "owner": {"id": 491}, "assignee": {"id": 587}, "organization": {"id": 105}, "project": {"owner": {"id": 9}, "assignee": {"id": 880}, "organization": {"id": 938}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 4, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 293}, "user": {"role": "supervisor"}}}, "resource": {"id": 399, "owner": {"id": 476}, "assignee": {"id": 513}, "organization": {"id": 184}, "project": {"owner": {"id": 4}, "assignee": {"id": 809}, "organization": {"id": 951}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 38, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 423}, "assignee": {"id": 532}, "organization": {"id": 678}, "project": {"owner": {"id": 38}, "assignee": {"id": 895}, "organization": {"id": 915}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 394, "owner": {"id": 415}, "assignee": {"id": 542}, "organization": {"id": 647}, "project": {"owner": {"id": 48}, "assignee": {"id": 897}, "organization": {"id": 900}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 22, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 220}, "user": {"role": "worker"}}}, "resource": {"id": 310, "owner": {"id": 471}, "assignee": {"id": 561}, "organization": {"id": 133}, "project": {"owner": {"id": 22}, "assignee": {"id": 857}, "organization": {"id": 956}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 42, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 334, "owner": {"id": 473}, "assignee": {"id": 571}, "organization": {"id": 102}, "project": {"owner": {"id": 42}, "assignee": {"id": 859}, "organization": {"id": 976}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 377, "owner": {"id": 441}, "assignee": {"id": 585}, "organization": {"id": 640}, "project": {"owner": {"id": 61}, "assignee": {"id": 885}, "organization": {"id": 975}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 482}, "assignee": {"id": 509}, "organization": {"id": 680}, "project": {"owner": {"id": 19}, "assignee": {"id": 877}, "organization": {"id": 971}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 322, "owner": {"id": 474}, "assignee": {"id": 541}, "organization": {"id": 140}, "project": {"owner": {"id": 26}, "assignee": {"id": 815}, "organization": {"id": 914}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 154, "owner": {"id": 264}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 423}, "assignee": {"id": 576}, "organization": {"id": 154}, "project": {"owner": {"id": 27}, "assignee": {"id": 897}, "organization": {"id": 929}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 309, "owner": {"id": 443}, "assignee": {"id": 580}, "organization": {"id": 664}, "project": {"owner": {"id": 5}, "assignee": {"id": 843}, "organization": {"id": 985}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"id": 302, "owner": {"id": 420}, "assignee": {"id": 555}, "organization": {"id": 647}, "project": {"owner": {"id": 53}, "assignee": {"id": 855}, "organization": {"id": 980}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": {"id": 133, "owner": {"id": 38}, "user": {"role": "owner"}}}, "resource": {"id": 309, "owner": {"id": 401}, "assignee": {"id": 584}, "organization": {"id": 133}, "project": {"owner": {"id": 38}, "assignee": {"id": 858}, "organization": {"id": 983}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 13, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 315, "owner": {"id": 412}, "assignee": {"id": 521}, "organization": {"id": 111}, "project": {"owner": {"id": 13}, "assignee": {"id": 887}, "organization": {"id": 968}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 138, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 454}, "assignee": {"id": 568}, "organization": {"id": 699}, "project": {"owner": {"id": 74}, "assignee": {"id": 899}, "organization": {"id": 906}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 308, "owner": {"id": 487}, "assignee": {"id": 553}, "organization": {"id": 695}, "project": {"owner": {"id": 55}, "assignee": {"id": 839}, "organization": {"id": 903}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 49, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 330, "owner": {"id": 456}, "assignee": {"id": 557}, "organization": {"id": 173}, "project": {"owner": {"id": 49}, "assignee": {"id": 850}, "organization": {"id": 903}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 303, "owner": {"id": 407}, "assignee": {"id": 543}, "organization": {"id": 169}, "project": {"owner": {"id": 88}, "assignee": {"id": 841}, "organization": {"id": 919}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 286}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 436}, "assignee": {"id": 519}, "organization": {"id": 663}, "project": {"owner": {"id": 43}, "assignee": {"id": 892}, "organization": {"id": 993}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 346, "owner": {"id": 457}, "assignee": {"id": 597}, "organization": {"id": 629}, "project": {"owner": {"id": 94}, "assignee": {"id": 886}, "organization": {"id": 936}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 39, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"id": 320, "owner": {"id": 417}, "assignee": {"id": 513}, "organization": {"id": 102}, "project": {"owner": {"id": 39}, "assignee": {"id": 841}, "organization": {"id": 953}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 314, "owner": {"id": 465}, "assignee": {"id": 503}, "organization": {"id": 188}, "project": {"owner": {"id": 19}, "assignee": {"id": 821}, "organization": {"id": 969}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 12, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"id": 307, "owner": {"id": 471}, "assignee": {"id": 576}, "organization": {"id": 630}, "project": {"owner": {"id": 12}, "assignee": {"id": 897}, "organization": {"id": 961}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 467}, "assignee": {"id": 527}, "organization": {"id": 620}, "project": {"owner": {"id": 40}, "assignee": {"id": 859}, "organization": {"id": 927}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 48, "privilege": "user"}, "organization": {"id": 192, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"id": 368, "owner": {"id": 486}, "assignee": {"id": 529}, "organization": {"id": 192}, "project": {"owner": {"id": 48}, "assignee": {"id": 819}, "organization": {"id": 961}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 105, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"id": 347, "owner": {"id": 462}, "assignee": {"id": 560}, "organization": {"id": 105}, "project": {"owner": {"id": 28}, "assignee": {"id": 806}, "organization": {"id": 985}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 182, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 396, "owner": {"id": 402}, "assignee": {"id": 584}, "organization": {"id": 679}, "project": {"owner": {"id": 4}, "assignee": {"id": 840}, "organization": {"id": 901}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 143, "owner": {"id": 242}, "user": {"role": "worker"}}}, "resource": {"id": 383, "owner": {"id": 456}, "assignee": {"id": 576}, "organization": {"id": 669}, "project": {"owner": {"id": 84}, "assignee": {"id": 827}, "organization": {"id": 900}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"id": 318, "owner": {"id": 442}, "assignee": {"id": 532}, "organization": {"id": 177}, "project": {"owner": {"id": 59}, "assignee": {"id": 838}, "organization": {"id": 927}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 161, "owner": {"id": 267}, "user": {"role": null}}}, "resource": {"id": 355, "owner": {"id": 405}, "assignee": {"id": 561}, "organization": {"id": 161}, "project": {"owner": {"id": 97}, "assignee": {"id": 881}, "organization": {"id": 940}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 207}, "user": {"role": null}}}, "resource": {"id": 301, "owner": {"id": 431}, "assignee": {"id": 503}, "organization": {"id": 633}, "project": {"owner": {"id": 30}, "assignee": {"id": 809}, "organization": {"id": 989}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 22, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 458}, "assignee": {"id": 516}, "organization": {"id": 638}, "project": {"owner": {"id": 22}, "assignee": {"id": 855}, "organization": {"id": 984}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 375, "owner": {"id": 469}, "assignee": {"id": 574}, "organization": {"id": 145}, "project": {"owner": {"id": 78}, "assignee": {"id": 819}, "organization": {"id": 992}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 49}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 482}, "assignee": {"id": 520}, "organization": {"id": 192}, "project": {"owner": {"id": 49}, "assignee": {"id": 851}, "organization": {"id": 916}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 18, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 18}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 449}, "assignee": {"id": 555}, "organization": {"id": 685}, "project": {"owner": {"id": 18}, "assignee": {"id": 862}, "organization": {"id": 979}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 77, "privilege": "worker"}, "organization": {"id": 156, "owner": {"id": 77}, "user": {"role": "owner"}}}, "resource": {"id": 397, "owner": {"id": 478}, "assignee": {"id": 509}, "organization": {"id": 664}, "project": {"owner": {"id": 77}, "assignee": {"id": 868}, "organization": {"id": 918}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 486}, "assignee": {"id": 561}, "organization": {"id": 180}, "project": {"owner": {"id": 15}, "assignee": {"id": 841}, "organization": {"id": 923}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"id": 330, "owner": {"id": 460}, "assignee": {"id": 588}, "organization": {"id": 114}, "project": {"owner": {"id": 38}, "assignee": {"id": 882}, "organization": {"id": 972}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"id": 309, "owner": {"id": 401}, "assignee": {"id": 578}, "organization": {"id": 676}, "project": {"owner": {"id": 22}, "assignee": {"id": 855}, "organization": {"id": 928}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"id": 324, "owner": {"id": 438}, "assignee": {"id": 510}, "organization": {"id": 670}, "project": {"owner": {"id": 6}, "assignee": {"id": 835}, "organization": {"id": 995}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 180, "owner": {"id": 200}, "user": {"role": "supervisor"}}}, "resource": {"id": 316, "owner": {"id": 427}, "assignee": {"id": 589}, "organization": {"id": 180}, "project": {"owner": {"id": 35}, "assignee": {"id": 846}, "organization": {"id": 975}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 109, "owner": {"id": 239}, "user": {"role": "supervisor"}}}, "resource": {"id": 309, "owner": {"id": 469}, "assignee": {"id": 520}, "organization": {"id": 109}, "project": {"owner": {"id": 64}, "assignee": {"id": 828}, "organization": {"id": 984}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 57, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 493}, "assignee": {"id": 538}, "organization": {"id": 617}, "project": {"owner": {"id": 57}, "assignee": {"id": 898}, "organization": {"id": 927}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 425}, "assignee": {"id": 522}, "organization": {"id": 686}, "project": {"owner": {"id": 73}, "assignee": {"id": 856}, "organization": {"id": 918}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"id": 327, "owner": {"id": 472}, "assignee": {"id": 514}, "organization": {"id": 184}, "project": {"owner": {"id": 59}, "assignee": {"id": 809}, "organization": {"id": 909}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 262}, "user": {"role": "worker"}}}, "resource": {"id": 361, "owner": {"id": 462}, "assignee": {"id": 581}, "organization": {"id": 189}, "project": {"owner": {"id": 15}, "assignee": {"id": 836}, "organization": {"id": 944}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"id": 390, "owner": {"id": 411}, "assignee": {"id": 542}, "organization": {"id": 622}, "project": {"owner": {"id": 99}, "assignee": {"id": 834}, "organization": {"id": 946}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 490}, "assignee": {"id": 589}, "organization": {"id": 664}, "project": {"owner": {"id": 10}, "assignee": {"id": 843}, "organization": {"id": 916}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 371, "owner": {"id": 454}, "assignee": {"id": 524}, "organization": {"id": 137}, "project": {"owner": {"id": 0}, "assignee": {"id": 805}, "organization": {"id": 994}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 220}, "user": {"role": null}}}, "resource": {"id": 386, "owner": {"id": 492}, "assignee": {"id": 590}, "organization": {"id": 197}, "project": {"owner": {"id": 17}, "assignee": {"id": 806}, "organization": {"id": 944}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 70, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 354, "owner": {"id": 492}, "assignee": {"id": 577}, "organization": {"id": 670}, "project": {"owner": {"id": 70}, "assignee": {"id": 869}, "organization": {"id": 998}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 174, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 340, "owner": {"id": 449}, "assignee": {"id": 569}, "organization": {"id": 605}, "project": {"owner": {"id": 99}, "assignee": {"id": 812}, "organization": {"id": 962}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 16, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"id": 397, "owner": {"id": 419}, "assignee": {"id": 520}, "organization": {"id": 148}, "project": {"owner": {"id": 16}, "assignee": {"id": 824}, "organization": {"id": 901}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 496}, "assignee": {"id": 591}, "organization": {"id": 111}, "project": {"owner": {"id": 60}, "assignee": {"id": 881}, "organization": {"id": 933}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 114, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 420}, "assignee": {"id": 596}, "organization": {"id": 663}, "project": {"owner": {"id": 0}, "assignee": {"id": 855}, "organization": {"id": 914}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"id": 319, "owner": {"id": 467}, "assignee": {"id": 504}, "organization": {"id": 643}, "project": {"owner": {"id": 47}, "assignee": {"id": 837}, "organization": {"id": 928}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 384, "owner": {"id": 457}, "assignee": {"id": 557}, "organization": {"id": 140}, "project": {"owner": {"id": 28}, "assignee": {"id": 893}, "organization": {"id": 920}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"id": 301, "owner": {"id": 433}, "assignee": {"id": 536}, "organization": {"id": 195}, "project": {"owner": {"id": 9}, "assignee": {"id": 833}, "organization": {"id": 940}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 37, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 366, "owner": {"id": 430}, "assignee": {"id": 511}, "organization": {"id": 613}, "project": {"owner": {"id": 37}, "assignee": {"id": 885}, "organization": {"id": 990}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 489}, "assignee": {"id": 567}, "organization": {"id": 695}, "project": {"owner": {"id": 30}, "assignee": {"id": 887}, "organization": {"id": 940}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 295}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 417}, "assignee": {"id": 556}, "organization": {"id": 139}, "project": {"owner": {"id": 36}, "assignee": {"id": 826}, "organization": {"id": 910}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"id": 368, "owner": {"id": 416}, "assignee": {"id": 558}, "organization": {"id": 126}, "project": {"owner": {"id": 21}, "assignee": {"id": 876}, "organization": {"id": 948}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 195, "owner": {"id": 264}, "user": {"role": "supervisor"}}}, "resource": {"id": 340, "owner": {"id": 468}, "assignee": {"id": 517}, "organization": {"id": 627}, "project": {"owner": {"id": 89}, "assignee": {"id": 894}, "organization": {"id": 992}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 13, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 325, "owner": {"id": 404}, "assignee": {"id": 505}, "organization": {"id": 681}, "project": {"owner": {"id": 13}, "assignee": {"id": 816}, "organization": {"id": 995}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 347, "owner": {"id": 465}, "assignee": {"id": 539}, "organization": {"id": 186}, "project": {"owner": {"id": 52}, "assignee": {"id": 877}, "organization": {"id": 951}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 245}, "user": {"role": "worker"}}}, "resource": {"id": 301, "owner": {"id": 468}, "assignee": {"id": 533}, "organization": {"id": 124}, "project": {"owner": {"id": 96}, "assignee": {"id": 819}, "organization": {"id": 907}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 153, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 430}, "assignee": {"id": 596}, "organization": {"id": 651}, "project": {"owner": {"id": 44}, "assignee": {"id": 853}, "organization": {"id": 928}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 365, "owner": {"id": 456}, "assignee": {"id": 524}, "organization": {"id": 646}, "project": {"owner": {"id": 76}, "assignee": {"id": 880}, "organization": {"id": 970}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 291}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 445}, "assignee": {"id": 571}, "organization": {"id": 197}, "project": {"owner": {"id": 36}, "assignee": {"id": 860}, "organization": {"id": 999}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 464}, "assignee": {"id": 534}, "organization": {"id": 106}, "project": {"owner": {"id": 27}, "assignee": {"id": 851}, "organization": {"id": 958}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"id": 360, "owner": {"id": 467}, "assignee": {"id": 577}, "organization": {"id": 680}, "project": {"owner": {"id": 38}, "assignee": {"id": 883}, "organization": {"id": 994}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 223}, "user": {"role": null}}}, "resource": {"id": 336, "owner": {"id": 421}, "assignee": {"id": 525}, "organization": {"id": 601}, "project": {"owner": {"id": 11}, "assignee": {"id": 842}, "organization": {"id": 955}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 170, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 403}, "assignee": {"id": 580}, "organization": {"id": 170}, "project": {"owner": {"id": 725}, "assignee": {"id": 36}, "organization": {"id": 915}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 306, "owner": {"id": 486}, "assignee": {"id": 598}, "organization": {"id": 130}, "project": {"owner": {"id": 747}, "assignee": {"id": 78}, "organization": {"id": 964}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 411}, "assignee": {"id": 502}, "organization": {"id": 631}, "project": {"owner": {"id": 794}, "assignee": {"id": 23}, "organization": {"id": 906}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 328, "owner": {"id": 454}, "assignee": {"id": 563}, "organization": {"id": 683}, "project": {"owner": {"id": 789}, "assignee": {"id": 51}, "organization": {"id": 985}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 389, "owner": {"id": 406}, "assignee": {"id": 557}, "organization": {"id": 199}, "project": {"owner": {"id": 784}, "assignee": {"id": 59}, "organization": {"id": 915}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"id": 319, "owner": {"id": 488}, "assignee": {"id": 587}, "organization": {"id": 167}, "project": {"owner": {"id": 705}, "assignee": {"id": 96}, "organization": {"id": 940}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 390, "owner": {"id": 405}, "assignee": {"id": 505}, "organization": {"id": 629}, "project": {"owner": {"id": 754}, "assignee": {"id": 63}, "organization": {"id": 969}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 50, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"id": 377, "owner": {"id": 424}, "assignee": {"id": 500}, "organization": {"id": 641}, "project": {"owner": {"id": 753}, "assignee": {"id": 50}, "organization": {"id": 920}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 120, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 374, "owner": {"id": 447}, "assignee": {"id": 557}, "organization": {"id": 120}, "project": {"owner": {"id": 771}, "assignee": {"id": 19}, "organization": {"id": 922}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 479}, "assignee": {"id": 570}, "organization": {"id": 155}, "project": {"owner": {"id": 752}, "assignee": {"id": 88}, "organization": {"id": 907}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 325, "owner": {"id": 470}, "assignee": {"id": 541}, "organization": {"id": 644}, "project": {"owner": {"id": 798}, "assignee": {"id": 20}, "organization": {"id": 945}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 295}, "user": {"role": "supervisor"}}}, "resource": {"id": 361, "owner": {"id": 485}, "assignee": {"id": 528}, "organization": {"id": 623}, "project": {"owner": {"id": 729}, "assignee": {"id": 20}, "organization": {"id": 985}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": {"id": 173, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"id": 309, "owner": {"id": 445}, "assignee": {"id": 592}, "organization": {"id": 173}, "project": {"owner": {"id": 705}, "assignee": {"id": 31}, "organization": {"id": 995}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 117, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"id": 391, "owner": {"id": 445}, "assignee": {"id": 546}, "organization": {"id": 117}, "project": {"owner": {"id": 735}, "assignee": {"id": 70}, "organization": {"id": 955}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 479}, "assignee": {"id": 589}, "organization": {"id": 688}, "project": {"owner": {"id": 762}, "assignee": {"id": 54}, "organization": {"id": 985}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 455}, "assignee": {"id": 554}, "organization": {"id": 615}, "project": {"owner": {"id": 752}, "assignee": {"id": 59}, "organization": {"id": 958}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 460}, "assignee": {"id": 518}, "organization": {"id": 121}, "project": {"owner": {"id": 761}, "assignee": {"id": 65}, "organization": {"id": 999}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 266}, "user": {"role": null}}}, "resource": {"id": 350, "owner": {"id": 422}, "assignee": {"id": 577}, "organization": {"id": 142}, "project": {"owner": {"id": 764}, "assignee": {"id": 87}, "organization": {"id": 975}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 485}, "assignee": {"id": 570}, "organization": {"id": 600}, "project": {"owner": {"id": 731}, "assignee": {"id": 22}, "organization": {"id": 919}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 417}, "assignee": {"id": 542}, "organization": {"id": 680}, "project": {"owner": {"id": 753}, "assignee": {"id": 43}, "organization": {"id": 903}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 487}, "assignee": {"id": 591}, "organization": {"id": 147}, "project": {"owner": {"id": 788}, "assignee": {"id": 41}, "organization": {"id": 948}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 26}, "user": {"role": "owner"}}}, "resource": {"id": 376, "owner": {"id": 460}, "assignee": {"id": 575}, "organization": {"id": 115}, "project": {"owner": {"id": 747}, "assignee": {"id": 26}, "organization": {"id": 918}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 15}, "user": {"role": "owner"}}}, "resource": {"id": 384, "owner": {"id": 444}, "assignee": {"id": 573}, "organization": {"id": 629}, "project": {"owner": {"id": 704}, "assignee": {"id": 15}, "organization": {"id": 998}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"id": 311, "owner": {"id": 474}, "assignee": {"id": 546}, "organization": {"id": 688}, "project": {"owner": {"id": 726}, "assignee": {"id": 5}, "organization": {"id": 936}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 139, "owner": {"id": 269}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 456}, "assignee": {"id": 513}, "organization": {"id": 139}, "project": {"owner": {"id": 772}, "assignee": {"id": 79}, "organization": {"id": 973}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 130, "owner": {"id": 245}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 478}, "assignee": {"id": 542}, "organization": {"id": 130}, "project": {"owner": {"id": 724}, "assignee": {"id": 47}, "organization": {"id": 935}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 436}, "assignee": {"id": 599}, "organization": {"id": 603}, "project": {"owner": {"id": 712}, "assignee": {"id": 3}, "organization": {"id": 971}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 462}, "assignee": {"id": 598}, "organization": {"id": 666}, "project": {"owner": {"id": 736}, "assignee": {"id": 97}, "organization": {"id": 998}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 216}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 482}, "assignee": {"id": 538}, "organization": {"id": 156}, "project": {"owner": {"id": 796}, "assignee": {"id": 50}, "organization": {"id": 945}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 479}, "assignee": {"id": 505}, "organization": {"id": 143}, "project": {"owner": {"id": 776}, "assignee": {"id": 41}, "organization": {"id": 951}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 315, "owner": {"id": 456}, "assignee": {"id": 561}, "organization": {"id": 666}, "project": {"owner": {"id": 702}, "assignee": {"id": 29}, "organization": {"id": 929}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 325, "owner": {"id": 442}, "assignee": {"id": 589}, "organization": {"id": 635}, "project": {"owner": {"id": 748}, "assignee": {"id": 10}, "organization": {"id": 930}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 389, "owner": {"id": 454}, "assignee": {"id": 529}, "organization": {"id": 116}, "project": {"owner": {"id": 712}, "assignee": {"id": 3}, "organization": {"id": 984}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 340, "owner": {"id": 461}, "assignee": {"id": 586}, "organization": {"id": 116}, "project": {"owner": {"id": 718}, "assignee": {"id": 15}, "organization": {"id": 991}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 351, "owner": {"id": 486}, "assignee": {"id": 595}, "organization": {"id": 637}, "project": {"owner": {"id": 711}, "assignee": {"id": 44}, "organization": {"id": 958}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 380, "owner": {"id": 431}, "assignee": {"id": 540}, "organization": {"id": 603}, "project": {"owner": {"id": 769}, "assignee": {"id": 37}, "organization": {"id": 922}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 5, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 431}, "assignee": {"id": 575}, "organization": {"id": 115}, "project": {"owner": {"id": 733}, "assignee": {"id": 5}, "organization": {"id": 964}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 249}, "user": {"role": null}}}, "resource": {"id": 372, "owner": {"id": 495}, "assignee": {"id": 515}, "organization": {"id": 191}, "project": {"owner": {"id": 775}, "assignee": {"id": 87}, "organization": {"id": 954}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 492}, "assignee": {"id": 573}, "organization": {"id": 692}, "project": {"owner": {"id": 789}, "assignee": {"id": 43}, "organization": {"id": 992}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 152, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 399, "owner": {"id": 487}, "assignee": {"id": 593}, "organization": {"id": 635}, "project": {"owner": {"id": 754}, "assignee": {"id": 74}, "organization": {"id": 938}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 138, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"id": 336, "owner": {"id": 415}, "assignee": {"id": 518}, "organization": {"id": 138}, "project": {"owner": {"id": 709}, "assignee": {"id": 5}, "organization": {"id": 971}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 123, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 308, "owner": {"id": 434}, "assignee": {"id": 540}, "organization": {"id": 123}, "project": {"owner": {"id": 719}, "assignee": {"id": 0}, "organization": {"id": 982}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 407}, "assignee": {"id": 549}, "organization": {"id": 676}, "project": {"owner": {"id": 773}, "assignee": {"id": 17}, "organization": {"id": 911}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 59}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 448}, "assignee": {"id": 558}, "organization": {"id": 667}, "project": {"owner": {"id": 730}, "assignee": {"id": 59}, "organization": {"id": 918}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 432}, "assignee": {"id": 561}, "organization": {"id": 142}, "project": {"owner": {"id": 796}, "assignee": {"id": 73}, "organization": {"id": 980}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 340, "owner": {"id": 426}, "assignee": {"id": 528}, "organization": {"id": 101}, "project": {"owner": {"id": 771}, "assignee": {"id": 34}, "organization": {"id": 970}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 344, "owner": {"id": 401}, "assignee": {"id": 523}, "organization": {"id": 686}, "project": {"owner": {"id": 743}, "assignee": {"id": 5}, "organization": {"id": 974}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 47, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 255}, "user": {"role": "maintainer"}}}, "resource": {"id": 388, "owner": {"id": 408}, "assignee": {"id": 556}, "organization": {"id": 670}, "project": {"owner": {"id": 701}, "assignee": {"id": 47}, "organization": {"id": 940}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 25, "privilege": "user"}, "organization": {"id": 139, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 481}, "assignee": {"id": 584}, "organization": {"id": 139}, "project": {"owner": {"id": 728}, "assignee": {"id": 25}, "organization": {"id": 946}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 493}, "assignee": {"id": 547}, "organization": {"id": 189}, "project": {"owner": {"id": 726}, "assignee": {"id": 71}, "organization": {"id": 978}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 110, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 371, "owner": {"id": 451}, "assignee": {"id": 531}, "organization": {"id": 669}, "project": {"owner": {"id": 770}, "assignee": {"id": 95}, "organization": {"id": 988}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 191, "owner": {"id": 207}, "user": {"role": "supervisor"}}}, "resource": {"id": 308, "owner": {"id": 495}, "assignee": {"id": 506}, "organization": {"id": 631}, "project": {"owner": {"id": 798}, "assignee": {"id": 4}, "organization": {"id": 912}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 476}, "assignee": {"id": 597}, "organization": {"id": 146}, "project": {"owner": {"id": 759}, "assignee": {"id": 27}, "organization": {"id": 952}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 224}, "user": {"role": "worker"}}}, "resource": {"id": 321, "owner": {"id": 431}, "assignee": {"id": 520}, "organization": {"id": 125}, "project": {"owner": {"id": 778}, "assignee": {"id": 87}, "organization": {"id": 931}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"id": 325, "owner": {"id": 419}, "assignee": {"id": 517}, "organization": {"id": 606}, "project": {"owner": {"id": 737}, "assignee": {"id": 75}, "organization": {"id": 944}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"id": 322, "owner": {"id": 486}, "assignee": {"id": 588}, "organization": {"id": 613}, "project": {"owner": {"id": 751}, "assignee": {"id": 21}, "organization": {"id": 904}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 118, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 471}, "assignee": {"id": 533}, "organization": {"id": 118}, "project": {"owner": {"id": 788}, "assignee": {"id": 79}, "organization": {"id": 976}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 316, "owner": {"id": 456}, "assignee": {"id": 590}, "organization": {"id": 119}, "project": {"owner": {"id": 782}, "assignee": {"id": 80}, "organization": {"id": 913}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 225}, "user": {"role": null}}}, "resource": {"id": 399, "owner": {"id": 411}, "assignee": {"id": 559}, "organization": {"id": 637}, "project": {"owner": {"id": 737}, "assignee": {"id": 29}, "organization": {"id": 930}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 298}, "user": {"role": null}}}, "resource": {"id": 337, "owner": {"id": 438}, "assignee": {"id": 520}, "organization": {"id": 641}, "project": {"owner": {"id": 774}, "assignee": {"id": 88}, "organization": {"id": 959}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 189, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 340, "owner": {"id": 464}, "assignee": {"id": 560}, "organization": {"id": 189}, "project": {"owner": {"id": 721}, "assignee": {"id": 78}, "organization": {"id": 999}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 45, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 45}, "user": {"role": "owner"}}}, "resource": {"id": 386, "owner": {"id": 482}, "assignee": {"id": 550}, "organization": {"id": 108}, "project": {"owner": {"id": 746}, "assignee": {"id": 45}, "organization": {"id": 996}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 46, "privilege": "worker"}, "organization": {"id": 146, "owner": {"id": 46}, "user": {"role": "owner"}}}, "resource": {"id": 364, "owner": {"id": 420}, "assignee": {"id": 518}, "organization": {"id": 655}, "project": {"owner": {"id": 717}, "assignee": {"id": 46}, "organization": {"id": 994}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 165, "owner": {"id": 28}, "user": {"role": "owner"}}}, "resource": {"id": 326, "owner": {"id": 418}, "assignee": {"id": 579}, "organization": {"id": 656}, "project": {"owner": {"id": 733}, "assignee": {"id": 28}, "organization": {"id": 992}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 196, "owner": {"id": 257}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 407}, "assignee": {"id": 587}, "organization": {"id": 196}, "project": {"owner": {"id": 706}, "assignee": {"id": 11}, "organization": {"id": 934}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 58, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 433}, "assignee": {"id": 584}, "organization": {"id": 181}, "project": {"owner": {"id": 710}, "assignee": {"id": 58}, "organization": {"id": 993}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 323, "owner": {"id": 482}, "assignee": {"id": 533}, "organization": {"id": 656}, "project": {"owner": {"id": 748}, "assignee": {"id": 32}, "organization": {"id": 934}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 200}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 492}, "assignee": {"id": 562}, "organization": {"id": 601}, "project": {"owner": {"id": 792}, "assignee": {"id": 6}, "organization": {"id": 945}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 110, "owner": {"id": 229}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 428}, "assignee": {"id": 579}, "organization": {"id": 110}, "project": {"owner": {"id": 787}, "assignee": {"id": 83}, "organization": {"id": 948}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 171, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"id": 319, "owner": {"id": 463}, "assignee": {"id": 574}, "organization": {"id": 171}, "project": {"owner": {"id": 733}, "assignee": {"id": 20}, "organization": {"id": 961}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 176, "owner": {"id": 297}, "user": {"role": "supervisor"}}}, "resource": {"id": 323, "owner": {"id": 413}, "assignee": {"id": 508}, "organization": {"id": 689}, "project": {"owner": {"id": 762}, "assignee": {"id": 10}, "organization": {"id": 933}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 213}, "user": {"role": "supervisor"}}}, "resource": {"id": 364, "owner": {"id": 449}, "assignee": {"id": 569}, "organization": {"id": 607}, "project": {"owner": {"id": 756}, "assignee": {"id": 20}, "organization": {"id": 911}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 186, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"id": 307, "owner": {"id": 490}, "assignee": {"id": 572}, "organization": {"id": 186}, "project": {"owner": {"id": 715}, "assignee": {"id": 87}, "organization": {"id": 955}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 498}, "assignee": {"id": 506}, "organization": {"id": 173}, "project": {"owner": {"id": 792}, "assignee": {"id": 37}, "organization": {"id": 919}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 202}, "user": {"role": "worker"}}}, "resource": {"id": 344, "owner": {"id": 464}, "assignee": {"id": 558}, "organization": {"id": 610}, "project": {"owner": {"id": 723}, "assignee": {"id": 28}, "organization": {"id": 963}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 188, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"id": 367, "owner": {"id": 490}, "assignee": {"id": 551}, "organization": {"id": 652}, "project": {"owner": {"id": 763}, "assignee": {"id": 35}, "organization": {"id": 919}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 264}, "user": {"role": null}}}, "resource": {"id": 342, "owner": {"id": 447}, "assignee": {"id": 588}, "organization": {"id": 102}, "project": {"owner": {"id": 755}, "assignee": {"id": 24}, "organization": {"id": 963}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 60, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 239}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 425}, "assignee": {"id": 530}, "organization": {"id": 144}, "project": {"owner": {"id": 779}, "assignee": {"id": 60}, "organization": {"id": 996}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 188, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"id": 352, "owner": {"id": 433}, "assignee": {"id": 576}, "organization": {"id": 654}, "project": {"owner": {"id": 725}, "assignee": {"id": 89}, "organization": {"id": 937}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 222}, "user": {"role": null}}}, "resource": {"id": 389, "owner": {"id": 440}, "assignee": {"id": 551}, "organization": {"id": 640}, "project": {"owner": {"id": 798}, "assignee": {"id": 37}, "organization": {"id": 928}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 482}, "assignee": {"id": 561}, "organization": {"id": 192}, "project": {"owner": {"id": 753}, "assignee": {"id": 78}, "organization": {"id": 990}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 455}, "assignee": {"id": 594}, "organization": {"id": 126}, "project": {"owner": {"id": 722}, "assignee": {"id": 9}, "organization": {"id": 977}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 319, "owner": {"id": 400}, "assignee": {"id": 537}, "organization": {"id": 679}, "project": {"owner": {"id": 747}, "assignee": {"id": 81}, "organization": {"id": 954}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 76}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 425}, "assignee": {"id": 504}, "organization": {"id": 637}, "project": {"owner": {"id": 719}, "assignee": {"id": 76}, "organization": {"id": 940}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 438}, "assignee": {"id": 551}, "organization": {"id": 137}, "project": {"owner": {"id": 721}, "assignee": {"id": 61}, "organization": {"id": 980}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 411}, "assignee": {"id": 569}, "organization": {"id": 152}, "project": {"owner": {"id": 783}, "assignee": {"id": 10}, "organization": {"id": 922}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 59, "privilege": "none"}, "organization": {"id": 180, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"id": 345, "owner": {"id": 440}, "assignee": {"id": 543}, "organization": {"id": 658}, "project": {"owner": {"id": 772}, "assignee": {"id": 59}, "organization": {"id": 969}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 444}, "assignee": {"id": 547}, "organization": {"id": 676}, "project": {"owner": {"id": 744}, "assignee": {"id": 77}, "organization": {"id": 958}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": {"id": 127, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 466}, "assignee": {"id": 596}, "organization": {"id": 127}, "project": {"owner": {"id": 707}, "assignee": {"id": 6}, "organization": {"id": 987}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 294}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 414}, "assignee": {"id": 564}, "organization": {"id": 109}, "project": {"owner": {"id": 716}, "assignee": {"id": 31}, "organization": {"id": 929}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 330, "owner": {"id": 427}, "assignee": {"id": 557}, "organization": {"id": 610}, "project": {"owner": {"id": 704}, "assignee": {"id": 94}, "organization": {"id": 915}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 463}, "assignee": {"id": 525}, "organization": {"id": 693}, "project": {"owner": {"id": 757}, "assignee": {"id": 23}, "organization": {"id": 972}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"id": 324, "owner": {"id": 410}, "assignee": {"id": 520}, "organization": {"id": 125}, "project": {"owner": {"id": 707}, "assignee": {"id": 51}, "organization": {"id": 994}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": {"id": 190, "owner": {"id": 254}, "user": {"role": "worker"}}}, "resource": {"id": 358, "owner": {"id": 467}, "assignee": {"id": 590}, "organization": {"id": 190}, "project": {"owner": {"id": 783}, "assignee": {"id": 88}, "organization": {"id": 913}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"id": 332, "owner": {"id": 427}, "assignee": {"id": 546}, "organization": {"id": 654}, "project": {"owner": {"id": 753}, "assignee": {"id": 28}, "organization": {"id": 983}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 107, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 472}, "assignee": {"id": 580}, "organization": {"id": 671}, "project": {"owner": {"id": 772}, "assignee": {"id": 70}, "organization": {"id": 900}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 88, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 309, "owner": {"id": 483}, "assignee": {"id": 574}, "organization": {"id": 117}, "project": {"owner": {"id": 758}, "assignee": {"id": 88}, "organization": {"id": 927}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 398, "owner": {"id": 452}, "assignee": {"id": 592}, "organization": {"id": 158}, "project": {"owner": {"id": 706}, "assignee": {"id": 73}, "organization": {"id": 912}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 132, "owner": {"id": 225}, "user": {"role": null}}}, "resource": {"id": 397, "owner": {"id": 496}, "assignee": {"id": 567}, "organization": {"id": 618}, "project": {"owner": {"id": 717}, "assignee": {"id": 11}, "organization": {"id": 958}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 133, "owner": {"id": 244}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 434}, "assignee": {"id": 550}, "organization": {"id": 645}, "project": {"owner": {"id": 712}, "assignee": {"id": 33}, "organization": {"id": 944}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 138, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 17}, "assignee": {"id": 507}, "organization": {"id": 138}, "project": {"owner": {"id": 777}, "assignee": {"id": 815}, "organization": {"id": 920}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 170, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 306, "owner": {"id": 24}, "assignee": {"id": 526}, "organization": {"id": 170}, "project": {"owner": {"id": 791}, "assignee": {"id": 809}, "organization": {"id": 933}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 40, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 353, "owner": {"id": 40}, "assignee": {"id": 537}, "organization": {"id": 681}, "project": {"owner": {"id": 719}, "assignee": {"id": 807}, "organization": {"id": 935}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 60, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 60}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 60}, "assignee": {"id": 548}, "organization": {"id": 606}, "project": {"owner": {"id": 775}, "assignee": {"id": 865}, "organization": {"id": 908}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 130, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 9}, "assignee": {"id": 574}, "organization": {"id": 130}, "project": {"owner": {"id": 779}, "assignee": {"id": 833}, "organization": {"id": 952}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 224}, "user": {"role": "maintainer"}}}, "resource": {"id": 368, "owner": {"id": 51}, "assignee": {"id": 557}, "organization": {"id": 109}, "project": {"owner": {"id": 791}, "assignee": {"id": 838}, "organization": {"id": 948}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 20}, "assignee": {"id": 567}, "organization": {"id": 654}, "project": {"owner": {"id": 766}, "assignee": {"id": 809}, "organization": {"id": 976}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 52, "privilege": "admin"}, "organization": {"id": 105, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"id": 349, "owner": {"id": 52}, "assignee": {"id": 503}, "organization": {"id": 651}, "project": {"owner": {"id": 791}, "assignee": {"id": 890}, "organization": {"id": 967}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 76, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 76}, "assignee": {"id": 501}, "organization": {"id": 161}, "project": {"owner": {"id": 761}, "assignee": {"id": 807}, "organization": {"id": 921}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 384, "owner": {"id": 18}, "assignee": {"id": 563}, "organization": {"id": 178}, "project": {"owner": {"id": 791}, "assignee": {"id": 836}, "organization": {"id": 921}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 322, "owner": {"id": 45}, "assignee": {"id": 518}, "organization": {"id": 669}, "project": {"owner": {"id": 772}, "assignee": {"id": 828}, "organization": {"id": 947}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 7, "privilege": "admin"}, "organization": {"id": 142, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 366, "owner": {"id": 7}, "assignee": {"id": 574}, "organization": {"id": 673}, "project": {"owner": {"id": 722}, "assignee": {"id": 890}, "organization": {"id": 901}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": {"id": 163, "owner": {"id": 290}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 12}, "assignee": {"id": 501}, "organization": {"id": 163}, "project": {"owner": {"id": 743}, "assignee": {"id": 815}, "organization": {"id": 941}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"id": 310, "owner": {"id": 41}, "assignee": {"id": 506}, "organization": {"id": 121}, "project": {"owner": {"id": 737}, "assignee": {"id": 827}, "organization": {"id": 938}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 96}, "assignee": {"id": 554}, "organization": {"id": 657}, "project": {"owner": {"id": 766}, "assignee": {"id": 825}, "organization": {"id": 957}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 70, "privilege": "admin"}, "organization": {"id": 153, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"id": 330, "owner": {"id": 70}, "assignee": {"id": 534}, "organization": {"id": 622}, "project": {"owner": {"id": 753}, "assignee": {"id": 880}, "organization": {"id": 971}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 56, "privilege": "admin"}, "organization": {"id": 140, "owner": {"id": 237}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 56}, "assignee": {"id": 518}, "organization": {"id": 140}, "project": {"owner": {"id": 701}, "assignee": {"id": 851}, "organization": {"id": 906}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 1}, "assignee": {"id": 594}, "organization": {"id": 174}, "project": {"owner": {"id": 766}, "assignee": {"id": 875}, "organization": {"id": 949}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 236}, "user": {"role": null}}}, "resource": {"id": 397, "owner": {"id": 26}, "assignee": {"id": 574}, "organization": {"id": 645}, "project": {"owner": {"id": 782}, "assignee": {"id": 829}, "organization": {"id": 943}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 171, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 396, "owner": {"id": 79}, "assignee": {"id": 585}, "organization": {"id": 678}, "project": {"owner": {"id": 792}, "assignee": {"id": 855}, "organization": {"id": 935}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 59}, "user": {"role": "owner"}}}, "resource": {"id": 354, "owner": {"id": 59}, "assignee": {"id": 575}, "organization": {"id": 153}, "project": {"owner": {"id": 702}, "assignee": {"id": 847}, "organization": {"id": 983}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 345, "owner": {"id": 44}, "assignee": {"id": 523}, "organization": {"id": 145}, "project": {"owner": {"id": 780}, "assignee": {"id": 849}, "organization": {"id": 998}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"id": 318, "owner": {"id": 31}, "assignee": {"id": 527}, "organization": {"id": 668}, "project": {"owner": {"id": 737}, "assignee": {"id": 846}, "organization": {"id": 943}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 20}, "user": {"role": "owner"}}}, "resource": {"id": 301, "owner": {"id": 20}, "assignee": {"id": 563}, "organization": {"id": 628}, "project": {"owner": {"id": 780}, "assignee": {"id": 821}, "organization": {"id": 964}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 329, "owner": {"id": 65}, "assignee": {"id": 558}, "organization": {"id": 137}, "project": {"owner": {"id": 797}, "assignee": {"id": 897}, "organization": {"id": 924}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 290}, "user": {"role": "maintainer"}}}, "resource": {"id": 387, "owner": {"id": 97}, "assignee": {"id": 543}, "organization": {"id": 176}, "project": {"owner": {"id": 738}, "assignee": {"id": 882}, "organization": {"id": 993}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"id": 318, "owner": {"id": 61}, "assignee": {"id": 546}, "organization": {"id": 636}, "project": {"owner": {"id": 709}, "assignee": {"id": 804}, "organization": {"id": 924}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 169, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 350, "owner": {"id": 95}, "assignee": {"id": 532}, "organization": {"id": 618}, "project": {"owner": {"id": 730}, "assignee": {"id": 817}, "organization": {"id": 940}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 220}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 8}, "assignee": {"id": 582}, "organization": {"id": 188}, "project": {"owner": {"id": 703}, "assignee": {"id": 812}, "organization": {"id": 953}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 353, "owner": {"id": 43}, "assignee": {"id": 567}, "organization": {"id": 126}, "project": {"owner": {"id": 750}, "assignee": {"id": 877}, "organization": {"id": 993}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 319, "owner": {"id": 37}, "assignee": {"id": 549}, "organization": {"id": 605}, "project": {"owner": {"id": 723}, "assignee": {"id": 853}, "organization": {"id": 973}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 110, "owner": {"id": 277}, "user": {"role": "supervisor"}}}, "resource": {"id": 328, "owner": {"id": 49}, "assignee": {"id": 536}, "organization": {"id": 639}, "project": {"owner": {"id": 717}, "assignee": {"id": 872}, "organization": {"id": 945}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 51}, "assignee": {"id": 573}, "organization": {"id": 134}, "project": {"owner": {"id": 754}, "assignee": {"id": 800}, "organization": {"id": 939}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 217}, "user": {"role": "worker"}}}, "resource": {"id": 305, "owner": {"id": 85}, "assignee": {"id": 500}, "organization": {"id": 162}, "project": {"owner": {"id": 736}, "assignee": {"id": 892}, "organization": {"id": 953}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 118, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 39}, "assignee": {"id": 552}, "organization": {"id": 626}, "project": {"owner": {"id": 759}, "assignee": {"id": 846}, "organization": {"id": 906}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 86, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 217}, "user": {"role": "worker"}}}, "resource": {"id": 339, "owner": {"id": 86}, "assignee": {"id": 522}, "organization": {"id": 675}, "project": {"owner": {"id": 762}, "assignee": {"id": 851}, "organization": {"id": 973}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 15}, "assignee": {"id": 548}, "organization": {"id": 147}, "project": {"owner": {"id": 725}, "assignee": {"id": 898}, "organization": {"id": 937}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 13}, "assignee": {"id": 526}, "organization": {"id": 184}, "project": {"owner": {"id": 759}, "assignee": {"id": 886}, "organization": {"id": 936}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 343, "owner": {"id": 90}, "assignee": {"id": 589}, "organization": {"id": 672}, "project": {"owner": {"id": 730}, "assignee": {"id": 888}, "organization": {"id": 969}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 68, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 225}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 68}, "assignee": {"id": 574}, "organization": {"id": 673}, "project": {"owner": {"id": 704}, "assignee": {"id": 876}, "organization": {"id": 934}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 91}, "assignee": {"id": 527}, "organization": {"id": 106}, "project": {"owner": {"id": 721}, "assignee": {"id": 828}, "organization": {"id": 906}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 78}, "assignee": {"id": 580}, "organization": {"id": 170}, "project": {"owner": {"id": 758}, "assignee": {"id": 840}, "organization": {"id": 958}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 125, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"id": 375, "owner": {"id": 23}, "assignee": {"id": 562}, "organization": {"id": 663}, "project": {"owner": {"id": 733}, "assignee": {"id": 892}, "organization": {"id": 953}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 42}, "assignee": {"id": 583}, "organization": {"id": 615}, "project": {"owner": {"id": 776}, "assignee": {"id": 825}, "organization": {"id": 943}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 186, "owner": {"id": 260}, "user": {"role": "maintainer"}}}, "resource": {"id": 346, "owner": {"id": 96}, "assignee": {"id": 565}, "organization": {"id": 186}, "project": {"owner": {"id": 704}, "assignee": {"id": 864}, "organization": {"id": 986}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 110, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 73}, "assignee": {"id": 520}, "organization": {"id": 110}, "project": {"owner": {"id": 737}, "assignee": {"id": 874}, "organization": {"id": 986}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 134, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"id": 325, "owner": {"id": 61}, "assignee": {"id": 577}, "organization": {"id": 608}, "project": {"owner": {"id": 717}, "assignee": {"id": 855}, "organization": {"id": 900}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 150, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 369, "owner": {"id": 37}, "assignee": {"id": 546}, "organization": {"id": 627}, "project": {"owner": {"id": 760}, "assignee": {"id": 822}, "organization": {"id": 915}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 277}, "user": {"role": "supervisor"}}}, "resource": {"id": 343, "owner": {"id": 46}, "assignee": {"id": 579}, "organization": {"id": 170}, "project": {"owner": {"id": 705}, "assignee": {"id": 850}, "organization": {"id": 948}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 154, "owner": {"id": 242}, "user": {"role": "supervisor"}}}, "resource": {"id": 384, "owner": {"id": 74}, "assignee": {"id": 571}, "organization": {"id": 154}, "project": {"owner": {"id": 755}, "assignee": {"id": 801}, "organization": {"id": 931}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 211}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 43}, "assignee": {"id": 562}, "organization": {"id": 630}, "project": {"owner": {"id": 760}, "assignee": {"id": 857}, "organization": {"id": 971}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 202}, "user": {"role": "supervisor"}}}, "resource": {"id": 316, "owner": {"id": 94}, "assignee": {"id": 556}, "organization": {"id": 637}, "project": {"owner": {"id": 712}, "assignee": {"id": 861}, "organization": {"id": 900}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 55, "privilege": "user"}, "organization": {"id": 139, "owner": {"id": 244}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 55}, "assignee": {"id": 534}, "organization": {"id": 139}, "project": {"owner": {"id": 774}, "assignee": {"id": 888}, "organization": {"id": 970}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 193, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 303, "owner": {"id": 5}, "assignee": {"id": 507}, "organization": {"id": 193}, "project": {"owner": {"id": 708}, "assignee": {"id": 857}, "organization": {"id": 976}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 286}, "user": {"role": "worker"}}}, "resource": {"id": 307, "owner": {"id": 95}, "assignee": {"id": 544}, "organization": {"id": 687}, "project": {"owner": {"id": 736}, "assignee": {"id": 896}, "organization": {"id": 968}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 370, "owner": {"id": 63}, "assignee": {"id": 544}, "organization": {"id": 623}, "project": {"owner": {"id": 721}, "assignee": {"id": 890}, "organization": {"id": 922}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 122, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 396, "owner": {"id": 75}, "assignee": {"id": 520}, "organization": {"id": 122}, "project": {"owner": {"id": 707}, "assignee": {"id": 836}, "organization": {"id": 933}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 315, "owner": {"id": 27}, "assignee": {"id": 545}, "organization": {"id": 194}, "project": {"owner": {"id": 742}, "assignee": {"id": 835}, "organization": {"id": 997}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 105, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"id": 381, "owner": {"id": 60}, "assignee": {"id": 534}, "organization": {"id": 661}, "project": {"owner": {"id": 741}, "assignee": {"id": 807}, "organization": {"id": 983}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 294}, "user": {"role": null}}}, "resource": {"id": 398, "owner": {"id": 56}, "assignee": {"id": 590}, "organization": {"id": 623}, "project": {"owner": {"id": 791}, "assignee": {"id": 879}, "organization": {"id": 955}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 88}, "assignee": {"id": 532}, "organization": {"id": 194}, "project": {"owner": {"id": 761}, "assignee": {"id": 836}, "organization": {"id": 915}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 129, "owner": {"id": 90}, "user": {"role": "owner"}}}, "resource": {"id": 374, "owner": {"id": 90}, "assignee": {"id": 553}, "organization": {"id": 129}, "project": {"owner": {"id": 770}, "assignee": {"id": 844}, "organization": {"id": 975}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"id": 346, "owner": {"id": 42}, "assignee": {"id": 566}, "organization": {"id": 622}, "project": {"owner": {"id": 754}, "assignee": {"id": 885}, "organization": {"id": 982}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": {"id": 118, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"id": 317, "owner": {"id": 68}, "assignee": {"id": 502}, "organization": {"id": 652}, "project": {"owner": {"id": 770}, "assignee": {"id": 859}, "organization": {"id": 944}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 124, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 345, "owner": {"id": 67}, "assignee": {"id": 559}, "organization": {"id": 124}, "project": {"owner": {"id": 774}, "assignee": {"id": 893}, "organization": {"id": 967}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 236}, "user": {"role": "maintainer"}}}, "resource": {"id": 303, "owner": {"id": 90}, "assignee": {"id": 560}, "organization": {"id": 181}, "project": {"owner": {"id": 791}, "assignee": {"id": 813}, "organization": {"id": 931}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 256}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 98}, "assignee": {"id": 599}, "organization": {"id": 606}, "project": {"owner": {"id": 772}, "assignee": {"id": 829}, "organization": {"id": 956}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"id": 346, "owner": {"id": 97}, "assignee": {"id": 527}, "organization": {"id": 621}, "project": {"owner": {"id": 737}, "assignee": {"id": 889}, "organization": {"id": 925}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 107, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"id": 338, "owner": {"id": 56}, "assignee": {"id": 585}, "organization": {"id": 107}, "project": {"owner": {"id": 796}, "assignee": {"id": 812}, "organization": {"id": 924}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 95}, "assignee": {"id": 555}, "organization": {"id": 102}, "project": {"owner": {"id": 790}, "assignee": {"id": 803}, "organization": {"id": 920}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 147, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 317, "owner": {"id": 10}, "assignee": {"id": 586}, "organization": {"id": 652}, "project": {"owner": {"id": 719}, "assignee": {"id": 883}, "organization": {"id": 993}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 200}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 20}, "assignee": {"id": 512}, "organization": {"id": 610}, "project": {"owner": {"id": 790}, "assignee": {"id": 818}, "organization": {"id": 919}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 61, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"id": 389, "owner": {"id": 61}, "assignee": {"id": 521}, "organization": {"id": 153}, "project": {"owner": {"id": 766}, "assignee": {"id": 819}, "organization": {"id": 936}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": {"id": 164, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 368, "owner": {"id": 92}, "assignee": {"id": 584}, "organization": {"id": 164}, "project": {"owner": {"id": 752}, "assignee": {"id": 852}, "organization": {"id": 901}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 188, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 357, "owner": {"id": 42}, "assignee": {"id": 550}, "organization": {"id": 615}, "project": {"owner": {"id": 777}, "assignee": {"id": 864}, "organization": {"id": 913}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 208}, "user": {"role": "worker"}}}, "resource": {"id": 314, "owner": {"id": 2}, "assignee": {"id": 511}, "organization": {"id": 653}, "project": {"owner": {"id": 758}, "assignee": {"id": 850}, "organization": {"id": 961}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 128, "owner": {"id": 278}, "user": {"role": null}}}, "resource": {"id": 315, "owner": {"id": 65}, "assignee": {"id": 577}, "organization": {"id": 128}, "project": {"owner": {"id": 738}, "assignee": {"id": 835}, "organization": {"id": 972}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 48, "privilege": "worker"}, "organization": {"id": 139, "owner": {"id": 256}, "user": {"role": null}}}, "resource": {"id": 399, "owner": {"id": 48}, "assignee": {"id": 504}, "organization": {"id": 139}, "project": {"owner": {"id": 724}, "assignee": {"id": 855}, "organization": {"id": 914}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 373, "owner": {"id": 62}, "assignee": {"id": 578}, "organization": {"id": 686}, "project": {"owner": {"id": 783}, "assignee": {"id": 895}, "organization": {"id": 952}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 186, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 393, "owner": {"id": 94}, "assignee": {"id": 529}, "organization": {"id": 654}, "project": {"owner": {"id": 783}, "assignee": {"id": 809}, "organization": {"id": 902}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 3}, "assignee": {"id": 530}, "organization": {"id": 191}, "project": {"owner": {"id": 799}, "assignee": {"id": 802}, "organization": {"id": 967}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 44}, "assignee": {"id": 557}, "organization": {"id": 109}, "project": {"owner": {"id": 790}, "assignee": {"id": 802}, "organization": {"id": 980}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 68}, "assignee": {"id": 534}, "organization": {"id": 619}, "project": {"owner": {"id": 762}, "assignee": {"id": 868}, "organization": {"id": 916}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 160, "owner": {"id": 33}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 33}, "assignee": {"id": 562}, "organization": {"id": 623}, "project": {"owner": {"id": 751}, "assignee": {"id": 896}, "organization": {"id": 945}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 75, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 283}, "user": {"role": "maintainer"}}}, "resource": {"id": 394, "owner": {"id": 75}, "assignee": {"id": 556}, "organization": {"id": 198}, "project": {"owner": {"id": 786}, "assignee": {"id": 832}, "organization": {"id": 924}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 89}, "assignee": {"id": 596}, "organization": {"id": 164}, "project": {"owner": {"id": 795}, "assignee": {"id": 821}, "organization": {"id": 986}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 267}, "user": {"role": "maintainer"}}}, "resource": {"id": 351, "owner": {"id": 69}, "assignee": {"id": 518}, "organization": {"id": 669}, "project": {"owner": {"id": 790}, "assignee": {"id": 843}, "organization": {"id": 958}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 297}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 35}, "assignee": {"id": 595}, "organization": {"id": 654}, "project": {"owner": {"id": 778}, "assignee": {"id": 870}, "organization": {"id": 939}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"id": 363, "owner": {"id": 97}, "assignee": {"id": 526}, "organization": {"id": 167}, "project": {"owner": {"id": 760}, "assignee": {"id": 871}, "organization": {"id": 918}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 11}, "assignee": {"id": 583}, "organization": {"id": 105}, "project": {"owner": {"id": 722}, "assignee": {"id": 849}, "organization": {"id": 961}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 264}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 62}, "assignee": {"id": 587}, "organization": {"id": 631}, "project": {"owner": {"id": 786}, "assignee": {"id": 898}, "organization": {"id": 902}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 240}, "user": {"role": "supervisor"}}}, "resource": {"id": 370, "owner": {"id": 78}, "assignee": {"id": 530}, "organization": {"id": 611}, "project": {"owner": {"id": 745}, "assignee": {"id": 896}, "organization": {"id": 920}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 81, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 377, "owner": {"id": 81}, "assignee": {"id": 534}, "organization": {"id": 194}, "project": {"owner": {"id": 798}, "assignee": {"id": 891}, "organization": {"id": 932}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 31, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 262}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 31}, "assignee": {"id": 556}, "organization": {"id": 198}, "project": {"owner": {"id": 765}, "assignee": {"id": 855}, "organization": {"id": 902}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 124, "owner": {"id": 293}, "user": {"role": "worker"}}}, "resource": {"id": 342, "owner": {"id": 97}, "assignee": {"id": 516}, "organization": {"id": 621}, "project": {"owner": {"id": 739}, "assignee": {"id": 841}, "organization": {"id": 922}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 9}, "assignee": {"id": 565}, "organization": {"id": 626}, "project": {"owner": {"id": 786}, "assignee": {"id": 834}, "organization": {"id": 972}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 118, "owner": {"id": 299}, "user": {"role": null}}}, "resource": {"id": 349, "owner": {"id": 98}, "assignee": {"id": 567}, "organization": {"id": 118}, "project": {"owner": {"id": 735}, "assignee": {"id": 881}, "organization": {"id": 950}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 102, "owner": {"id": 249}, "user": {"role": null}}}, "resource": {"id": 347, "owner": {"id": 73}, "assignee": {"id": 566}, "organization": {"id": 102}, "project": {"owner": {"id": 720}, "assignee": {"id": 892}, "organization": {"id": 914}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 2, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"id": 380, "owner": {"id": 2}, "assignee": {"id": 573}, "organization": {"id": 699}, "project": {"owner": {"id": 771}, "assignee": {"id": 847}, "organization": {"id": 952}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"id": 315, "owner": {"id": 5}, "assignee": {"id": 528}, "organization": {"id": 606}, "project": {"owner": {"id": 733}, "assignee": {"id": 840}, "organization": {"id": 935}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 19}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 462}, "assignee": {"id": 19}, "organization": {"id": 131}, "project": {"owner": {"id": 794}, "assignee": {"id": 836}, "organization": {"id": 940}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 7, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 328, "owner": {"id": 453}, "assignee": {"id": 7}, "organization": {"id": 147}, "project": {"owner": {"id": 747}, "assignee": {"id": 857}, "organization": {"id": 950}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 99, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 318, "owner": {"id": 410}, "assignee": {"id": 99}, "organization": {"id": 693}, "project": {"owner": {"id": 707}, "assignee": {"id": 802}, "organization": {"id": 997}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 83, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"id": 388, "owner": {"id": 463}, "assignee": {"id": 83}, "organization": {"id": 662}, "project": {"owner": {"id": 731}, "assignee": {"id": 870}, "organization": {"id": 988}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"id": 368, "owner": {"id": 458}, "assignee": {"id": 41}, "organization": {"id": 154}, "project": {"owner": {"id": 716}, "assignee": {"id": 819}, "organization": {"id": 997}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 278}, "user": {"role": "maintainer"}}}, "resource": {"id": 331, "owner": {"id": 464}, "assignee": {"id": 3}, "organization": {"id": 196}, "project": {"owner": {"id": 731}, "assignee": {"id": 892}, "organization": {"id": 933}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 297}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 492}, "assignee": {"id": 18}, "organization": {"id": 674}, "project": {"owner": {"id": 712}, "assignee": {"id": 896}, "organization": {"id": 922}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 106, "owner": {"id": 284}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 430}, "assignee": {"id": 75}, "organization": {"id": 691}, "project": {"owner": {"id": 780}, "assignee": {"id": 848}, "organization": {"id": 959}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 8, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 245}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 488}, "assignee": {"id": 8}, "organization": {"id": 159}, "project": {"owner": {"id": 709}, "assignee": {"id": 852}, "organization": {"id": 971}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 452}, "assignee": {"id": 43}, "organization": {"id": 194}, "project": {"owner": {"id": 789}, "assignee": {"id": 898}, "organization": {"id": 951}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 28, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 257}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 413}, "assignee": {"id": 28}, "organization": {"id": 622}, "project": {"owner": {"id": 718}, "assignee": {"id": 823}, "organization": {"id": 985}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 72, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 210}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 469}, "assignee": {"id": 72}, "organization": {"id": 680}, "project": {"owner": {"id": 779}, "assignee": {"id": 812}, "organization": {"id": 918}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 234}, "user": {"role": "worker"}}}, "resource": {"id": 373, "owner": {"id": 442}, "assignee": {"id": 32}, "organization": {"id": 192}, "project": {"owner": {"id": 783}, "assignee": {"id": 899}, "organization": {"id": 925}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"id": 309, "owner": {"id": 464}, "assignee": {"id": 51}, "organization": {"id": 139}, "project": {"owner": {"id": 746}, "assignee": {"id": 830}, "organization": {"id": 915}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 274}, "user": {"role": "worker"}}}, "resource": {"id": 357, "owner": {"id": 486}, "assignee": {"id": 39}, "organization": {"id": 644}, "project": {"owner": {"id": 724}, "assignee": {"id": 808}, "organization": {"id": 903}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 394, "owner": {"id": 450}, "assignee": {"id": 42}, "organization": {"id": 683}, "project": {"owner": {"id": 792}, "assignee": {"id": 804}, "organization": {"id": 926}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 64, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"id": 342, "owner": {"id": 452}, "assignee": {"id": 64}, "organization": {"id": 183}, "project": {"owner": {"id": 762}, "assignee": {"id": 813}, "organization": {"id": 976}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 359, "owner": {"id": 468}, "assignee": {"id": 20}, "organization": {"id": 113}, "project": {"owner": {"id": 779}, "assignee": {"id": 853}, "organization": {"id": 998}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 33, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 420}, "assignee": {"id": 33}, "organization": {"id": 636}, "project": {"owner": {"id": 760}, "assignee": {"id": 896}, "organization": {"id": 922}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 175, "owner": {"id": 214}, "user": {"role": null}}}, "resource": {"id": 371, "owner": {"id": 449}, "assignee": {"id": 17}, "organization": {"id": 677}, "project": {"owner": {"id": 747}, "assignee": {"id": 819}, "organization": {"id": 912}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"id": 311, "owner": {"id": 471}, "assignee": {"id": 52}, "organization": {"id": 107}, "project": {"owner": {"id": 775}, "assignee": {"id": 889}, "organization": {"id": 967}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 463}, "assignee": {"id": 13}, "organization": {"id": 135}, "project": {"owner": {"id": 705}, "assignee": {"id": 867}, "organization": {"id": 976}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 59, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 59}, "user": {"role": "owner"}}}, "resource": {"id": 334, "owner": {"id": 488}, "assignee": {"id": 59}, "organization": {"id": 633}, "project": {"owner": {"id": 748}, "assignee": {"id": 800}, "organization": {"id": 983}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 58}, "user": {"role": "owner"}}}, "resource": {"id": 363, "owner": {"id": 481}, "assignee": {"id": 58}, "organization": {"id": 601}, "project": {"owner": {"id": 723}, "assignee": {"id": 889}, "organization": {"id": 976}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 104, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 486}, "assignee": {"id": 90}, "organization": {"id": 104}, "project": {"owner": {"id": 742}, "assignee": {"id": 820}, "organization": {"id": 923}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 225}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 407}, "assignee": {"id": 74}, "organization": {"id": 135}, "project": {"owner": {"id": 729}, "assignee": {"id": 841}, "organization": {"id": 917}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 123, "owner": {"id": 255}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 414}, "assignee": {"id": 98}, "organization": {"id": 657}, "project": {"owner": {"id": 789}, "assignee": {"id": 855}, "organization": {"id": 954}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 181, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 343, "owner": {"id": 463}, "assignee": {"id": 32}, "organization": {"id": 672}, "project": {"owner": {"id": 749}, "assignee": {"id": 896}, "organization": {"id": 920}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 16, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 252}, "user": {"role": "supervisor"}}}, "resource": {"id": 352, "owner": {"id": 414}, "assignee": {"id": 16}, "organization": {"id": 165}, "project": {"owner": {"id": 779}, "assignee": {"id": 859}, "organization": {"id": 962}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 176, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"id": 323, "owner": {"id": 413}, "assignee": {"id": 15}, "organization": {"id": 176}, "project": {"owner": {"id": 757}, "assignee": {"id": 811}, "organization": {"id": 919}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 352, "owner": {"id": 454}, "assignee": {"id": 49}, "organization": {"id": 606}, "project": {"owner": {"id": 777}, "assignee": {"id": 872}, "organization": {"id": 967}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 319, "owner": {"id": 430}, "assignee": {"id": 15}, "organization": {"id": 694}, "project": {"owner": {"id": 734}, "assignee": {"id": 830}, "organization": {"id": 909}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 65, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"id": 312, "owner": {"id": 459}, "assignee": {"id": 65}, "organization": {"id": 153}, "project": {"owner": {"id": 739}, "assignee": {"id": 856}, "organization": {"id": 912}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 27, "privilege": "business"}, "organization": {"id": 103, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"id": 353, "owner": {"id": 459}, "assignee": {"id": 27}, "organization": {"id": 103}, "project": {"owner": {"id": 752}, "assignee": {"id": 864}, "organization": {"id": 968}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 12, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 204}, "user": {"role": "worker"}}}, "resource": {"id": 349, "owner": {"id": 460}, "assignee": {"id": 12}, "organization": {"id": 664}, "project": {"owner": {"id": 743}, "assignee": {"id": 809}, "organization": {"id": 904}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 128, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"id": 300, "owner": {"id": 476}, "assignee": {"id": 37}, "organization": {"id": 629}, "project": {"owner": {"id": 759}, "assignee": {"id": 866}, "organization": {"id": 992}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 386, "owner": {"id": 494}, "assignee": {"id": 87}, "organization": {"id": 188}, "project": {"owner": {"id": 761}, "assignee": {"id": 876}, "organization": {"id": 914}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 87, "privilege": "business"}, "organization": {"id": 175, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 417}, "assignee": {"id": 87}, "organization": {"id": 175}, "project": {"owner": {"id": 791}, "assignee": {"id": 880}, "organization": {"id": 995}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 113, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 388, "owner": {"id": 418}, "assignee": {"id": 97}, "organization": {"id": 613}, "project": {"owner": {"id": 728}, "assignee": {"id": 857}, "organization": {"id": 961}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 440}, "assignee": {"id": 62}, "organization": {"id": 683}, "project": {"owner": {"id": 796}, "assignee": {"id": 859}, "organization": {"id": 911}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 62, "privilege": "user"}, "organization": {"id": 175, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 472}, "assignee": {"id": 62}, "organization": {"id": 175}, "project": {"owner": {"id": 771}, "assignee": {"id": 850}, "organization": {"id": 934}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 350, "owner": {"id": 407}, "assignee": {"id": 89}, "organization": {"id": 199}, "project": {"owner": {"id": 789}, "assignee": {"id": 853}, "organization": {"id": 928}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 43, "privilege": "user"}, "organization": {"id": 172, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"id": 367, "owner": {"id": 418}, "assignee": {"id": 43}, "organization": {"id": 612}, "project": {"owner": {"id": 722}, "assignee": {"id": 813}, "organization": {"id": 938}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 37, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 303, "owner": {"id": 435}, "assignee": {"id": 37}, "organization": {"id": 640}, "project": {"owner": {"id": 757}, "assignee": {"id": 898}, "organization": {"id": 904}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 14, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 433}, "assignee": {"id": 14}, "organization": {"id": 142}, "project": {"owner": {"id": 738}, "assignee": {"id": 888}, "organization": {"id": 992}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 86, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 361, "owner": {"id": 491}, "assignee": {"id": 86}, "organization": {"id": 159}, "project": {"owner": {"id": 761}, "assignee": {"id": 854}, "organization": {"id": 949}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 189, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 397, "owner": {"id": 487}, "assignee": {"id": 51}, "organization": {"id": 612}, "project": {"owner": {"id": 773}, "assignee": {"id": 857}, "organization": {"id": 983}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 262}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 466}, "assignee": {"id": 23}, "organization": {"id": 624}, "project": {"owner": {"id": 753}, "assignee": {"id": 800}, "organization": {"id": 977}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 103, "owner": {"id": 253}, "user": {"role": "supervisor"}}}, "resource": {"id": 364, "owner": {"id": 404}, "assignee": {"id": 3}, "organization": {"id": 103}, "project": {"owner": {"id": 784}, "assignee": {"id": 868}, "organization": {"id": 973}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 119, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 397, "owner": {"id": 499}, "assignee": {"id": 57}, "organization": {"id": 119}, "project": {"owner": {"id": 728}, "assignee": {"id": 817}, "organization": {"id": 964}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 427}, "assignee": {"id": 60}, "organization": {"id": 667}, "project": {"owner": {"id": 756}, "assignee": {"id": 812}, "organization": {"id": 947}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 34, "privilege": "user"}, "organization": {"id": 153, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"id": 378, "owner": {"id": 459}, "assignee": {"id": 34}, "organization": {"id": 629}, "project": {"owner": {"id": 716}, "assignee": {"id": 828}, "organization": {"id": 934}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 187, "owner": {"id": 243}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 428}, "assignee": {"id": 96}, "organization": {"id": 187}, "project": {"owner": {"id": 763}, "assignee": {"id": 865}, "organization": {"id": 926}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 166, "owner": {"id": 219}, "user": {"role": "worker"}}}, "resource": {"id": 318, "owner": {"id": 493}, "assignee": {"id": 96}, "organization": {"id": 166}, "project": {"owner": {"id": 797}, "assignee": {"id": 888}, "organization": {"id": 955}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 460}, "assignee": {"id": 15}, "organization": {"id": 695}, "project": {"owner": {"id": 767}, "assignee": {"id": 835}, "organization": {"id": 931}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 329, "owner": {"id": 460}, "assignee": {"id": 51}, "organization": {"id": 626}, "project": {"owner": {"id": 732}, "assignee": {"id": 860}, "organization": {"id": 941}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 100, "owner": {"id": 226}, "user": {"role": null}}}, "resource": {"id": 396, "owner": {"id": 495}, "assignee": {"id": 80}, "organization": {"id": 100}, "project": {"owner": {"id": 708}, "assignee": {"id": 834}, "organization": {"id": 953}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 79, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 422}, "assignee": {"id": 79}, "organization": {"id": 167}, "project": {"owner": {"id": 720}, "assignee": {"id": 862}, "organization": {"id": 941}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 163, "owner": {"id": 266}, "user": {"role": null}}}, "resource": {"id": 302, "owner": {"id": 456}, "assignee": {"id": 96}, "organization": {"id": 675}, "project": {"owner": {"id": 740}, "assignee": {"id": 875}, "organization": {"id": 938}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 243}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 464}, "assignee": {"id": 78}, "organization": {"id": 606}, "project": {"owner": {"id": 797}, "assignee": {"id": 813}, "organization": {"id": 991}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 141, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 441}, "assignee": {"id": 13}, "organization": {"id": 141}, "project": {"owner": {"id": 706}, "assignee": {"id": 809}, "organization": {"id": 980}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 371, "owner": {"id": 450}, "assignee": {"id": 99}, "organization": {"id": 105}, "project": {"owner": {"id": 707}, "assignee": {"id": 837}, "organization": {"id": 948}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 107, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 315, "owner": {"id": 439}, "assignee": {"id": 37}, "organization": {"id": 689}, "project": {"owner": {"id": 710}, "assignee": {"id": 846}, "organization": {"id": 978}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 439}, "assignee": {"id": 40}, "organization": {"id": 693}, "project": {"owner": {"id": 731}, "assignee": {"id": 842}, "organization": {"id": 990}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 7, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 467}, "assignee": {"id": 7}, "organization": {"id": 175}, "project": {"owner": {"id": 708}, "assignee": {"id": 881}, "organization": {"id": 981}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"id": 340, "owner": {"id": 492}, "assignee": {"id": 0}, "organization": {"id": 136}, "project": {"owner": {"id": 737}, "assignee": {"id": 863}, "organization": {"id": 950}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 308, "owner": {"id": 494}, "assignee": {"id": 6}, "organization": {"id": 687}, "project": {"owner": {"id": 702}, "assignee": {"id": 819}, "organization": {"id": 975}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 418}, "assignee": {"id": 49}, "organization": {"id": 636}, "project": {"owner": {"id": 708}, "assignee": {"id": 855}, "organization": {"id": 939}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 54, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 408}, "assignee": {"id": 54}, "organization": {"id": 155}, "project": {"owner": {"id": 728}, "assignee": {"id": 831}, "organization": {"id": 912}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 76, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 277}, "user": {"role": "supervisor"}}}, "resource": {"id": 358, "owner": {"id": 450}, "assignee": {"id": 76}, "organization": {"id": 162}, "project": {"owner": {"id": 727}, "assignee": {"id": 841}, "organization": {"id": 977}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"id": 388, "owner": {"id": 470}, "assignee": {"id": 59}, "organization": {"id": 639}, "project": {"owner": {"id": 795}, "assignee": {"id": 830}, "organization": {"id": 972}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 80, "privilege": "worker"}, "organization": {"id": 102, "owner": {"id": 255}, "user": {"role": "supervisor"}}}, "resource": {"id": 370, "owner": {"id": 428}, "assignee": {"id": 80}, "organization": {"id": 609}, "project": {"owner": {"id": 768}, "assignee": {"id": 895}, "organization": {"id": 933}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"id": 385, "owner": {"id": 495}, "assignee": {"id": 9}, "organization": {"id": 101}, "project": {"owner": {"id": 782}, "assignee": {"id": 844}, "organization": {"id": 955}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 192, "owner": {"id": 224}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 498}, "assignee": {"id": 9}, "organization": {"id": 192}, "project": {"owner": {"id": 769}, "assignee": {"id": 814}, "organization": {"id": 999}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 100, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 389, "owner": {"id": 413}, "assignee": {"id": 91}, "organization": {"id": 647}, "project": {"owner": {"id": 793}, "assignee": {"id": 821}, "organization": {"id": 965}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 90, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 414}, "assignee": {"id": 90}, "organization": {"id": 643}, "project": {"owner": {"id": 755}, "assignee": {"id": 802}, "organization": {"id": 917}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 12, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 439}, "assignee": {"id": 12}, "organization": {"id": 101}, "project": {"owner": {"id": 788}, "assignee": {"id": 857}, "organization": {"id": 933}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 405}, "assignee": {"id": 56}, "organization": {"id": 143}, "project": {"owner": {"id": 733}, "assignee": {"id": 890}, "organization": {"id": 982}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 39, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 301, "owner": {"id": 473}, "assignee": {"id": 39}, "organization": {"id": 652}, "project": {"owner": {"id": 735}, "assignee": {"id": 804}, "organization": {"id": 905}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 206}, "user": {"role": null}}}, "resource": {"id": 341, "owner": {"id": 497}, "assignee": {"id": 95}, "organization": {"id": 677}, "project": {"owner": {"id": 795}, "assignee": {"id": 805}, "organization": {"id": 966}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": {"id": 188, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 383, "owner": {"id": 477}, "assignee": {"id": 62}, "organization": {"id": 188}, "project": {"owner": {"id": 741}, "assignee": {"id": 833}, "organization": {"id": 904}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 44, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 44}, "user": {"role": "owner"}}}, "resource": {"id": 318, "owner": {"id": 444}, "assignee": {"id": 44}, "organization": {"id": 164}, "project": {"owner": {"id": 791}, "assignee": {"id": 819}, "organization": {"id": 911}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": {"id": 190, "owner": {"id": 51}, "user": {"role": "owner"}}}, "resource": {"id": 317, "owner": {"id": 425}, "assignee": {"id": 51}, "organization": {"id": 627}, "project": {"owner": {"id": 735}, "assignee": {"id": 881}, "organization": {"id": 982}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 41, "privilege": "none"}, "organization": {"id": 159, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 376, "owner": {"id": 490}, "assignee": {"id": 41}, "organization": {"id": 614}, "project": {"owner": {"id": 748}, "assignee": {"id": 847}, "organization": {"id": 918}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 382, "owner": {"id": 494}, "assignee": {"id": 99}, "organization": {"id": 143}, "project": {"owner": {"id": 789}, "assignee": {"id": 889}, "organization": {"id": 948}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 82, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 212}, "user": {"role": "maintainer"}}}, "resource": {"id": 362, "owner": {"id": 447}, "assignee": {"id": 82}, "organization": {"id": 196}, "project": {"owner": {"id": 749}, "assignee": {"id": 860}, "organization": {"id": 974}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 490}, "assignee": {"id": 15}, "organization": {"id": 603}, "project": {"owner": {"id": 771}, "assignee": {"id": 877}, "organization": {"id": 904}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": {"id": 109, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 331, "owner": {"id": 454}, "assignee": {"id": 53}, "organization": {"id": 692}, "project": {"owner": {"id": 748}, "assignee": {"id": 849}, "organization": {"id": 904}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 299}, "user": {"role": "supervisor"}}}, "resource": {"id": 338, "owner": {"id": 423}, "assignee": {"id": 14}, "organization": {"id": 165}, "project": {"owner": {"id": 701}, "assignee": {"id": 853}, "organization": {"id": 974}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 208}, "user": {"role": "supervisor"}}}, "resource": {"id": 313, "owner": {"id": 401}, "assignee": {"id": 32}, "organization": {"id": 121}, "project": {"owner": {"id": 767}, "assignee": {"id": 870}, "organization": {"id": 948}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 401}, "assignee": {"id": 95}, "organization": {"id": 667}, "project": {"owner": {"id": 715}, "assignee": {"id": 844}, "organization": {"id": 912}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 391, "owner": {"id": 485}, "assignee": {"id": 83}, "organization": {"id": 654}, "project": {"owner": {"id": 735}, "assignee": {"id": 844}, "organization": {"id": 974}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 40, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 418}, "assignee": {"id": 40}, "organization": {"id": 164}, "project": {"owner": {"id": 763}, "assignee": {"id": 818}, "organization": {"id": 916}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 367, "owner": {"id": 478}, "assignee": {"id": 72}, "organization": {"id": 169}, "project": {"owner": {"id": 755}, "assignee": {"id": 847}, "organization": {"id": 954}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 443}, "assignee": {"id": 93}, "organization": {"id": 632}, "project": {"owner": {"id": 785}, "assignee": {"id": 826}, "organization": {"id": 902}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 217}, "user": {"role": "worker"}}}, "resource": {"id": 370, "owner": {"id": 458}, "assignee": {"id": 33}, "organization": {"id": 684}, "project": {"owner": {"id": 760}, "assignee": {"id": 846}, "organization": {"id": 920}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 205}, "user": {"role": null}}}, "resource": {"id": 395, "owner": {"id": 448}, "assignee": {"id": 93}, "organization": {"id": 165}, "project": {"owner": {"id": 708}, "assignee": {"id": 861}, "organization": {"id": 959}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 53, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 480}, "assignee": {"id": 53}, "organization": {"id": 131}, "project": {"owner": {"id": 774}, "assignee": {"id": 824}, "organization": {"id": 917}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 15, "privilege": "none"}, "organization": {"id": 178, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 407}, "assignee": {"id": 15}, "organization": {"id": 657}, "project": {"owner": {"id": 709}, "assignee": {"id": 895}, "organization": {"id": 958}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"id": 388, "owner": {"id": 424}, "assignee": {"id": 99}, "organization": {"id": 608}, "project": {"owner": {"id": 721}, "assignee": {"id": 815}, "organization": {"id": 999}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 110, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"id": 398, "owner": {"id": 462}, "assignee": {"id": 537}, "organization": {"id": 110}, "project": {"owner": {"id": 706}, "assignee": {"id": 871}, "organization": {"id": 962}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 45}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 435}, "assignee": {"id": 530}, "organization": {"id": 179}, "project": {"owner": {"id": 779}, "assignee": {"id": 844}, "organization": {"id": 984}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 352, "owner": {"id": 408}, "assignee": {"id": 569}, "organization": {"id": 630}, "project": {"owner": {"id": 790}, "assignee": {"id": 852}, "organization": {"id": 944}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 362, "owner": {"id": 470}, "assignee": {"id": 515}, "organization": {"id": 631}, "project": {"owner": {"id": 776}, "assignee": {"id": 809}, "organization": {"id": 970}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 46, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 430}, "assignee": {"id": 504}, "organization": {"id": 192}, "project": {"owner": {"id": 722}, "assignee": {"id": 813}, "organization": {"id": 912}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"id": 323, "owner": {"id": 476}, "assignee": {"id": 528}, "organization": {"id": 114}, "project": {"owner": {"id": 761}, "assignee": {"id": 849}, "organization": {"id": 979}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 308, "owner": {"id": 445}, "assignee": {"id": 580}, "organization": {"id": 672}, "project": {"owner": {"id": 712}, "assignee": {"id": 862}, "organization": {"id": 995}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 66, "privilege": "admin"}, "organization": {"id": 102, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 350, "owner": {"id": 405}, "assignee": {"id": 521}, "organization": {"id": 687}, "project": {"owner": {"id": 781}, "assignee": {"id": 850}, "organization": {"id": 926}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 242}, "user": {"role": "supervisor"}}}, "resource": {"id": 364, "owner": {"id": 401}, "assignee": {"id": 536}, "organization": {"id": 135}, "project": {"owner": {"id": 750}, "assignee": {"id": 895}, "organization": {"id": 900}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 20, "privilege": "admin"}, "organization": {"id": 165, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 333, "owner": {"id": 472}, "assignee": {"id": 512}, "organization": {"id": 165}, "project": {"owner": {"id": 726}, "assignee": {"id": 898}, "organization": {"id": 946}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 10, "privilege": "admin"}, "organization": {"id": 190, "owner": {"id": 221}, "user": {"role": "supervisor"}}}, "resource": {"id": 367, "owner": {"id": 426}, "assignee": {"id": 556}, "organization": {"id": 602}, "project": {"owner": {"id": 717}, "assignee": {"id": 835}, "organization": {"id": 979}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 190, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 406}, "assignee": {"id": 546}, "organization": {"id": 696}, "project": {"owner": {"id": 777}, "assignee": {"id": 859}, "organization": {"id": 968}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 125, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 468}, "assignee": {"id": 599}, "organization": {"id": 125}, "project": {"owner": {"id": 719}, "assignee": {"id": 839}, "organization": {"id": 954}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 473}, "assignee": {"id": 507}, "organization": {"id": 169}, "project": {"owner": {"id": 740}, "assignee": {"id": 825}, "organization": {"id": 922}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 298}, "user": {"role": "worker"}}}, "resource": {"id": 368, "owner": {"id": 462}, "assignee": {"id": 554}, "organization": {"id": 612}, "project": {"owner": {"id": 710}, "assignee": {"id": 885}, "organization": {"id": 979}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 460}, "assignee": {"id": 545}, "organization": {"id": 606}, "project": {"owner": {"id": 762}, "assignee": {"id": 802}, "organization": {"id": 930}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 26, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 252}, "user": {"role": null}}}, "resource": {"id": 363, "owner": {"id": 494}, "assignee": {"id": 593}, "organization": {"id": 126}, "project": {"owner": {"id": 776}, "assignee": {"id": 849}, "organization": {"id": 931}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 156, "owner": {"id": 297}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 444}, "assignee": {"id": 572}, "organization": {"id": 156}, "project": {"owner": {"id": 774}, "assignee": {"id": 806}, "organization": {"id": 942}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 82, "privilege": "admin"}, "organization": {"id": 100, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"id": 328, "owner": {"id": 455}, "assignee": {"id": 532}, "organization": {"id": 698}, "project": {"owner": {"id": 797}, "assignee": {"id": 833}, "organization": {"id": 983}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 137, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 493}, "assignee": {"id": 562}, "organization": {"id": 635}, "project": {"owner": {"id": 775}, "assignee": {"id": 827}, "organization": {"id": 975}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 30, "privilege": "business"}, "organization": {"id": 135, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 484}, "assignee": {"id": 517}, "organization": {"id": 135}, "project": {"owner": {"id": 790}, "assignee": {"id": 868}, "organization": {"id": 964}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 70, "privilege": "business"}, "organization": {"id": 136, "owner": {"id": 70}, "user": {"role": "owner"}}}, "resource": {"id": 391, "owner": {"id": 420}, "assignee": {"id": 503}, "organization": {"id": 136}, "project": {"owner": {"id": 733}, "assignee": {"id": 801}, "organization": {"id": 947}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 143, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 340, "owner": {"id": 482}, "assignee": {"id": 564}, "organization": {"id": 651}, "project": {"owner": {"id": 738}, "assignee": {"id": 895}, "organization": {"id": 913}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 448}, "assignee": {"id": 571}, "organization": {"id": 655}, "project": {"owner": {"id": 794}, "assignee": {"id": 874}, "organization": {"id": 935}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 156, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 405}, "assignee": {"id": 523}, "organization": {"id": 156}, "project": {"owner": {"id": 789}, "assignee": {"id": 895}, "organization": {"id": 961}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 105, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 403}, "assignee": {"id": 544}, "organization": {"id": 105}, "project": {"owner": {"id": 759}, "assignee": {"id": 898}, "organization": {"id": 954}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"id": 381, "owner": {"id": 435}, "assignee": {"id": 576}, "organization": {"id": 631}, "project": {"owner": {"id": 754}, "assignee": {"id": 811}, "organization": {"id": 982}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 88, "privilege": "business"}, "organization": {"id": 120, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 462}, "assignee": {"id": 552}, "organization": {"id": 694}, "project": {"owner": {"id": 718}, "assignee": {"id": 820}, "organization": {"id": 935}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 51, "privilege": "business"}, "organization": {"id": 124, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 394, "owner": {"id": 481}, "assignee": {"id": 593}, "organization": {"id": 124}, "project": {"owner": {"id": 757}, "assignee": {"id": 809}, "organization": {"id": 909}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": {"id": 146, "owner": {"id": 262}, "user": {"role": "supervisor"}}}, "resource": {"id": 361, "owner": {"id": 482}, "assignee": {"id": 534}, "organization": {"id": 146}, "project": {"owner": {"id": 744}, "assignee": {"id": 860}, "organization": {"id": 963}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 95, "privilege": "business"}, "organization": {"id": 167, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"id": 339, "owner": {"id": 499}, "assignee": {"id": 519}, "organization": {"id": 662}, "project": {"owner": {"id": 754}, "assignee": {"id": 897}, "organization": {"id": 944}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 153, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 345, "owner": {"id": 407}, "assignee": {"id": 557}, "organization": {"id": 670}, "project": {"owner": {"id": 752}, "assignee": {"id": 859}, "organization": {"id": 972}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"id": 394, "owner": {"id": 479}, "assignee": {"id": 542}, "organization": {"id": 177}, "project": {"owner": {"id": 733}, "assignee": {"id": 839}, "organization": {"id": 998}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": {"id": 133, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 464}, "assignee": {"id": 584}, "organization": {"id": 133}, "project": {"owner": {"id": 778}, "assignee": {"id": 844}, "organization": {"id": 924}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"id": 315, "owner": {"id": 428}, "assignee": {"id": 525}, "organization": {"id": 613}, "project": {"owner": {"id": 744}, "assignee": {"id": 892}, "organization": {"id": 967}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 97, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 287}, "user": {"role": "worker"}}}, "resource": {"id": 365, "owner": {"id": 475}, "assignee": {"id": 507}, "organization": {"id": 686}, "project": {"owner": {"id": 758}, "assignee": {"id": 876}, "organization": {"id": 937}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 249}, "user": {"role": null}}}, "resource": {"id": 396, "owner": {"id": 461}, "assignee": {"id": 599}, "organization": {"id": 192}, "project": {"owner": {"id": 797}, "assignee": {"id": 873}, "organization": {"id": 905}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 76, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 325, "owner": {"id": 479}, "assignee": {"id": 532}, "organization": {"id": 112}, "project": {"owner": {"id": 710}, "assignee": {"id": 815}, "organization": {"id": 913}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 420}, "assignee": {"id": 558}, "organization": {"id": 635}, "project": {"owner": {"id": 779}, "assignee": {"id": 830}, "organization": {"id": 924}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 192, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"id": 351, "owner": {"id": 446}, "assignee": {"id": 584}, "organization": {"id": 653}, "project": {"owner": {"id": 713}, "assignee": {"id": 841}, "organization": {"id": 937}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 61, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"id": 384, "owner": {"id": 434}, "assignee": {"id": 526}, "organization": {"id": 117}, "project": {"owner": {"id": 709}, "assignee": {"id": 872}, "organization": {"id": 962}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 149, "owner": {"id": 71}, "user": {"role": "owner"}}}, "resource": {"id": 350, "owner": {"id": 497}, "assignee": {"id": 571}, "organization": {"id": 149}, "project": {"owner": {"id": 706}, "assignee": {"id": 868}, "organization": {"id": 954}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 181, "owner": {"id": 63}, "user": {"role": "owner"}}}, "resource": {"id": 395, "owner": {"id": 433}, "assignee": {"id": 511}, "organization": {"id": 608}, "project": {"owner": {"id": 764}, "assignee": {"id": 842}, "organization": {"id": 903}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 113, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"id": 367, "owner": {"id": 409}, "assignee": {"id": 578}, "organization": {"id": 631}, "project": {"owner": {"id": 757}, "assignee": {"id": 885}, "organization": {"id": 990}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 199, "owner": {"id": 203}, "user": {"role": "maintainer"}}}, "resource": {"id": 315, "owner": {"id": 484}, "assignee": {"id": 556}, "organization": {"id": 199}, "project": {"owner": {"id": 763}, "assignee": {"id": 853}, "organization": {"id": 930}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "view:data", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"id": 354, "owner": {"id": 427}, "assignee": {"id": 590}, "organization": {"id": 188}, "project": {"owner": {"id": 766}, "assignee": {"id": 812}, "organization": {"id": 919}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 192, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 387, "owner": {"id": 463}, "assignee": {"id": 566}, "organization": {"id": 675}, "project": {"owner": {"id": 780}, "assignee": {"id": 851}, "organization": {"id": 957}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 188, "owner": {"id": 276}, "user": {"role": "maintainer"}}}, "resource": {"id": 327, "owner": {"id": 412}, "assignee": {"id": 565}, "organization": {"id": 653}, "project": {"owner": {"id": 773}, "assignee": {"id": 817}, "organization": {"id": 957}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 212}, "user": {"role": "supervisor"}}}, "resource": {"id": 329, "owner": {"id": 401}, "assignee": {"id": 588}, "organization": {"id": 194}, "project": {"owner": {"id": 724}, "assignee": {"id": 881}, "organization": {"id": 930}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 75, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 305, "owner": {"id": 460}, "assignee": {"id": 595}, "organization": {"id": 109}, "project": {"owner": {"id": 770}, "assignee": {"id": 889}, "organization": {"id": 970}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 146, "owner": {"id": 265}, "user": {"role": "supervisor"}}}, "resource": {"id": 304, "owner": {"id": 435}, "assignee": {"id": 556}, "organization": {"id": 614}, "project": {"owner": {"id": 759}, "assignee": {"id": 863}, "organization": {"id": 946}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 66, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 336, "owner": {"id": 421}, "assignee": {"id": 564}, "organization": {"id": 683}, "project": {"owner": {"id": 759}, "assignee": {"id": 868}, "organization": {"id": 956}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 331, "owner": {"id": 477}, "assignee": {"id": 563}, "organization": {"id": 135}, "project": {"owner": {"id": 794}, "assignee": {"id": 885}, "organization": {"id": 945}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 9, "privilege": "user"}, "organization": {"id": 123, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 477}, "assignee": {"id": 528}, "organization": {"id": 123}, "project": {"owner": {"id": 797}, "assignee": {"id": 877}, "organization": {"id": 930}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 92, "privilege": "user"}, "organization": {"id": 167, "owner": {"id": 258}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 482}, "assignee": {"id": 560}, "organization": {"id": 697}, "project": {"owner": {"id": 755}, "assignee": {"id": 804}, "organization": {"id": 963}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 494}, "assignee": {"id": 500}, "organization": {"id": 634}, "project": {"owner": {"id": 740}, "assignee": {"id": 840}, "organization": {"id": 970}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 443}, "assignee": {"id": 594}, "organization": {"id": 170}, "project": {"owner": {"id": 710}, "assignee": {"id": 816}, "organization": {"id": 969}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 3, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 259}, "user": {"role": null}}}, "resource": {"id": 313, "owner": {"id": 410}, "assignee": {"id": 552}, "organization": {"id": 155}, "project": {"owner": {"id": 759}, "assignee": {"id": 882}, "organization": {"id": 947}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"id": 384, "owner": {"id": 460}, "assignee": {"id": 508}, "organization": {"id": 679}, "project": {"owner": {"id": 752}, "assignee": {"id": 845}, "organization": {"id": 999}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 129, "owner": {"id": 217}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 497}, "assignee": {"id": 512}, "organization": {"id": 694}, "project": {"owner": {"id": 730}, "assignee": {"id": 813}, "organization": {"id": 952}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 469}, "assignee": {"id": 522}, "organization": {"id": 111}, "project": {"owner": {"id": 746}, "assignee": {"id": 828}, "organization": {"id": 936}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 43}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 418}, "assignee": {"id": 567}, "organization": {"id": 198}, "project": {"owner": {"id": 746}, "assignee": {"id": 866}, "organization": {"id": 900}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 85}, "user": {"role": "owner"}}}, "resource": {"id": 394, "owner": {"id": 414}, "assignee": {"id": 532}, "organization": {"id": 680}, "project": {"owner": {"id": 791}, "assignee": {"id": 893}, "organization": {"id": 900}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 82}, "user": {"role": "owner"}}}, "resource": {"id": 372, "owner": {"id": 416}, "assignee": {"id": 564}, "organization": {"id": 694}, "project": {"owner": {"id": 766}, "assignee": {"id": 858}, "organization": {"id": 924}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 298}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 437}, "assignee": {"id": 508}, "organization": {"id": 194}, "project": {"owner": {"id": 704}, "assignee": {"id": 863}, "organization": {"id": 987}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 216}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 472}, "assignee": {"id": 587}, "organization": {"id": 153}, "project": {"owner": {"id": 749}, "assignee": {"id": 841}, "organization": {"id": 954}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 366, "owner": {"id": 453}, "assignee": {"id": 594}, "organization": {"id": 656}, "project": {"owner": {"id": 756}, "assignee": {"id": 846}, "organization": {"id": 929}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 404}, "assignee": {"id": 510}, "organization": {"id": 698}, "project": {"owner": {"id": 738}, "assignee": {"id": 895}, "organization": {"id": 952}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 104, "owner": {"id": 248}, "user": {"role": "supervisor"}}}, "resource": {"id": 354, "owner": {"id": 427}, "assignee": {"id": 558}, "organization": {"id": 104}, "project": {"owner": {"id": 795}, "assignee": {"id": 817}, "organization": {"id": 908}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 62, "privilege": "worker"}, "organization": {"id": 113, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"id": 343, "owner": {"id": 462}, "assignee": {"id": 545}, "organization": {"id": 113}, "project": {"owner": {"id": 727}, "assignee": {"id": 864}, "organization": {"id": 918}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 85, "privilege": "worker"}, "organization": {"id": 103, "owner": {"id": 245}, "user": {"role": "supervisor"}}}, "resource": {"id": 371, "owner": {"id": 421}, "assignee": {"id": 592}, "organization": {"id": 641}, "project": {"owner": {"id": 736}, "assignee": {"id": 839}, "organization": {"id": 962}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 10, "privilege": "worker"}, "organization": {"id": 185, "owner": {"id": 205}, "user": {"role": "supervisor"}}}, "resource": {"id": 375, "owner": {"id": 482}, "assignee": {"id": 526}, "organization": {"id": 657}, "project": {"owner": {"id": 793}, "assignee": {"id": 851}, "organization": {"id": 987}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 97, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 316, "owner": {"id": 413}, "assignee": {"id": 551}, "organization": {"id": 136}, "project": {"owner": {"id": 782}, "assignee": {"id": 808}, "organization": {"id": 998}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 29, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 224}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 412}, "assignee": {"id": 592}, "organization": {"id": 145}, "project": {"owner": {"id": 720}, "assignee": {"id": 869}, "organization": {"id": 941}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 0, "privilege": "worker"}, "organization": {"id": 186, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"id": 307, "owner": {"id": 489}, "assignee": {"id": 519}, "organization": {"id": 639}, "project": {"owner": {"id": 718}, "assignee": {"id": 884}, "organization": {"id": 964}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 195, "owner": {"id": 237}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 481}, "assignee": {"id": 576}, "organization": {"id": 654}, "project": {"owner": {"id": 722}, "assignee": {"id": 822}, "organization": {"id": 990}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"id": 301, "owner": {"id": 463}, "assignee": {"id": 506}, "organization": {"id": 101}, "project": {"owner": {"id": 709}, "assignee": {"id": 849}, "organization": {"id": 965}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 270}, "user": {"role": null}}}, "resource": {"id": 371, "owner": {"id": 445}, "assignee": {"id": 529}, "organization": {"id": 194}, "project": {"owner": {"id": 735}, "assignee": {"id": 889}, "organization": {"id": 931}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 2, "privilege": "worker"}, "organization": {"id": 186, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"id": 367, "owner": {"id": 487}, "assignee": {"id": 548}, "organization": {"id": 695}, "project": {"owner": {"id": 776}, "assignee": {"id": 864}, "organization": {"id": 940}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 25, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 246}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 464}, "assignee": {"id": 580}, "organization": {"id": 683}, "project": {"owner": {"id": 741}, "assignee": {"id": 883}, "organization": {"id": 995}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 197, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 364, "owner": {"id": 445}, "assignee": {"id": 531}, "organization": {"id": 197}, "project": {"owner": {"id": 718}, "assignee": {"id": 820}, "organization": {"id": 988}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 50, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 50}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 433}, "assignee": {"id": 512}, "organization": {"id": 148}, "project": {"owner": {"id": 705}, "assignee": {"id": 828}, "organization": {"id": 912}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"id": 347, "owner": {"id": 452}, "assignee": {"id": 573}, "organization": {"id": 603}, "project": {"owner": {"id": 717}, "assignee": {"id": 802}, "organization": {"id": 946}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 57}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 499}, "assignee": {"id": 547}, "organization": {"id": 643}, "project": {"owner": {"id": 710}, "assignee": {"id": 830}, "organization": {"id": 901}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 477}, "assignee": {"id": 559}, "organization": {"id": 184}, "project": {"owner": {"id": 740}, "assignee": {"id": 823}, "organization": {"id": 992}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 297}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 494}, "assignee": {"id": 581}, "organization": {"id": 105}, "project": {"owner": {"id": 798}, "assignee": {"id": 879}, "organization": {"id": 975}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 243}, "user": {"role": "maintainer"}}}, "resource": {"id": 377, "owner": {"id": 488}, "assignee": {"id": 501}, "organization": {"id": 647}, "project": {"owner": {"id": 731}, "assignee": {"id": 886}, "organization": {"id": 944}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 376, "owner": {"id": 462}, "assignee": {"id": 518}, "organization": {"id": 616}, "project": {"owner": {"id": 712}, "assignee": {"id": 897}, "organization": {"id": 982}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 79, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 479}, "assignee": {"id": 522}, "organization": {"id": 173}, "project": {"owner": {"id": 747}, "assignee": {"id": 818}, "organization": {"id": 979}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 452}, "assignee": {"id": 559}, "organization": {"id": 169}, "project": {"owner": {"id": 770}, "assignee": {"id": 866}, "organization": {"id": 901}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 27, "privilege": "none"}, "organization": {"id": 190, "owner": {"id": 291}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 486}, "assignee": {"id": 522}, "organization": {"id": 649}, "project": {"owner": {"id": 745}, "assignee": {"id": 881}, "organization": {"id": 905}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 118, "owner": {"id": 277}, "user": {"role": "supervisor"}}}, "resource": {"id": 301, "owner": {"id": 425}, "assignee": {"id": 506}, "organization": {"id": 621}, "project": {"owner": {"id": 752}, "assignee": {"id": 872}, "organization": {"id": 983}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 57, "privilege": "none"}, "organization": {"id": 132, "owner": {"id": 229}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 411}, "assignee": {"id": 583}, "organization": {"id": 132}, "project": {"owner": {"id": 740}, "assignee": {"id": 896}, "organization": {"id": 972}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 20, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 316, "owner": {"id": 477}, "assignee": {"id": 514}, "organization": {"id": 198}, "project": {"owner": {"id": 785}, "assignee": {"id": 843}, "organization": {"id": 979}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 482}, "assignee": {"id": 508}, "organization": {"id": 659}, "project": {"owner": {"id": 747}, "assignee": {"id": 870}, "organization": {"id": 949}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 55, "privilege": "none"}, "organization": {"id": 188, "owner": {"id": 290}, "user": {"role": "worker"}}}, "resource": {"id": 368, "owner": {"id": 493}, "assignee": {"id": 526}, "organization": {"id": 661}, "project": {"owner": {"id": 776}, "assignee": {"id": 849}, "organization": {"id": 975}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 476}, "assignee": {"id": 534}, "organization": {"id": 177}, "project": {"owner": {"id": 770}, "assignee": {"id": 825}, "organization": {"id": 900}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 266}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 475}, "assignee": {"id": 530}, "organization": {"id": 168}, "project": {"owner": {"id": 748}, "assignee": {"id": 837}, "organization": {"id": 909}}}} } -test_scope_EXPORT_DATASET_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "export:dataset", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 106, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 356, "owner": {"id": 454}, "assignee": {"id": 576}, "organization": {"id": 681}, "project": {"owner": {"id": 753}, "assignee": {"id": 850}, "organization": {"id": 965}}}} +test_scope_VIEW_DATA_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "view:data", "auth": {"user": {"id": 87, "privilege": "none"}, "organization": {"id": 172, "owner": {"id": 208}, "user": {"role": null}}}, "resource": {"id": 380, "owner": {"id": 407}, "assignee": {"id": 500}, "organization": {"id": 608}, "project": {"owner": {"id": 757}, "assignee": {"id": 856}, "organization": {"id": 970}}}} } -test_scope_VIEW_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": null}, "resource": {"id": 392, "owner": {"id": 416}, "assignee": {"id": 522}, "organization": {"id": 655}, "project": {"owner": {"id": 25}, "assignee": {"id": 848}, "organization": {"id": 901}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 69, "privilege": "admin"}, "organization": null}, "resource": {"id": 331, "owner": {"id": 483}, "assignee": {"id": 548}, "organization": {"id": 635}, "project": {"owner": {"id": 69}, "assignee": {"id": 829}, "organization": {"id": 902}}}} } -test_scope_VIEW_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 66, "privilege": "business"}, "organization": null}, "resource": {"id": 301, "owner": {"id": 402}, "assignee": {"id": 552}, "organization": {"id": 672}, "project": {"owner": {"id": 66}, "assignee": {"id": 846}, "organization": {"id": 979}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 20, "privilege": "business"}, "organization": null}, "resource": {"id": 316, "owner": {"id": 433}, "assignee": {"id": 551}, "organization": {"id": 621}, "project": {"owner": {"id": 20}, "assignee": {"id": 895}, "organization": {"id": 941}}}} } -test_scope_VIEW_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": null}, "resource": {"id": 368, "owner": {"id": 421}, "assignee": {"id": 527}, "organization": {"id": 666}, "project": {"owner": {"id": 74}, "assignee": {"id": 870}, "organization": {"id": 916}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 15, "privilege": "user"}, "organization": null}, "resource": {"id": 358, "owner": {"id": 439}, "assignee": {"id": 526}, "organization": {"id": 640}, "project": {"owner": {"id": 15}, "assignee": {"id": 889}, "organization": {"id": 968}}}} } -test_scope_VIEW_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": null}, "resource": {"id": 395, "owner": {"id": 480}, "assignee": {"id": 599}, "organization": {"id": 613}, "project": {"owner": {"id": 40}, "assignee": {"id": 853}, "organization": {"id": 980}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": null}, "resource": {"id": 348, "owner": {"id": 407}, "assignee": {"id": 587}, "organization": {"id": 613}, "project": {"owner": {"id": 32}, "assignee": {"id": 847}, "organization": {"id": 905}}}} } -test_scope_VIEW_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": null}, "resource": {"id": 340, "owner": {"id": 484}, "assignee": {"id": 541}, "organization": {"id": 684}, "project": {"owner": {"id": 18}, "assignee": {"id": 827}, "organization": {"id": 985}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": null}, "resource": {"id": 310, "owner": {"id": 407}, "assignee": {"id": 521}, "organization": {"id": 695}, "project": {"owner": {"id": 64}, "assignee": {"id": 800}, "organization": {"id": 986}}}} } -test_scope_VIEW_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": null}, "resource": {"id": 343, "owner": {"id": 428}, "assignee": {"id": 564}, "organization": {"id": 641}, "project": {"owner": {"id": 779}, "assignee": {"id": 77}, "organization": {"id": 948}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": null}, "resource": {"id": 303, "owner": {"id": 402}, "assignee": {"id": 596}, "organization": {"id": 620}, "project": {"owner": {"id": 765}, "assignee": {"id": 65}, "organization": {"id": 929}}}} } -test_scope_VIEW_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": null}, "resource": {"id": 378, "owner": {"id": 457}, "assignee": {"id": 594}, "organization": {"id": 671}, "project": {"owner": {"id": 757}, "assignee": {"id": 33}, "organization": {"id": 949}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": null}, "resource": {"id": 357, "owner": {"id": 472}, "assignee": {"id": 525}, "organization": {"id": 606}, "project": {"owner": {"id": 774}, "assignee": {"id": 82}, "organization": {"id": 921}}}} } -test_scope_VIEW_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 82, "privilege": "user"}, "organization": null}, "resource": {"id": 397, "owner": {"id": 478}, "assignee": {"id": 504}, "organization": {"id": 638}, "project": {"owner": {"id": 776}, "assignee": {"id": 82}, "organization": {"id": 903}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 50, "privilege": "user"}, "organization": null}, "resource": {"id": 363, "owner": {"id": 458}, "assignee": {"id": 560}, "organization": {"id": 600}, "project": {"owner": {"id": 793}, "assignee": {"id": 50}, "organization": {"id": 941}}}} } -test_scope_VIEW_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": null}, "resource": {"id": 318, "owner": {"id": 471}, "assignee": {"id": 520}, "organization": {"id": 644}, "project": {"owner": {"id": 761}, "assignee": {"id": 94}, "organization": {"id": 903}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 86, "privilege": "worker"}, "organization": null}, "resource": {"id": 300, "owner": {"id": 458}, "assignee": {"id": 523}, "organization": {"id": 606}, "project": {"owner": {"id": 703}, "assignee": {"id": 86}, "organization": {"id": 955}}}} } -test_scope_VIEW_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": null}, "resource": {"id": 316, "owner": {"id": 484}, "assignee": {"id": 517}, "organization": {"id": 650}, "project": {"owner": {"id": 753}, "assignee": {"id": 10}, "organization": {"id": 939}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 60, "privilege": "none"}, "organization": null}, "resource": {"id": 330, "owner": {"id": 410}, "assignee": {"id": 580}, "organization": {"id": 642}, "project": {"owner": {"id": 762}, "assignee": {"id": 60}, "organization": {"id": 924}}}} } -test_scope_VIEW_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": null}, "resource": {"id": 397, "owner": {"id": 77}, "assignee": {"id": 539}, "organization": {"id": 666}, "project": {"owner": {"id": 713}, "assignee": {"id": 846}, "organization": {"id": 935}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": null}, "resource": {"id": 332, "owner": {"id": 32}, "assignee": {"id": 581}, "organization": {"id": 645}, "project": {"owner": {"id": 791}, "assignee": {"id": 840}, "organization": {"id": 983}}}} } -test_scope_VIEW_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": null}, "resource": {"id": 328, "owner": {"id": 21}, "assignee": {"id": 549}, "organization": {"id": 693}, "project": {"owner": {"id": 740}, "assignee": {"id": 855}, "organization": {"id": 993}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 28, "privilege": "business"}, "organization": null}, "resource": {"id": 368, "owner": {"id": 28}, "assignee": {"id": 522}, "organization": {"id": 601}, "project": {"owner": {"id": 741}, "assignee": {"id": 857}, "organization": {"id": 960}}}} } -test_scope_VIEW_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 90, "privilege": "user"}, "organization": null}, "resource": {"id": 360, "owner": {"id": 90}, "assignee": {"id": 560}, "organization": {"id": 689}, "project": {"owner": {"id": 789}, "assignee": {"id": 850}, "organization": {"id": 957}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 9, "privilege": "user"}, "organization": null}, "resource": {"id": 371, "owner": {"id": 9}, "assignee": {"id": 519}, "organization": {"id": 603}, "project": {"owner": {"id": 761}, "assignee": {"id": 824}, "organization": {"id": 973}}}} } -test_scope_VIEW_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": null}, "resource": {"id": 373, "owner": {"id": 27}, "assignee": {"id": 599}, "organization": {"id": 622}, "project": {"owner": {"id": 730}, "assignee": {"id": 812}, "organization": {"id": 981}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": null}, "resource": {"id": 383, "owner": {"id": 75}, "assignee": {"id": 548}, "organization": {"id": 676}, "project": {"owner": {"id": 797}, "assignee": {"id": 815}, "organization": {"id": 940}}}} } -test_scope_VIEW_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": null}, "resource": {"id": 320, "owner": {"id": 5}, "assignee": {"id": 510}, "organization": {"id": 650}, "project": {"owner": {"id": 718}, "assignee": {"id": 843}, "organization": {"id": 971}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": null}, "resource": {"id": 331, "owner": {"id": 85}, "assignee": {"id": 559}, "organization": {"id": 600}, "project": {"owner": {"id": 717}, "assignee": {"id": 868}, "organization": {"id": 972}}}} } -test_scope_VIEW_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": null}, "resource": {"id": 307, "owner": {"id": 495}, "assignee": {"id": 89}, "organization": {"id": 689}, "project": {"owner": {"id": 701}, "assignee": {"id": 809}, "organization": {"id": 907}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 92, "privilege": "admin"}, "organization": null}, "resource": {"id": 398, "owner": {"id": 402}, "assignee": {"id": 92}, "organization": {"id": 612}, "project": {"owner": {"id": 750}, "assignee": {"id": 886}, "organization": {"id": 962}}}} } -test_scope_VIEW_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": null}, "resource": {"id": 345, "owner": {"id": 432}, "assignee": {"id": 77}, "organization": {"id": 679}, "project": {"owner": {"id": 751}, "assignee": {"id": 855}, "organization": {"id": 932}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": null}, "resource": {"id": 354, "owner": {"id": 401}, "assignee": {"id": 67}, "organization": {"id": 691}, "project": {"owner": {"id": 762}, "assignee": {"id": 857}, "organization": {"id": 936}}}} } -test_scope_VIEW_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": null}, "resource": {"id": 387, "owner": {"id": 473}, "assignee": {"id": 10}, "organization": {"id": 608}, "project": {"owner": {"id": 771}, "assignee": {"id": 814}, "organization": {"id": 937}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": null}, "resource": {"id": 324, "owner": {"id": 422}, "assignee": {"id": 80}, "organization": {"id": 692}, "project": {"owner": {"id": 707}, "assignee": {"id": 823}, "organization": {"id": 958}}}} } -test_scope_VIEW_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": null}, "resource": {"id": 377, "owner": {"id": 419}, "assignee": {"id": 66}, "organization": {"id": 603}, "project": {"owner": {"id": 783}, "assignee": {"id": 824}, "organization": {"id": 994}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 30, "privilege": "worker"}, "organization": null}, "resource": {"id": 329, "owner": {"id": 400}, "assignee": {"id": 30}, "organization": {"id": 606}, "project": {"owner": {"id": 724}, "assignee": {"id": 810}, "organization": {"id": 926}}}} } -test_scope_VIEW_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": null}, "resource": {"id": 398, "owner": {"id": 482}, "assignee": {"id": 94}, "organization": {"id": 629}, "project": {"owner": {"id": 755}, "assignee": {"id": 831}, "organization": {"id": 955}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 72, "privilege": "none"}, "organization": null}, "resource": {"id": 353, "owner": {"id": 403}, "assignee": {"id": 72}, "organization": {"id": 685}, "project": {"owner": {"id": 789}, "assignee": {"id": 866}, "organization": {"id": 944}}}} } -test_scope_VIEW_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": null}, "resource": {"id": 309, "owner": {"id": 428}, "assignee": {"id": 544}, "organization": {"id": 608}, "project": {"owner": {"id": 736}, "assignee": {"id": 834}, "organization": {"id": 989}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 57, "privilege": "admin"}, "organization": null}, "resource": {"id": 349, "owner": {"id": 443}, "assignee": {"id": 516}, "organization": {"id": 620}, "project": {"owner": {"id": 733}, "assignee": {"id": 847}, "organization": {"id": 904}}}} } -test_scope_VIEW_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": null}, "resource": {"id": 342, "owner": {"id": 453}, "assignee": {"id": 592}, "organization": {"id": 674}, "project": {"owner": {"id": 716}, "assignee": {"id": 853}, "organization": {"id": 919}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": null}, "resource": {"id": 342, "owner": {"id": 479}, "assignee": {"id": 541}, "organization": {"id": 607}, "project": {"owner": {"id": 702}, "assignee": {"id": 889}, "organization": {"id": 913}}}} } -test_scope_VIEW_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": null}, "resource": {"id": 347, "owner": {"id": 443}, "assignee": {"id": 506}, "organization": {"id": 618}, "project": {"owner": {"id": 723}, "assignee": {"id": 802}, "organization": {"id": 958}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 93, "privilege": "user"}, "organization": null}, "resource": {"id": 361, "owner": {"id": 420}, "assignee": {"id": 512}, "organization": {"id": 636}, "project": {"owner": {"id": 773}, "assignee": {"id": 826}, "organization": {"id": 958}}}} } -test_scope_VIEW_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 19, "privilege": "worker"}, "organization": null}, "resource": {"id": 327, "owner": {"id": 432}, "assignee": {"id": 583}, "organization": {"id": 688}, "project": {"owner": {"id": 747}, "assignee": {"id": 872}, "organization": {"id": 940}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": null}, "resource": {"id": 364, "owner": {"id": 442}, "assignee": {"id": 520}, "organization": {"id": 672}, "project": {"owner": {"id": 750}, "assignee": {"id": 876}, "organization": {"id": 932}}}} } -test_scope_VIEW_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 90, "privilege": "none"}, "organization": null}, "resource": {"id": 398, "owner": {"id": 461}, "assignee": {"id": 502}, "organization": {"id": 649}, "project": {"owner": {"id": 775}, "assignee": {"id": 862}, "organization": {"id": 981}}}} +test_scope_UPDATE_ASSIGNEE_context_SANDBOX_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": null}, "resource": {"id": 357, "owner": {"id": 424}, "assignee": {"id": 525}, "organization": {"id": 649}, "project": {"owner": {"id": 740}, "assignee": {"id": 850}, "organization": {"id": 945}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 13, "privilege": "admin"}, "organization": {"id": 182, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 307, "owner": {"id": 497}, "assignee": {"id": 517}, "organization": {"id": 182}, "project": {"owner": {"id": 13}, "assignee": {"id": 827}, "organization": {"id": 993}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 68, "privilege": "admin"}, "organization": {"id": 161, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 448}, "assignee": {"id": 596}, "organization": {"id": 161}, "project": {"owner": {"id": 68}, "assignee": {"id": 891}, "organization": {"id": 993}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 87, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 87}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 447}, "assignee": {"id": 531}, "organization": {"id": 612}, "project": {"owner": {"id": 87}, "assignee": {"id": 865}, "organization": {"id": 909}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 174, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 384, "owner": {"id": 440}, "assignee": {"id": 544}, "organization": {"id": 620}, "project": {"owner": {"id": 9}, "assignee": {"id": 861}, "organization": {"id": 953}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 4, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 232}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 476}, "assignee": {"id": 516}, "organization": {"id": 196}, "project": {"owner": {"id": 4}, "assignee": {"id": 820}, "organization": {"id": 946}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 371, "owner": {"id": 419}, "assignee": {"id": 573}, "organization": {"id": 112}, "project": {"owner": {"id": 35}, "assignee": {"id": 856}, "organization": {"id": 926}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 21, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 279}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 432}, "assignee": {"id": 537}, "organization": {"id": 617}, "project": {"owner": {"id": 21}, "assignee": {"id": 894}, "organization": {"id": 998}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 176, "owner": {"id": 288}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 497}, "assignee": {"id": 576}, "organization": {"id": 695}, "project": {"owner": {"id": 79}, "assignee": {"id": 860}, "organization": {"id": 972}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 205}, "user": {"role": "supervisor"}}}, "resource": {"id": 354, "owner": {"id": 455}, "assignee": {"id": 556}, "organization": {"id": 112}, "project": {"owner": {"id": 98}, "assignee": {"id": 897}, "organization": {"id": 965}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 114, "owner": {"id": 265}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 434}, "assignee": {"id": 563}, "organization": {"id": 114}, "project": {"owner": {"id": 23}, "assignee": {"id": 810}, "organization": {"id": 925}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 63, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 284}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 480}, "assignee": {"id": 577}, "organization": {"id": 691}, "project": {"owner": {"id": 63}, "assignee": {"id": 855}, "organization": {"id": 990}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 41, "privilege": "admin"}, "organization": {"id": 101, "owner": {"id": 245}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 495}, "assignee": {"id": 564}, "organization": {"id": 646}, "project": {"owner": {"id": 41}, "assignee": {"id": 848}, "organization": {"id": 943}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 75, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 215}, "user": {"role": "worker"}}}, "resource": {"id": 368, "owner": {"id": 459}, "assignee": {"id": 582}, "organization": {"id": 159}, "project": {"owner": {"id": 75}, "assignee": {"id": 889}, "organization": {"id": 952}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 267}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 499}, "assignee": {"id": 571}, "organization": {"id": 179}, "project": {"owner": {"id": 44}, "assignee": {"id": 854}, "organization": {"id": 930}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 181, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 303, "owner": {"id": 458}, "assignee": {"id": 525}, "organization": {"id": 679}, "project": {"owner": {"id": 91}, "assignee": {"id": 863}, "organization": {"id": 906}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 6, "privilege": "admin"}, "organization": {"id": 156, "owner": {"id": 210}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 410}, "assignee": {"id": 520}, "organization": {"id": 644}, "project": {"owner": {"id": 6}, "assignee": {"id": 812}, "organization": {"id": 930}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 37, "privilege": "admin"}, "organization": {"id": 123, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 420}, "assignee": {"id": 501}, "organization": {"id": 123}, "project": {"owner": {"id": 37}, "assignee": {"id": 833}, "organization": {"id": 903}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 96, "privilege": "admin"}, "organization": {"id": 113, "owner": {"id": 201}, "user": {"role": null}}}, "resource": {"id": 386, "owner": {"id": 408}, "assignee": {"id": 564}, "organization": {"id": 113}, "project": {"owner": {"id": 96}, "assignee": {"id": 805}, "organization": {"id": 944}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"id": 375, "owner": {"id": 404}, "assignee": {"id": 513}, "organization": {"id": 654}, "project": {"owner": {"id": 17}, "assignee": {"id": 894}, "organization": {"id": 981}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 76, "privilege": "admin"}, "organization": {"id": 192, "owner": {"id": 211}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 497}, "assignee": {"id": 560}, "organization": {"id": 659}, "project": {"owner": {"id": 76}, "assignee": {"id": 864}, "organization": {"id": 943}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 7}, "user": {"role": "owner"}}}, "resource": {"id": 311, "owner": {"id": 446}, "assignee": {"id": 508}, "organization": {"id": 186}, "project": {"owner": {"id": 7}, "assignee": {"id": 833}, "organization": {"id": 948}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 130, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 314, "owner": {"id": 437}, "assignee": {"id": 540}, "organization": {"id": 130}, "project": {"owner": {"id": 9}, "assignee": {"id": 823}, "organization": {"id": 975}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 353, "owner": {"id": 453}, "assignee": {"id": 566}, "organization": {"id": 617}, "project": {"owner": {"id": 62}, "assignee": {"id": 845}, "organization": {"id": 922}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 148, "owner": {"id": 89}, "user": {"role": "owner"}}}, "resource": {"id": 356, "owner": {"id": 479}, "assignee": {"id": 547}, "organization": {"id": 643}, "project": {"owner": {"id": 89}, "assignee": {"id": 859}, "organization": {"id": 989}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 276}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 488}, "assignee": {"id": 536}, "organization": {"id": 109}, "project": {"owner": {"id": 34}, "assignee": {"id": 811}, "organization": {"id": 952}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 3, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"id": 356, "owner": {"id": 411}, "assignee": {"id": 577}, "organization": {"id": 144}, "project": {"owner": {"id": 3}, "assignee": {"id": 841}, "organization": {"id": 982}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 448}, "assignee": {"id": 543}, "organization": {"id": 659}, "project": {"owner": {"id": 85}, "assignee": {"id": 847}, "organization": {"id": 921}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 43, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 290}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 433}, "assignee": {"id": 593}, "organization": {"id": 623}, "project": {"owner": {"id": 43}, "assignee": {"id": 883}, "organization": {"id": 954}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 91, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 481}, "assignee": {"id": 517}, "organization": {"id": 134}, "project": {"owner": {"id": 91}, "assignee": {"id": 884}, "organization": {"id": 905}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 137, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 333, "owner": {"id": 444}, "assignee": {"id": 597}, "organization": {"id": 137}, "project": {"owner": {"id": 29}, "assignee": {"id": 833}, "organization": {"id": 993}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 210}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 427}, "assignee": {"id": 555}, "organization": {"id": 669}, "project": {"owner": {"id": 80}, "assignee": {"id": 877}, "organization": {"id": 930}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 31, "privilege": "business"}, "organization": {"id": 130, "owner": {"id": 278}, "user": {"role": "supervisor"}}}, "resource": {"id": 335, "owner": {"id": 445}, "assignee": {"id": 570}, "organization": {"id": 626}, "project": {"owner": {"id": 31}, "assignee": {"id": 890}, "organization": {"id": 990}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 245}, "user": {"role": "worker"}}}, "resource": {"id": 371, "owner": {"id": 414}, "assignee": {"id": 532}, "organization": {"id": 158}, "project": {"owner": {"id": 92}, "assignee": {"id": 868}, "organization": {"id": 997}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 26, "privilege": "business"}, "organization": {"id": 111, "owner": {"id": 288}, "user": {"role": "worker"}}}, "resource": {"id": 397, "owner": {"id": 419}, "assignee": {"id": 518}, "organization": {"id": 111}, "project": {"owner": {"id": 26}, "assignee": {"id": 801}, "organization": {"id": 902}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 222}, "user": {"role": "worker"}}}, "resource": {"id": 347, "owner": {"id": 482}, "assignee": {"id": 544}, "organization": {"id": 606}, "project": {"owner": {"id": 9}, "assignee": {"id": 853}, "organization": {"id": 911}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 266}, "user": {"role": "worker"}}}, "resource": {"id": 382, "owner": {"id": 468}, "assignee": {"id": 591}, "organization": {"id": 689}, "project": {"owner": {"id": 21}, "assignee": {"id": 827}, "organization": {"id": 981}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 33, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 266}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 442}, "assignee": {"id": 537}, "organization": {"id": 186}, "project": {"owner": {"id": 33}, "assignee": {"id": 842}, "organization": {"id": 955}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 35, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 377, "owner": {"id": 401}, "assignee": {"id": 523}, "organization": {"id": 168}, "project": {"owner": {"id": 35}, "assignee": {"id": 871}, "organization": {"id": 906}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 58, "privilege": "business"}, "organization": {"id": 130, "owner": {"id": 228}, "user": {"role": null}}}, "resource": {"id": 382, "owner": {"id": 421}, "assignee": {"id": 504}, "organization": {"id": 689}, "project": {"owner": {"id": 58}, "assignee": {"id": 863}, "organization": {"id": 978}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 18, "privilege": "business"}, "organization": {"id": 183, "owner": {"id": 263}, "user": {"role": null}}}, "resource": {"id": 349, "owner": {"id": 424}, "assignee": {"id": 522}, "organization": {"id": 624}, "project": {"owner": {"id": 18}, "assignee": {"id": 877}, "organization": {"id": 978}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 64, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 64}, "user": {"role": "owner"}}}, "resource": {"id": 334, "owner": {"id": 497}, "assignee": {"id": 570}, "organization": {"id": 102}, "project": {"owner": {"id": 64}, "assignee": {"id": 865}, "organization": {"id": 921}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 80, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 80}, "user": {"role": "owner"}}}, "resource": {"id": 372, "owner": {"id": 433}, "assignee": {"id": 521}, "organization": {"id": 152}, "project": {"owner": {"id": 80}, "assignee": {"id": 803}, "organization": {"id": 985}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 30, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 363, "owner": {"id": 496}, "assignee": {"id": 570}, "organization": {"id": 668}, "project": {"owner": {"id": 30}, "assignee": {"id": 828}, "organization": {"id": 912}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 11, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 361, "owner": {"id": 436}, "assignee": {"id": 580}, "organization": {"id": 695}, "project": {"owner": {"id": 11}, "assignee": {"id": 831}, "organization": {"id": 981}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 94, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"id": 342, "owner": {"id": 449}, "assignee": {"id": 570}, "organization": {"id": 171}, "project": {"owner": {"id": 94}, "assignee": {"id": 859}, "organization": {"id": 991}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 9, "privilege": "user"}, "organization": {"id": 172, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 343, "owner": {"id": 429}, "assignee": {"id": 536}, "organization": {"id": 172}, "project": {"owner": {"id": 9}, "assignee": {"id": 834}, "organization": {"id": 910}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 218}, "user": {"role": "maintainer"}}}, "resource": {"id": 345, "owner": {"id": 477}, "assignee": {"id": 549}, "organization": {"id": 614}, "project": {"owner": {"id": 89}, "assignee": {"id": 876}, "organization": {"id": 982}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 51, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"id": 386, "owner": {"id": 441}, "assignee": {"id": 549}, "organization": {"id": 662}, "project": {"owner": {"id": 51}, "assignee": {"id": 855}, "organization": {"id": 957}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 14, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 234}, "user": {"role": "supervisor"}}}, "resource": {"id": 327, "owner": {"id": 412}, "assignee": {"id": 538}, "organization": {"id": 197}, "project": {"owner": {"id": 14}, "assignee": {"id": 848}, "organization": {"id": 948}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 238}, "user": {"role": "supervisor"}}}, "resource": {"id": 371, "owner": {"id": 459}, "assignee": {"id": 571}, "organization": {"id": 157}, "project": {"owner": {"id": 78}, "assignee": {"id": 898}, "organization": {"id": 986}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 59, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 248}, "user": {"role": "supervisor"}}}, "resource": {"id": 357, "owner": {"id": 418}, "assignee": {"id": 582}, "organization": {"id": 601}, "project": {"owner": {"id": 59}, "assignee": {"id": 857}, "organization": {"id": 966}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 95, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 242}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 406}, "assignee": {"id": 527}, "organization": {"id": 642}, "project": {"owner": {"id": 95}, "assignee": {"id": 828}, "organization": {"id": 941}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 275}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 494}, "assignee": {"id": 598}, "organization": {"id": 132}, "project": {"owner": {"id": 4}, "assignee": {"id": 854}, "organization": {"id": 904}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": {"id": 108, "owner": {"id": 280}, "user": {"role": "worker"}}}, "resource": {"id": 347, "owner": {"id": 476}, "assignee": {"id": 569}, "organization": {"id": 108}, "project": {"owner": {"id": 38}, "assignee": {"id": 843}, "organization": {"id": 911}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 8, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 225}, "user": {"role": "worker"}}}, "resource": {"id": 337, "owner": {"id": 494}, "assignee": {"id": 530}, "organization": {"id": 694}, "project": {"owner": {"id": 8}, "assignee": {"id": 822}, "organization": {"id": 967}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 350, "owner": {"id": 449}, "assignee": {"id": 520}, "organization": {"id": 655}, "project": {"owner": {"id": 87}, "assignee": {"id": 815}, "organization": {"id": 933}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 19, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"id": 365, "owner": {"id": 456}, "assignee": {"id": 578}, "organization": {"id": 159}, "project": {"owner": {"id": 19}, "assignee": {"id": 815}, "organization": {"id": 934}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 239}, "user": {"role": null}}}, "resource": {"id": 330, "owner": {"id": 493}, "assignee": {"id": 564}, "organization": {"id": 159}, "project": {"owner": {"id": 2}, "assignee": {"id": 823}, "organization": {"id": 904}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 269}, "user": {"role": null}}}, "resource": {"id": 312, "owner": {"id": 497}, "assignee": {"id": 546}, "organization": {"id": 643}, "project": {"owner": {"id": 17}, "assignee": {"id": 866}, "organization": {"id": 973}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 171, "owner": {"id": 265}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 409}, "assignee": {"id": 560}, "organization": {"id": 676}, "project": {"owner": {"id": 35}, "assignee": {"id": 898}, "organization": {"id": 980}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"id": 337, "owner": {"id": 496}, "assignee": {"id": 573}, "organization": {"id": 117}, "project": {"owner": {"id": 16}, "assignee": {"id": 830}, "organization": {"id": 998}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 59}, "user": {"role": "owner"}}}, "resource": {"id": 322, "owner": {"id": 423}, "assignee": {"id": 516}, "organization": {"id": 179}, "project": {"owner": {"id": 59}, "assignee": {"id": 814}, "organization": {"id": 907}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 5, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"id": 355, "owner": {"id": 402}, "assignee": {"id": 586}, "organization": {"id": 609}, "project": {"owner": {"id": 5}, "assignee": {"id": 827}, "organization": {"id": 962}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 3, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 330, "owner": {"id": 447}, "assignee": {"id": 508}, "organization": {"id": 670}, "project": {"owner": {"id": 3}, "assignee": {"id": 861}, "organization": {"id": 920}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 25, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 248}, "user": {"role": "maintainer"}}}, "resource": {"id": 306, "owner": {"id": 451}, "assignee": {"id": 512}, "organization": {"id": 178}, "project": {"owner": {"id": 25}, "assignee": {"id": 859}, "organization": {"id": 986}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 66, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 209}, "user": {"role": "maintainer"}}}, "resource": {"id": 338, "owner": {"id": 420}, "assignee": {"id": 540}, "organization": {"id": 181}, "project": {"owner": {"id": 66}, "assignee": {"id": 870}, "organization": {"id": 955}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 89, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 459}, "assignee": {"id": 532}, "organization": {"id": 615}, "project": {"owner": {"id": 89}, "assignee": {"id": 842}, "organization": {"id": 928}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 49, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 237}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 413}, "assignee": {"id": 545}, "organization": {"id": 653}, "project": {"owner": {"id": 49}, "assignee": {"id": 847}, "organization": {"id": 969}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 208}, "user": {"role": "supervisor"}}}, "resource": {"id": 308, "owner": {"id": 495}, "assignee": {"id": 544}, "organization": {"id": 145}, "project": {"owner": {"id": 95}, "assignee": {"id": 806}, "organization": {"id": 956}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 78, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 453}, "assignee": {"id": 599}, "organization": {"id": 162}, "project": {"owner": {"id": 78}, "assignee": {"id": 843}, "organization": {"id": 995}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 150, "owner": {"id": 209}, "user": {"role": "supervisor"}}}, "resource": {"id": 305, "owner": {"id": 450}, "assignee": {"id": 542}, "organization": {"id": 662}, "project": {"owner": {"id": 38}, "assignee": {"id": 880}, "organization": {"id": 925}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 6, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 269}, "user": {"role": "supervisor"}}}, "resource": {"id": 359, "owner": {"id": 485}, "assignee": {"id": 541}, "organization": {"id": 687}, "project": {"owner": {"id": 6}, "assignee": {"id": 848}, "organization": {"id": 906}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 140, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 413}, "assignee": {"id": 515}, "organization": {"id": 140}, "project": {"owner": {"id": 52}, "assignee": {"id": 832}, "organization": {"id": 925}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 25, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 213}, "user": {"role": "worker"}}}, "resource": {"id": 332, "owner": {"id": 457}, "assignee": {"id": 530}, "organization": {"id": 182}, "project": {"owner": {"id": 25}, "assignee": {"id": 861}, "organization": {"id": 905}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 170, "owner": {"id": 268}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 472}, "assignee": {"id": 580}, "organization": {"id": 644}, "project": {"owner": {"id": 16}, "assignee": {"id": 881}, "organization": {"id": 948}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 284}, "user": {"role": "worker"}}}, "resource": {"id": 394, "owner": {"id": 448}, "assignee": {"id": 532}, "organization": {"id": 638}, "project": {"owner": {"id": 40}, "assignee": {"id": 810}, "organization": {"id": 928}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 273}, "user": {"role": null}}}, "resource": {"id": 388, "owner": {"id": 463}, "assignee": {"id": 503}, "organization": {"id": 127}, "project": {"owner": {"id": 92}, "assignee": {"id": 830}, "organization": {"id": 940}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 196, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"id": 388, "owner": {"id": 424}, "assignee": {"id": 509}, "organization": {"id": 196}, "project": {"owner": {"id": 24}, "assignee": {"id": 870}, "organization": {"id": 975}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 35, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 437}, "assignee": {"id": 542}, "organization": {"id": 682}, "project": {"owner": {"id": 35}, "assignee": {"id": 886}, "organization": {"id": 934}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 71, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 290}, "user": {"role": null}}}, "resource": {"id": 347, "owner": {"id": 450}, "assignee": {"id": 540}, "organization": {"id": 655}, "project": {"owner": {"id": 71}, "assignee": {"id": 801}, "organization": {"id": 969}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 28, "privilege": "none"}, "organization": {"id": 145, "owner": {"id": 28}, "user": {"role": "owner"}}}, "resource": {"id": 309, "owner": {"id": 437}, "assignee": {"id": 576}, "organization": {"id": 145}, "project": {"owner": {"id": 28}, "assignee": {"id": 889}, "organization": {"id": 941}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 149, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 305, "owner": {"id": 470}, "assignee": {"id": 591}, "organization": {"id": 149}, "project": {"owner": {"id": 73}, "assignee": {"id": 845}, "organization": {"id": 953}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 59, "privilege": "none"}, "organization": {"id": 115, "owner": {"id": 59}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 493}, "assignee": {"id": 528}, "organization": {"id": 636}, "project": {"owner": {"id": 59}, "assignee": {"id": 821}, "organization": {"id": 986}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 68, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 68}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 471}, "assignee": {"id": 505}, "organization": {"id": 654}, "project": {"owner": {"id": 68}, "assignee": {"id": 835}, "organization": {"id": 913}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 174, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 379, "owner": {"id": 458}, "assignee": {"id": 503}, "organization": {"id": 174}, "project": {"owner": {"id": 86}, "assignee": {"id": 864}, "organization": {"id": 979}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 22, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 308, "owner": {"id": 410}, "assignee": {"id": 519}, "organization": {"id": 158}, "project": {"owner": {"id": 22}, "assignee": {"id": 852}, "organization": {"id": 924}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 188, "owner": {"id": 202}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 410}, "assignee": {"id": 574}, "organization": {"id": 617}, "project": {"owner": {"id": 32}, "assignee": {"id": 829}, "organization": {"id": 920}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 241}, "user": {"role": "maintainer"}}}, "resource": {"id": 376, "owner": {"id": 436}, "assignee": {"id": 578}, "organization": {"id": 663}, "project": {"owner": {"id": 6}, "assignee": {"id": 813}, "organization": {"id": 933}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 19, "privilege": "none"}, "organization": {"id": 166, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 478}, "assignee": {"id": 566}, "organization": {"id": 166}, "project": {"owner": {"id": 19}, "assignee": {"id": 852}, "organization": {"id": 973}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 223}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 419}, "assignee": {"id": 528}, "organization": {"id": 129}, "project": {"owner": {"id": 96}, "assignee": {"id": 831}, "organization": {"id": 972}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 152, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 466}, "assignee": {"id": 592}, "organization": {"id": 676}, "project": {"owner": {"id": 14}, "assignee": {"id": 820}, "organization": {"id": 930}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 117, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 382, "owner": {"id": 441}, "assignee": {"id": 584}, "organization": {"id": 638}, "project": {"owner": {"id": 0}, "assignee": {"id": 864}, "organization": {"id": 972}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 94, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 251}, "user": {"role": "worker"}}}, "resource": {"id": 341, "owner": {"id": 478}, "assignee": {"id": 526}, "organization": {"id": 169}, "project": {"owner": {"id": 94}, "assignee": {"id": 882}, "organization": {"id": 995}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 104, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"id": 372, "owner": {"id": 439}, "assignee": {"id": 562}, "organization": {"id": 104}, "project": {"owner": {"id": 89}, "assignee": {"id": 814}, "organization": {"id": 985}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 11, "privilege": "none"}, "organization": {"id": 139, "owner": {"id": 265}, "user": {"role": "worker"}}}, "resource": {"id": 357, "owner": {"id": 432}, "assignee": {"id": 578}, "organization": {"id": 649}, "project": {"owner": {"id": 11}, "assignee": {"id": 862}, "organization": {"id": 964}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 41, "privilege": "none"}, "organization": {"id": 122, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 456}, "assignee": {"id": 556}, "organization": {"id": 666}, "project": {"owner": {"id": 41}, "assignee": {"id": 884}, "organization": {"id": 919}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 56, "privilege": "none"}, "organization": {"id": 111, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"id": 372, "owner": {"id": 407}, "assignee": {"id": 534}, "organization": {"id": 111}, "project": {"owner": {"id": 56}, "assignee": {"id": 847}, "organization": {"id": 958}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 329, "owner": {"id": 490}, "assignee": {"id": 509}, "organization": {"id": 140}, "project": {"owner": {"id": 25}, "assignee": {"id": 814}, "organization": {"id": 963}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 258}, "user": {"role": null}}}, "resource": {"id": 303, "owner": {"id": 418}, "assignee": {"id": 561}, "organization": {"id": 637}, "project": {"owner": {"id": 67}, "assignee": {"id": 831}, "organization": {"id": 921}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 91, "privilege": "none"}, "organization": {"id": 154, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 461}, "assignee": {"id": 582}, "organization": {"id": 694}, "project": {"owner": {"id": 91}, "assignee": {"id": 889}, "organization": {"id": 943}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 98}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 431}, "assignee": {"id": 590}, "organization": {"id": 118}, "project": {"owner": {"id": 731}, "assignee": {"id": 98}, "organization": {"id": 900}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 9}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 464}, "assignee": {"id": 584}, "organization": {"id": 167}, "project": {"owner": {"id": 746}, "assignee": {"id": 9}, "organization": {"id": 956}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 36, "privilege": "admin"}, "organization": {"id": 198, "owner": {"id": 36}, "user": {"role": "owner"}}}, "resource": {"id": 386, "owner": {"id": 419}, "assignee": {"id": 519}, "organization": {"id": 698}, "project": {"owner": {"id": 756}, "assignee": {"id": 36}, "organization": {"id": 905}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 195, "owner": {"id": 38}, "user": {"role": "owner"}}}, "resource": {"id": 345, "owner": {"id": 490}, "assignee": {"id": 585}, "organization": {"id": 693}, "project": {"owner": {"id": 749}, "assignee": {"id": 38}, "organization": {"id": 988}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 274}, "user": {"role": "maintainer"}}}, "resource": {"id": 356, "owner": {"id": 478}, "assignee": {"id": 548}, "organization": {"id": 178}, "project": {"owner": {"id": 796}, "assignee": {"id": 77}, "organization": {"id": 955}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 54, "privilege": "admin"}, "organization": {"id": 159, "owner": {"id": 220}, "user": {"role": "maintainer"}}}, "resource": {"id": 356, "owner": {"id": 459}, "assignee": {"id": 550}, "organization": {"id": 159}, "project": {"owner": {"id": 783}, "assignee": {"id": 54}, "organization": {"id": 940}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 128, "owner": {"id": 234}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 499}, "assignee": {"id": 539}, "organization": {"id": 653}, "project": {"owner": {"id": 766}, "assignee": {"id": 24}, "organization": {"id": 975}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 485}, "assignee": {"id": 519}, "organization": {"id": 661}, "project": {"owner": {"id": 700}, "assignee": {"id": 29}, "organization": {"id": 961}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 65, "privilege": "admin"}, "organization": {"id": 154, "owner": {"id": 231}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 446}, "assignee": {"id": 526}, "organization": {"id": 154}, "project": {"owner": {"id": 763}, "assignee": {"id": 65}, "organization": {"id": 947}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 50, "privilege": "admin"}, "organization": {"id": 151, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 372, "owner": {"id": 432}, "assignee": {"id": 516}, "organization": {"id": 151}, "project": {"owner": {"id": 719}, "assignee": {"id": 50}, "organization": {"id": 994}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 89, "privilege": "admin"}, "organization": {"id": 139, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 324, "owner": {"id": 485}, "assignee": {"id": 570}, "organization": {"id": 689}, "project": {"owner": {"id": 715}, "assignee": {"id": 89}, "organization": {"id": 941}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 38, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 260}, "user": {"role": "supervisor"}}}, "resource": {"id": 394, "owner": {"id": 466}, "assignee": {"id": 537}, "organization": {"id": 688}, "project": {"owner": {"id": 729}, "assignee": {"id": 38}, "organization": {"id": 981}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 398, "owner": {"id": 419}, "assignee": {"id": 587}, "organization": {"id": 111}, "project": {"owner": {"id": 700}, "assignee": {"id": 45}, "organization": {"id": 958}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 98, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"id": 353, "owner": {"id": 455}, "assignee": {"id": 561}, "organization": {"id": 193}, "project": {"owner": {"id": 767}, "assignee": {"id": 98}, "organization": {"id": 949}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 44, "privilege": "admin"}, "organization": {"id": 102, "owner": {"id": 243}, "user": {"role": "worker"}}}, "resource": {"id": 368, "owner": {"id": 429}, "assignee": {"id": 574}, "organization": {"id": 618}, "project": {"owner": {"id": 716}, "assignee": {"id": 44}, "organization": {"id": 976}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 129, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"id": 393, "owner": {"id": 492}, "assignee": {"id": 580}, "organization": {"id": 648}, "project": {"owner": {"id": 710}, "assignee": {"id": 1}, "organization": {"id": 987}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 43, "privilege": "admin"}, "organization": {"id": 144, "owner": {"id": 221}, "user": {"role": null}}}, "resource": {"id": 392, "owner": {"id": 447}, "assignee": {"id": 540}, "organization": {"id": 144}, "project": {"owner": {"id": 703}, "assignee": {"id": 43}, "organization": {"id": 997}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 121, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 381, "owner": {"id": 482}, "assignee": {"id": 539}, "organization": {"id": 121}, "project": {"owner": {"id": 728}, "assignee": {"id": 29}, "organization": {"id": 948}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 15, "privilege": "admin"}, "organization": {"id": 131, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 338, "owner": {"id": 411}, "assignee": {"id": 551}, "organization": {"id": 698}, "project": {"owner": {"id": 764}, "assignee": {"id": 15}, "organization": {"id": 997}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 74, "privilege": "admin"}, "organization": {"id": 112, "owner": {"id": 227}, "user": {"role": null}}}, "resource": {"id": 394, "owner": {"id": 466}, "assignee": {"id": 534}, "organization": {"id": 613}, "project": {"owner": {"id": 712}, "assignee": {"id": 74}, "organization": {"id": 921}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 382, "owner": {"id": 429}, "assignee": {"id": 586}, "organization": {"id": 102}, "project": {"owner": {"id": 789}, "assignee": {"id": 67}, "organization": {"id": 991}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 61, "privilege": "business"}, "organization": {"id": 119, "owner": {"id": 61}, "user": {"role": "owner"}}}, "resource": {"id": 379, "owner": {"id": 472}, "assignee": {"id": 501}, "organization": {"id": 119}, "project": {"owner": {"id": 706}, "assignee": {"id": 61}, "organization": {"id": 994}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 140, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 473}, "assignee": {"id": 533}, "organization": {"id": 623}, "project": {"owner": {"id": 793}, "assignee": {"id": 94}, "organization": {"id": 920}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 10}, "user": {"role": "owner"}}}, "resource": {"id": 304, "owner": {"id": 426}, "assignee": {"id": 506}, "organization": {"id": 603}, "project": {"owner": {"id": 799}, "assignee": {"id": 10}, "organization": {"id": 931}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 141, "owner": {"id": 240}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 439}, "assignee": {"id": 509}, "organization": {"id": 141}, "project": {"owner": {"id": 737}, "assignee": {"id": 72}, "organization": {"id": 954}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 79, "privilege": "business"}, "organization": {"id": 159, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"id": 376, "owner": {"id": 442}, "assignee": {"id": 537}, "organization": {"id": 159}, "project": {"owner": {"id": 764}, "assignee": {"id": 79}, "organization": {"id": 970}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 264}, "user": {"role": "maintainer"}}}, "resource": {"id": 359, "owner": {"id": 417}, "assignee": {"id": 573}, "organization": {"id": 681}, "project": {"owner": {"id": 793}, "assignee": {"id": 74}, "organization": {"id": 920}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 335, "owner": {"id": 462}, "assignee": {"id": 586}, "organization": {"id": 667}, "project": {"owner": {"id": 791}, "assignee": {"id": 55}, "organization": {"id": 929}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": {"id": 172, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"id": 301, "owner": {"id": 437}, "assignee": {"id": 567}, "organization": {"id": 172}, "project": {"owner": {"id": 757}, "assignee": {"id": 80}, "organization": {"id": 938}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 99, "privilege": "business"}, "organization": {"id": 113, "owner": {"id": 266}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 468}, "assignee": {"id": 522}, "organization": {"id": 113}, "project": {"owner": {"id": 797}, "assignee": {"id": 99}, "organization": {"id": 930}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 50, "privilege": "business"}, "organization": {"id": 194, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 380, "owner": {"id": 477}, "assignee": {"id": 518}, "organization": {"id": 632}, "project": {"owner": {"id": 725}, "assignee": {"id": 50}, "organization": {"id": 907}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 15, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 226}, "user": {"role": "supervisor"}}}, "resource": {"id": 398, "owner": {"id": 410}, "assignee": {"id": 578}, "organization": {"id": 621}, "project": {"owner": {"id": 701}, "assignee": {"id": 15}, "organization": {"id": 941}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 159, "owner": {"id": 256}, "user": {"role": "worker"}}}, "resource": {"id": 345, "owner": {"id": 495}, "assignee": {"id": 529}, "organization": {"id": 159}, "project": {"owner": {"id": 770}, "assignee": {"id": 13}, "organization": {"id": 905}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 277}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 444}, "assignee": {"id": 520}, "organization": {"id": 186}, "project": {"owner": {"id": 781}, "assignee": {"id": 29}, "organization": {"id": 916}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 24, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 201}, "user": {"role": "worker"}}}, "resource": {"id": 320, "owner": {"id": 429}, "assignee": {"id": 520}, "organization": {"id": 607}, "project": {"owner": {"id": 723}, "assignee": {"id": 24}, "organization": {"id": 993}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 49, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 359, "owner": {"id": 404}, "assignee": {"id": 586}, "organization": {"id": 689}, "project": {"owner": {"id": 720}, "assignee": {"id": 49}, "organization": {"id": 905}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 23, "privilege": "business"}, "organization": {"id": 157, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 345, "owner": {"id": 486}, "assignee": {"id": 528}, "organization": {"id": 157}, "project": {"owner": {"id": 741}, "assignee": {"id": 23}, "organization": {"id": 973}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 161, "owner": {"id": 240}, "user": {"role": null}}}, "resource": {"id": 362, "owner": {"id": 407}, "assignee": {"id": 514}, "organization": {"id": 161}, "project": {"owner": {"id": 727}, "assignee": {"id": 7}, "organization": {"id": 980}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 195, "owner": {"id": 251}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 452}, "assignee": {"id": 509}, "organization": {"id": 604}, "project": {"owner": {"id": 724}, "assignee": {"id": 8}, "organization": {"id": 993}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 139, "owner": {"id": 287}, "user": {"role": null}}}, "resource": {"id": 305, "owner": {"id": 421}, "assignee": {"id": 556}, "organization": {"id": 601}, "project": {"owner": {"id": 716}, "assignee": {"id": 72}, "organization": {"id": 944}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 332, "owner": {"id": 432}, "assignee": {"id": 537}, "organization": {"id": 179}, "project": {"owner": {"id": 702}, "assignee": {"id": 96}, "organization": {"id": 913}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 53, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 53}, "user": {"role": "owner"}}}, "resource": {"id": 374, "owner": {"id": 472}, "assignee": {"id": 559}, "organization": {"id": 176}, "project": {"owner": {"id": 705}, "assignee": {"id": 53}, "organization": {"id": 914}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 176, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"id": 361, "owner": {"id": 432}, "assignee": {"id": 521}, "organization": {"id": 609}, "project": {"owner": {"id": 787}, "assignee": {"id": 16}, "organization": {"id": 909}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 378, "owner": {"id": 443}, "assignee": {"id": 556}, "organization": {"id": 653}, "project": {"owner": {"id": 756}, "assignee": {"id": 24}, "organization": {"id": 924}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 97, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 294}, "user": {"role": "maintainer"}}}, "resource": {"id": 373, "owner": {"id": 496}, "assignee": {"id": 585}, "organization": {"id": 102}, "project": {"owner": {"id": 791}, "assignee": {"id": 97}, "organization": {"id": 919}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 52, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"id": 375, "owner": {"id": 410}, "assignee": {"id": 585}, "organization": {"id": 116}, "project": {"owner": {"id": 750}, "assignee": {"id": 52}, "organization": {"id": 957}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 63, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"id": 388, "owner": {"id": 465}, "assignee": {"id": 546}, "organization": {"id": 675}, "project": {"owner": {"id": 755}, "assignee": {"id": 63}, "organization": {"id": 961}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 69, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"id": 347, "owner": {"id": 416}, "assignee": {"id": 547}, "organization": {"id": 605}, "project": {"owner": {"id": 763}, "assignee": {"id": 69}, "organization": {"id": 923}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 60, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 312, "owner": {"id": 449}, "assignee": {"id": 536}, "organization": {"id": 109}, "project": {"owner": {"id": 719}, "assignee": {"id": 60}, "organization": {"id": 979}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 88, "privilege": "user"}, "organization": {"id": 126, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 480}, "assignee": {"id": 536}, "organization": {"id": 126}, "project": {"owner": {"id": 761}, "assignee": {"id": 88}, "organization": {"id": 925}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"id": 392, "owner": {"id": 408}, "assignee": {"id": 582}, "organization": {"id": 606}, "project": {"owner": {"id": 714}, "assignee": {"id": 27}, "organization": {"id": 918}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 140, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 334, "owner": {"id": 442}, "assignee": {"id": 573}, "organization": {"id": 670}, "project": {"owner": {"id": 718}, "assignee": {"id": 40}, "organization": {"id": 903}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 309, "owner": {"id": 471}, "assignee": {"id": 528}, "organization": {"id": 117}, "project": {"owner": {"id": 735}, "assignee": {"id": 67}, "organization": {"id": 997}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 223}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 422}, "assignee": {"id": 552}, "organization": {"id": 116}, "project": {"owner": {"id": 710}, "assignee": {"id": 87}, "organization": {"id": 994}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 102, "owner": {"id": 259}, "user": {"role": "worker"}}}, "resource": {"id": 331, "owner": {"id": 453}, "assignee": {"id": 520}, "organization": {"id": 659}, "project": {"owner": {"id": 712}, "assignee": {"id": 56}, "organization": {"id": 915}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 91, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 294}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 478}, "assignee": {"id": 556}, "organization": {"id": 615}, "project": {"owner": {"id": 738}, "assignee": {"id": 91}, "organization": {"id": 964}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 54, "privilege": "user"}, "organization": {"id": 170, "owner": {"id": 274}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 446}, "assignee": {"id": 584}, "organization": {"id": 170}, "project": {"owner": {"id": 781}, "assignee": {"id": 54}, "organization": {"id": 985}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 38, "privilege": "user"}, "organization": {"id": 115, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 379, "owner": {"id": 409}, "assignee": {"id": 532}, "organization": {"id": 115}, "project": {"owner": {"id": 792}, "assignee": {"id": 38}, "organization": {"id": 937}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 83, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 233}, "user": {"role": null}}}, "resource": {"id": 321, "owner": {"id": 403}, "assignee": {"id": 549}, "organization": {"id": 688}, "project": {"owner": {"id": 716}, "assignee": {"id": 83}, "organization": {"id": 919}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 24, "privilege": "user"}, "organization": {"id": 121, "owner": {"id": 254}, "user": {"role": null}}}, "resource": {"id": 328, "owner": {"id": 469}, "assignee": {"id": 581}, "organization": {"id": 667}, "project": {"owner": {"id": 788}, "assignee": {"id": 24}, "organization": {"id": 999}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 88, "privilege": "worker"}, "organization": {"id": 107, "owner": {"id": 88}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 464}, "assignee": {"id": 509}, "organization": {"id": 107}, "project": {"owner": {"id": 771}, "assignee": {"id": 88}, "organization": {"id": 950}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 42, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 42}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 479}, "assignee": {"id": 566}, "organization": {"id": 187}, "project": {"owner": {"id": 750}, "assignee": {"id": 42}, "organization": {"id": 945}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 32, "privilege": "worker"}, "organization": {"id": 120, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 333, "owner": {"id": 401}, "assignee": {"id": 515}, "organization": {"id": 691}, "project": {"owner": {"id": 703}, "assignee": {"id": 32}, "organization": {"id": 919}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"id": 357, "owner": {"id": 491}, "assignee": {"id": 544}, "organization": {"id": 687}, "project": {"owner": {"id": 759}, "assignee": {"id": 94}, "organization": {"id": 935}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 9, "privilege": "worker"}, "organization": {"id": 141, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 367, "owner": {"id": 482}, "assignee": {"id": 559}, "organization": {"id": 141}, "project": {"owner": {"id": 740}, "assignee": {"id": 9}, "organization": {"id": 967}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 480}, "assignee": {"id": 557}, "organization": {"id": 119}, "project": {"owner": {"id": 729}, "assignee": {"id": 23}, "organization": {"id": 975}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 68, "privilege": "worker"}, "organization": {"id": 101, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"id": 383, "owner": {"id": 418}, "assignee": {"id": 512}, "organization": {"id": 694}, "project": {"owner": {"id": 752}, "assignee": {"id": 68}, "organization": {"id": 930}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 250}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 477}, "assignee": {"id": 581}, "organization": {"id": 659}, "project": {"owner": {"id": 748}, "assignee": {"id": 64}, "organization": {"id": 938}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 237}, "user": {"role": "supervisor"}}}, "resource": {"id": 351, "owner": {"id": 430}, "assignee": {"id": 552}, "organization": {"id": 166}, "project": {"owner": {"id": 788}, "assignee": {"id": 27}, "organization": {"id": 968}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 64, "privilege": "worker"}, "organization": {"id": 145, "owner": {"id": 238}, "user": {"role": "supervisor"}}}, "resource": {"id": 330, "owner": {"id": 486}, "assignee": {"id": 566}, "organization": {"id": 145}, "project": {"owner": {"id": 772}, "assignee": {"id": 64}, "organization": {"id": 944}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 108, "owner": {"id": 230}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 479}, "assignee": {"id": 560}, "organization": {"id": 633}, "project": {"owner": {"id": 741}, "assignee": {"id": 22}, "organization": {"id": 906}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 134, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"id": 363, "owner": {"id": 405}, "assignee": {"id": 564}, "organization": {"id": 677}, "project": {"owner": {"id": 754}, "assignee": {"id": 93}, "organization": {"id": 972}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 15, "privilege": "worker"}, "organization": {"id": 153, "owner": {"id": 231}, "user": {"role": "worker"}}}, "resource": {"id": 354, "owner": {"id": 405}, "assignee": {"id": 558}, "organization": {"id": 153}, "project": {"owner": {"id": 791}, "assignee": {"id": 15}, "organization": {"id": 903}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 194, "owner": {"id": 216}, "user": {"role": "worker"}}}, "resource": {"id": 365, "owner": {"id": 490}, "assignee": {"id": 554}, "organization": {"id": 194}, "project": {"owner": {"id": 775}, "assignee": {"id": 50}, "organization": {"id": 917}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 4, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 235}, "user": {"role": "worker"}}}, "resource": {"id": 372, "owner": {"id": 433}, "assignee": {"id": 526}, "organization": {"id": 651}, "project": {"owner": {"id": 792}, "assignee": {"id": 4}, "organization": {"id": 962}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 26, "privilege": "worker"}, "organization": {"id": 155, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 415}, "assignee": {"id": 583}, "organization": {"id": 697}, "project": {"owner": {"id": 744}, "assignee": {"id": 26}, "organization": {"id": 997}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 318, "owner": {"id": 452}, "assignee": {"id": 535}, "organization": {"id": 198}, "project": {"owner": {"id": 743}, "assignee": {"id": 20}, "organization": {"id": 902}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 23, "privilege": "worker"}, "organization": {"id": 144, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 429}, "assignee": {"id": 539}, "organization": {"id": 144}, "project": {"owner": {"id": 748}, "assignee": {"id": 23}, "organization": {"id": 988}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 152, "owner": {"id": 200}, "user": {"role": null}}}, "resource": {"id": 396, "owner": {"id": 465}, "assignee": {"id": 550}, "organization": {"id": 633}, "project": {"owner": {"id": 782}, "assignee": {"id": 22}, "organization": {"id": 924}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 308, "owner": {"id": 415}, "assignee": {"id": 566}, "organization": {"id": 624}, "project": {"owner": {"id": 762}, "assignee": {"id": 73}, "organization": {"id": 956}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 33, "privilege": "none"}, "organization": {"id": 100, "owner": {"id": 33}, "user": {"role": "owner"}}}, "resource": {"id": 369, "owner": {"id": 436}, "assignee": {"id": 590}, "organization": {"id": 100}, "project": {"owner": {"id": 794}, "assignee": {"id": 33}, "organization": {"id": 962}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 143, "owner": {"id": 29}, "user": {"role": "owner"}}}, "resource": {"id": 387, "owner": {"id": 439}, "assignee": {"id": 501}, "organization": {"id": 143}, "project": {"owner": {"id": 779}, "assignee": {"id": 29}, "organization": {"id": 958}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 76}, "user": {"role": "owner"}}}, "resource": {"id": 317, "owner": {"id": 458}, "assignee": {"id": 576}, "organization": {"id": 651}, "project": {"owner": {"id": 759}, "assignee": {"id": 76}, "organization": {"id": 970}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 30, "privilege": "none"}, "organization": {"id": 161, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 391, "owner": {"id": 427}, "assignee": {"id": 557}, "organization": {"id": 699}, "project": {"owner": {"id": 782}, "assignee": {"id": 30}, "organization": {"id": 932}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 98, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 230}, "user": {"role": "maintainer"}}}, "resource": {"id": 378, "owner": {"id": 488}, "assignee": {"id": 532}, "organization": {"id": 119}, "project": {"owner": {"id": 786}, "assignee": {"id": 98}, "organization": {"id": 948}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 21, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 204}, "user": {"role": "maintainer"}}}, "resource": {"id": 322, "owner": {"id": 452}, "assignee": {"id": 593}, "organization": {"id": 119}, "project": {"owner": {"id": 746}, "assignee": {"id": 21}, "organization": {"id": 958}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 23, "privilege": "none"}, "organization": {"id": 138, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 310, "owner": {"id": 444}, "assignee": {"id": 590}, "organization": {"id": 694}, "project": {"owner": {"id": 743}, "assignee": {"id": 23}, "organization": {"id": 973}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 165, "owner": {"id": 210}, "user": {"role": "maintainer"}}}, "resource": {"id": 337, "owner": {"id": 431}, "assignee": {"id": 596}, "organization": {"id": 652}, "project": {"owner": {"id": 713}, "assignee": {"id": 73}, "organization": {"id": 955}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 70, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 292}, "user": {"role": "supervisor"}}}, "resource": {"id": 333, "owner": {"id": 460}, "assignee": {"id": 533}, "organization": {"id": 137}, "project": {"owner": {"id": 713}, "assignee": {"id": 70}, "organization": {"id": 976}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 290}, "user": {"role": "supervisor"}}}, "resource": {"id": 310, "owner": {"id": 419}, "assignee": {"id": 597}, "organization": {"id": 123}, "project": {"owner": {"id": 791}, "assignee": {"id": 32}, "organization": {"id": 993}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 121, "owner": {"id": 286}, "user": {"role": "supervisor"}}}, "resource": {"id": 334, "owner": {"id": 434}, "assignee": {"id": 587}, "organization": {"id": 684}, "project": {"owner": {"id": 715}, "assignee": {"id": 97}, "organization": {"id": 917}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 306, "owner": {"id": 429}, "assignee": {"id": 541}, "organization": {"id": 605}, "project": {"owner": {"id": 787}, "assignee": {"id": 97}, "organization": {"id": 925}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 199, "owner": {"id": 261}, "user": {"role": "worker"}}}, "resource": {"id": 353, "owner": {"id": 458}, "assignee": {"id": 583}, "organization": {"id": 199}, "project": {"owner": {"id": 765}, "assignee": {"id": 54}, "organization": {"id": 998}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 85, "privilege": "none"}, "organization": {"id": 125, "owner": {"id": 205}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 435}, "assignee": {"id": 535}, "organization": {"id": 125}, "project": {"owner": {"id": 728}, "assignee": {"id": 85}, "organization": {"id": 971}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 29, "privilege": "none"}, "organization": {"id": 120, "owner": {"id": 288}, "user": {"role": "worker"}}}, "resource": {"id": 325, "owner": {"id": 463}, "assignee": {"id": 522}, "organization": {"id": 603}, "project": {"owner": {"id": 749}, "assignee": {"id": 29}, "organization": {"id": 988}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 62, "privilege": "none"}, "organization": {"id": 189, "owner": {"id": 239}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 416}, "assignee": {"id": 533}, "organization": {"id": 650}, "project": {"owner": {"id": 765}, "assignee": {"id": 62}, "organization": {"id": 916}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 18, "privilege": "none"}, "organization": {"id": 107, "owner": {"id": 273}, "user": {"role": null}}}, "resource": {"id": 385, "owner": {"id": 459}, "assignee": {"id": 581}, "organization": {"id": 107}, "project": {"owner": {"id": 774}, "assignee": {"id": 18}, "organization": {"id": 915}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 224}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 403}, "assignee": {"id": 584}, "organization": {"id": 112}, "project": {"owner": {"id": 784}, "assignee": {"id": 67}, "organization": {"id": 945}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 38, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 204}, "user": {"role": null}}}, "resource": {"id": 332, "owner": {"id": 403}, "assignee": {"id": 505}, "organization": {"id": 671}, "project": {"owner": {"id": 758}, "assignee": {"id": 38}, "organization": {"id": 954}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_PROJECT_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 49, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 295}, "user": {"role": null}}}, "resource": {"id": 382, "owner": {"id": 428}, "assignee": {"id": 514}, "organization": {"id": 647}, "project": {"owner": {"id": 799}, "assignee": {"id": 49}, "organization": {"id": 957}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 78, "privilege": "admin"}, "organization": {"id": 126, "owner": {"id": 78}, "user": {"role": "owner"}}}, "resource": {"id": 337, "owner": {"id": 78}, "assignee": {"id": 596}, "organization": {"id": 126}, "project": {"owner": {"id": 761}, "assignee": {"id": 872}, "organization": {"id": 910}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 1, "privilege": "admin"}, "organization": {"id": 189, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"id": 327, "owner": {"id": 1}, "assignee": {"id": 552}, "organization": {"id": 189}, "project": {"owner": {"id": 775}, "assignee": {"id": 886}, "organization": {"id": 948}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 11, "privilege": "admin"}, "organization": {"id": 107, "owner": {"id": 11}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 11}, "assignee": {"id": 553}, "organization": {"id": 633}, "project": {"owner": {"id": 743}, "assignee": {"id": 890}, "organization": {"id": 917}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 30, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 30}, "user": {"role": "owner"}}}, "resource": {"id": 371, "owner": {"id": 30}, "assignee": {"id": 567}, "organization": {"id": 674}, "project": {"owner": {"id": 797}, "assignee": {"id": 863}, "organization": {"id": 926}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 135, "owner": {"id": 278}, "user": {"role": "maintainer"}}}, "resource": {"id": 312, "owner": {"id": 79}, "assignee": {"id": 543}, "organization": {"id": 135}, "project": {"owner": {"id": 717}, "assignee": {"id": 899}, "organization": {"id": 939}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 23, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 235}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 23}, "assignee": {"id": 512}, "organization": {"id": 115}, "project": {"owner": {"id": 793}, "assignee": {"id": 866}, "organization": {"id": 953}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 2, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 281}, "user": {"role": "maintainer"}}}, "resource": {"id": 368, "owner": {"id": 2}, "assignee": {"id": 586}, "organization": {"id": 607}, "project": {"owner": {"id": 742}, "assignee": {"id": 868}, "organization": {"id": 993}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 268}, "user": {"role": "maintainer"}}}, "resource": {"id": 380, "owner": {"id": 14}, "assignee": {"id": 581}, "organization": {"id": 622}, "project": {"owner": {"id": 734}, "assignee": {"id": 806}, "organization": {"id": 956}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 84, "privilege": "admin"}, "organization": {"id": 103, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 318, "owner": {"id": 84}, "assignee": {"id": 519}, "organization": {"id": 103}, "project": {"owner": {"id": 742}, "assignee": {"id": 824}, "organization": {"id": 965}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"id": 338, "owner": {"id": 17}, "assignee": {"id": 586}, "organization": {"id": 147}, "project": {"owner": {"id": 757}, "assignee": {"id": 849}, "organization": {"id": 954}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 77, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 77}, "assignee": {"id": 508}, "organization": {"id": 645}, "project": {"owner": {"id": 775}, "assignee": {"id": 896}, "organization": {"id": 985}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 156, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"id": 385, "owner": {"id": 27}, "assignee": {"id": 525}, "organization": {"id": 665}, "project": {"owner": {"id": 704}, "assignee": {"id": 866}, "organization": {"id": 984}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 53, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 257}, "user": {"role": "worker"}}}, "resource": {"id": 376, "owner": {"id": 53}, "assignee": {"id": 561}, "organization": {"id": 179}, "project": {"owner": {"id": 734}, "assignee": {"id": 849}, "organization": {"id": 968}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 194, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 17}, "assignee": {"id": 543}, "organization": {"id": 194}, "project": {"owner": {"id": 704}, "assignee": {"id": 866}, "organization": {"id": 918}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 51, "privilege": "admin"}, "organization": {"id": 132, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 301, "owner": {"id": 51}, "assignee": {"id": 509}, "organization": {"id": 694}, "project": {"owner": {"id": 739}, "assignee": {"id": 835}, "organization": {"id": 931}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 31, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"id": 380, "owner": {"id": 31}, "assignee": {"id": 527}, "organization": {"id": 626}, "project": {"owner": {"id": 749}, "assignee": {"id": 859}, "organization": {"id": 962}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 50, "privilege": "admin"}, "organization": {"id": 111, "owner": {"id": 249}, "user": {"role": null}}}, "resource": {"id": 341, "owner": {"id": 50}, "assignee": {"id": 546}, "organization": {"id": 111}, "project": {"owner": {"id": 788}, "assignee": {"id": 810}, "organization": {"id": 907}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 91, "privilege": "admin"}, "organization": {"id": 186, "owner": {"id": 230}, "user": {"role": null}}}, "resource": {"id": 346, "owner": {"id": 91}, "assignee": {"id": 584}, "organization": {"id": 186}, "project": {"owner": {"id": 755}, "assignee": {"id": 833}, "organization": {"id": 927}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 88, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 273}, "user": {"role": null}}}, "resource": {"id": 339, "owner": {"id": 88}, "assignee": {"id": 576}, "organization": {"id": 629}, "project": {"owner": {"id": 785}, "assignee": {"id": 876}, "organization": {"id": 913}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 118, "owner": {"id": 272}, "user": {"role": null}}}, "resource": {"id": 302, "owner": {"id": 17}, "assignee": {"id": 584}, "organization": {"id": 601}, "project": {"owner": {"id": 732}, "assignee": {"id": 886}, "organization": {"id": 975}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 72}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 72}, "assignee": {"id": 598}, "organization": {"id": 184}, "project": {"owner": {"id": 792}, "assignee": {"id": 868}, "organization": {"id": 926}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 160, "owner": {"id": 41}, "user": {"role": "owner"}}}, "resource": {"id": 329, "owner": {"id": 41}, "assignee": {"id": 504}, "organization": {"id": 160}, "project": {"owner": {"id": 758}, "assignee": {"id": 813}, "organization": {"id": 933}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 77, "privilege": "business"}, "organization": {"id": 177, "owner": {"id": 77}, "user": {"role": "owner"}}}, "resource": {"id": 322, "owner": {"id": 77}, "assignee": {"id": 511}, "organization": {"id": 638}, "project": {"owner": {"id": 795}, "assignee": {"id": 863}, "organization": {"id": 919}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 13, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 391, "owner": {"id": 13}, "assignee": {"id": 596}, "organization": {"id": 676}, "project": {"owner": {"id": 789}, "assignee": {"id": 855}, "organization": {"id": 960}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 102, "owner": {"id": 223}, "user": {"role": "maintainer"}}}, "resource": {"id": 307, "owner": {"id": 74}, "assignee": {"id": 575}, "organization": {"id": 102}, "project": {"owner": {"id": 725}, "assignee": {"id": 829}, "organization": {"id": 926}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 54, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 358, "owner": {"id": 54}, "assignee": {"id": 586}, "organization": {"id": 107}, "project": {"owner": {"id": 769}, "assignee": {"id": 884}, "organization": {"id": 934}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 96, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"id": 330, "owner": {"id": 96}, "assignee": {"id": 557}, "organization": {"id": 661}, "project": {"owner": {"id": 779}, "assignee": {"id": 877}, "organization": {"id": 928}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 84, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 259}, "user": {"role": "maintainer"}}}, "resource": {"id": 334, "owner": {"id": 84}, "assignee": {"id": 543}, "organization": {"id": 613}, "project": {"owner": {"id": 757}, "assignee": {"id": 807}, "organization": {"id": 951}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 248}, "user": {"role": "supervisor"}}}, "resource": {"id": 344, "owner": {"id": 6}, "assignee": {"id": 582}, "organization": {"id": 171}, "project": {"owner": {"id": 777}, "assignee": {"id": 864}, "organization": {"id": 994}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 7, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 256}, "user": {"role": "supervisor"}}}, "resource": {"id": 396, "owner": {"id": 7}, "assignee": {"id": 586}, "organization": {"id": 162}, "project": {"owner": {"id": 769}, "assignee": {"id": 892}, "organization": {"id": 912}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 85, "privilege": "business"}, "organization": {"id": 158, "owner": {"id": 216}, "user": {"role": "supervisor"}}}, "resource": {"id": 307, "owner": {"id": 85}, "assignee": {"id": 598}, "organization": {"id": 661}, "project": {"owner": {"id": 792}, "assignee": {"id": 872}, "organization": {"id": 976}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 52, "privilege": "business"}, "organization": {"id": 164, "owner": {"id": 204}, "user": {"role": "supervisor"}}}, "resource": {"id": 310, "owner": {"id": 52}, "assignee": {"id": 582}, "organization": {"id": 680}, "project": {"owner": {"id": 776}, "assignee": {"id": 832}, "organization": {"id": 941}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 127, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"id": 311, "owner": {"id": 90}, "assignee": {"id": 537}, "organization": {"id": 127}, "project": {"owner": {"id": 750}, "assignee": {"id": 851}, "organization": {"id": 997}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 168, "owner": {"id": 297}, "user": {"role": "worker"}}}, "resource": {"id": 347, "owner": {"id": 53}, "assignee": {"id": 589}, "organization": {"id": 168}, "project": {"owner": {"id": 717}, "assignee": {"id": 864}, "organization": {"id": 974}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 21, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 21}, "assignee": {"id": 515}, "organization": {"id": 655}, "project": {"owner": {"id": 761}, "assignee": {"id": 822}, "organization": {"id": 918}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 67, "privilege": "business"}, "organization": {"id": 151, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 310, "owner": {"id": 67}, "assignee": {"id": 563}, "organization": {"id": 610}, "project": {"owner": {"id": 771}, "assignee": {"id": 896}, "organization": {"id": 990}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 186, "owner": {"id": 254}, "user": {"role": null}}}, "resource": {"id": 317, "owner": {"id": 62}, "assignee": {"id": 564}, "organization": {"id": 186}, "project": {"owner": {"id": 787}, "assignee": {"id": 869}, "organization": {"id": 948}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": {"id": 182, "owner": {"id": 257}, "user": {"role": null}}}, "resource": {"id": 312, "owner": {"id": 80}, "assignee": {"id": 559}, "organization": {"id": 182}, "project": {"owner": {"id": 702}, "assignee": {"id": 881}, "organization": {"id": 906}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 89, "privilege": "business"}, "organization": {"id": 179, "owner": {"id": 209}, "user": {"role": null}}}, "resource": {"id": 326, "owner": {"id": 89}, "assignee": {"id": 517}, "organization": {"id": 683}, "project": {"owner": {"id": 715}, "assignee": {"id": 810}, "organization": {"id": 973}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 34, "privilege": "business"}, "organization": {"id": 100, "owner": {"id": 249}, "user": {"role": null}}}, "resource": {"id": 336, "owner": {"id": 34}, "assignee": {"id": 526}, "organization": {"id": 682}, "project": {"owner": {"id": 798}, "assignee": {"id": 828}, "organization": {"id": 909}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 139, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"id": 302, "owner": {"id": 5}, "assignee": {"id": 550}, "organization": {"id": 139}, "project": {"owner": {"id": 740}, "assignee": {"id": 872}, "organization": {"id": 986}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 10, "privilege": "user"}, "organization": {"id": 116, "owner": {"id": 10}, "user": {"role": "owner"}}}, "resource": {"id": 399, "owner": {"id": 10}, "assignee": {"id": 543}, "organization": {"id": 116}, "project": {"owner": {"id": 753}, "assignee": {"id": 825}, "organization": {"id": 917}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 22, "privilege": "user"}, "organization": {"id": 112, "owner": {"id": 22}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 22}, "assignee": {"id": 567}, "organization": {"id": 636}, "project": {"owner": {"id": 799}, "assignee": {"id": 855}, "organization": {"id": 955}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 21, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 21}, "user": {"role": "owner"}}}, "resource": {"id": 334, "owner": {"id": 21}, "assignee": {"id": 540}, "organization": {"id": 691}, "project": {"owner": {"id": 707}, "assignee": {"id": 853}, "organization": {"id": 923}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 11, "privilege": "user"}, "organization": {"id": 160, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"id": 363, "owner": {"id": 11}, "assignee": {"id": 562}, "organization": {"id": 160}, "project": {"owner": {"id": 747}, "assignee": {"id": 893}, "organization": {"id": 986}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 4, "privilege": "user"}, "organization": {"id": 152, "owner": {"id": 291}, "user": {"role": "maintainer"}}}, "resource": {"id": 310, "owner": {"id": 4}, "assignee": {"id": 598}, "organization": {"id": 152}, "project": {"owner": {"id": 713}, "assignee": {"id": 846}, "organization": {"id": 987}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 117, "owner": {"id": 249}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 2}, "assignee": {"id": 504}, "organization": {"id": 620}, "project": {"owner": {"id": 766}, "assignee": {"id": 887}, "organization": {"id": 997}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 44, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 252}, "user": {"role": "maintainer"}}}, "resource": {"id": 356, "owner": {"id": 44}, "assignee": {"id": 504}, "organization": {"id": 612}, "project": {"owner": {"id": 778}, "assignee": {"id": 830}, "organization": {"id": 947}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 272}, "user": {"role": "supervisor"}}}, "resource": {"id": 379, "owner": {"id": 27}, "assignee": {"id": 552}, "organization": {"id": 179}, "project": {"owner": {"id": 728}, "assignee": {"id": 804}, "organization": {"id": 950}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 81, "privilege": "user"}, "organization": {"id": 163, "owner": {"id": 250}, "user": {"role": "supervisor"}}}, "resource": {"id": 327, "owner": {"id": 81}, "assignee": {"id": 518}, "organization": {"id": 163}, "project": {"owner": {"id": 784}, "assignee": {"id": 854}, "organization": {"id": 957}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 71, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 381, "owner": {"id": 71}, "assignee": {"id": 542}, "organization": {"id": 616}, "project": {"owner": {"id": 738}, "assignee": {"id": 896}, "organization": {"id": 964}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 17, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 333, "owner": {"id": 17}, "assignee": {"id": 525}, "organization": {"id": 656}, "project": {"owner": {"id": 716}, "assignee": {"id": 884}, "organization": {"id": 936}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 40, "privilege": "user"}, "organization": {"id": 144, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"id": 395, "owner": {"id": 40}, "assignee": {"id": 597}, "organization": {"id": 144}, "project": {"owner": {"id": 728}, "assignee": {"id": 859}, "organization": {"id": 921}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 312, "owner": {"id": 65}, "assignee": {"id": 570}, "organization": {"id": 179}, "project": {"owner": {"id": 777}, "assignee": {"id": 803}, "organization": {"id": 939}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 85, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"id": 391, "owner": {"id": 85}, "assignee": {"id": 528}, "organization": {"id": 699}, "project": {"owner": {"id": 745}, "assignee": {"id": 848}, "organization": {"id": 944}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 2, "privilege": "user"}, "organization": {"id": 198, "owner": {"id": 263}, "user": {"role": "worker"}}}, "resource": {"id": 318, "owner": {"id": 2}, "assignee": {"id": 570}, "organization": {"id": 616}, "project": {"owner": {"id": 776}, "assignee": {"id": 865}, "organization": {"id": 976}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 159, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 394, "owner": {"id": 35}, "assignee": {"id": 525}, "organization": {"id": 159}, "project": {"owner": {"id": 779}, "assignee": {"id": 836}, "organization": {"id": 973}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 29, "privilege": "user"}, "organization": {"id": 177, "owner": {"id": 282}, "user": {"role": null}}}, "resource": {"id": 371, "owner": {"id": 29}, "assignee": {"id": 592}, "organization": {"id": 177}, "project": {"owner": {"id": 730}, "assignee": {"id": 865}, "organization": {"id": 975}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 84, "privilege": "user"}, "organization": {"id": 154, "owner": {"id": 249}, "user": {"role": null}}}, "resource": {"id": 314, "owner": {"id": 84}, "assignee": {"id": 569}, "organization": {"id": 623}, "project": {"owner": {"id": 735}, "assignee": {"id": 805}, "organization": {"id": 914}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 135, "owner": {"id": 224}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 73}, "assignee": {"id": 541}, "organization": {"id": 626}, "project": {"owner": {"id": 700}, "assignee": {"id": 857}, "organization": {"id": 912}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 91}, "user": {"role": "owner"}}}, "resource": {"id": 335, "owner": {"id": 91}, "assignee": {"id": 551}, "organization": {"id": 142}, "project": {"owner": {"id": 746}, "assignee": {"id": 895}, "organization": {"id": 957}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 136, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 334, "owner": {"id": 24}, "assignee": {"id": 584}, "organization": {"id": 136}, "project": {"owner": {"id": 788}, "assignee": {"id": 869}, "organization": {"id": 947}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 303, "owner": {"id": 13}, "assignee": {"id": 551}, "organization": {"id": 690}, "project": {"owner": {"id": 707}, "assignee": {"id": 875}, "organization": {"id": 907}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 161, "owner": {"id": 13}, "user": {"role": "owner"}}}, "resource": {"id": 395, "owner": {"id": 13}, "assignee": {"id": 563}, "organization": {"id": 621}, "project": {"owner": {"id": 743}, "assignee": {"id": 882}, "organization": {"id": 904}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 126, "owner": {"id": 226}, "user": {"role": "maintainer"}}}, "resource": {"id": 331, "owner": {"id": 87}, "assignee": {"id": 531}, "organization": {"id": 126}, "project": {"owner": {"id": 709}, "assignee": {"id": 886}, "organization": {"id": 921}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 33, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 253}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 33}, "assignee": {"id": 517}, "organization": {"id": 114}, "project": {"owner": {"id": 788}, "assignee": {"id": 814}, "organization": {"id": 905}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 59, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 214}, "user": {"role": "maintainer"}}}, "resource": {"id": 360, "owner": {"id": 59}, "assignee": {"id": 583}, "organization": {"id": 617}, "project": {"owner": {"id": 722}, "assignee": {"id": 882}, "organization": {"id": 920}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 94, "privilege": "worker"}, "organization": {"id": 119, "owner": {"id": 251}, "user": {"role": "maintainer"}}}, "resource": {"id": 392, "owner": {"id": 94}, "assignee": {"id": 569}, "organization": {"id": 651}, "project": {"owner": {"id": 744}, "assignee": {"id": 852}, "organization": {"id": 918}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 43, "privilege": "worker"}, "organization": {"id": 143, "owner": {"id": 267}, "user": {"role": "supervisor"}}}, "resource": {"id": 377, "owner": {"id": 43}, "assignee": {"id": 562}, "organization": {"id": 143}, "project": {"owner": {"id": 788}, "assignee": {"id": 896}, "organization": {"id": 992}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 107, "owner": {"id": 225}, "user": {"role": "supervisor"}}}, "resource": {"id": 383, "owner": {"id": 38}, "assignee": {"id": 535}, "organization": {"id": 107}, "project": {"owner": {"id": 797}, "assignee": {"id": 800}, "organization": {"id": 974}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 99, "privilege": "worker"}, "organization": {"id": 163, "owner": {"id": 218}, "user": {"role": "supervisor"}}}, "resource": {"id": 346, "owner": {"id": 99}, "assignee": {"id": 552}, "organization": {"id": 634}, "project": {"owner": {"id": 777}, "assignee": {"id": 808}, "organization": {"id": 921}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 151, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 69}, "assignee": {"id": 560}, "organization": {"id": 692}, "project": {"owner": {"id": 784}, "assignee": {"id": 840}, "organization": {"id": 940}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 142, "owner": {"id": 278}, "user": {"role": "worker"}}}, "resource": {"id": 377, "owner": {"id": 11}, "assignee": {"id": 592}, "organization": {"id": 142}, "project": {"owner": {"id": 799}, "assignee": {"id": 894}, "organization": {"id": 943}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 74, "privilege": "worker"}, "organization": {"id": 132, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"id": 379, "owner": {"id": 74}, "assignee": {"id": 543}, "organization": {"id": 132}, "project": {"owner": {"id": 779}, "assignee": {"id": 806}, "organization": {"id": 990}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 82, "privilege": "worker"}, "organization": {"id": 111, "owner": {"id": 269}, "user": {"role": "worker"}}}, "resource": {"id": 360, "owner": {"id": 82}, "assignee": {"id": 555}, "organization": {"id": 655}, "project": {"owner": {"id": 729}, "assignee": {"id": 897}, "organization": {"id": 927}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 73, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 368, "owner": {"id": 73}, "assignee": {"id": 593}, "organization": {"id": 681}, "project": {"owner": {"id": 711}, "assignee": {"id": 837}, "organization": {"id": 972}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 87, "privilege": "worker"}, "organization": {"id": 198, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 317, "owner": {"id": 87}, "assignee": {"id": 592}, "organization": {"id": 198}, "project": {"owner": {"id": 739}, "assignee": {"id": 872}, "organization": {"id": 928}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 12, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 253}, "user": {"role": null}}}, "resource": {"id": 354, "owner": {"id": 12}, "assignee": {"id": 529}, "organization": {"id": 154}, "project": {"owner": {"id": 730}, "assignee": {"id": 821}, "organization": {"id": 969}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 17, "privilege": "worker"}, "organization": {"id": 175, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 330, "owner": {"id": 17}, "assignee": {"id": 582}, "organization": {"id": 653}, "project": {"owner": {"id": 764}, "assignee": {"id": 873}, "organization": {"id": 935}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 28, "privilege": "worker"}, "organization": {"id": 148, "owner": {"id": 247}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 28}, "assignee": {"id": 500}, "organization": {"id": 660}, "project": {"owner": {"id": 701}, "assignee": {"id": 892}, "organization": {"id": 949}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 99, "privilege": "none"}, "organization": {"id": 193, "owner": {"id": 99}, "user": {"role": "owner"}}}, "resource": {"id": 390, "owner": {"id": 99}, "assignee": {"id": 568}, "organization": {"id": 193}, "project": {"owner": {"id": 793}, "assignee": {"id": 816}, "organization": {"id": 974}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 64}, "user": {"role": "owner"}}}, "resource": {"id": 377, "owner": {"id": 64}, "assignee": {"id": 578}, "organization": {"id": 192}, "project": {"owner": {"id": 758}, "assignee": {"id": 811}, "organization": {"id": 993}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 25, "privilege": "none"}, "organization": {"id": 188, "owner": {"id": 25}, "user": {"role": "owner"}}}, "resource": {"id": 366, "owner": {"id": 25}, "assignee": {"id": 589}, "organization": {"id": 692}, "project": {"owner": {"id": 769}, "assignee": {"id": 814}, "organization": {"id": 903}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 47, "privilege": "none"}, "organization": {"id": 144, "owner": {"id": 47}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 47}, "assignee": {"id": 505}, "organization": {"id": 619}, "project": {"owner": {"id": 799}, "assignee": {"id": 827}, "organization": {"id": 958}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 76, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 231}, "user": {"role": "maintainer"}}}, "resource": {"id": 310, "owner": {"id": 76}, "assignee": {"id": 546}, "organization": {"id": 112}, "project": {"owner": {"id": 712}, "assignee": {"id": 897}, "organization": {"id": 979}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 147, "owner": {"id": 296}, "user": {"role": "maintainer"}}}, "resource": {"id": 398, "owner": {"id": 97}, "assignee": {"id": 535}, "organization": {"id": 147}, "project": {"owner": {"id": 702}, "assignee": {"id": 866}, "organization": {"id": 961}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 80, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"id": 397, "owner": {"id": 80}, "assignee": {"id": 577}, "organization": {"id": 687}, "project": {"owner": {"id": 729}, "assignee": {"id": 827}, "organization": {"id": 995}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 173, "owner": {"id": 280}, "user": {"role": "maintainer"}}}, "resource": {"id": 372, "owner": {"id": 54}, "assignee": {"id": 535}, "organization": {"id": 696}, "project": {"owner": {"id": 799}, "assignee": {"id": 829}, "organization": {"id": 919}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 61, "privilege": "none"}, "organization": {"id": 179, "owner": {"id": 275}, "user": {"role": "supervisor"}}}, "resource": {"id": 325, "owner": {"id": 61}, "assignee": {"id": 579}, "organization": {"id": 179}, "project": {"owner": {"id": 760}, "assignee": {"id": 848}, "organization": {"id": 948}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 247}, "user": {"role": "supervisor"}}}, "resource": {"id": 338, "owner": {"id": 54}, "assignee": {"id": 525}, "organization": {"id": 148}, "project": {"owner": {"id": 773}, "assignee": {"id": 871}, "organization": {"id": 933}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 54, "privilege": "none"}, "organization": {"id": 136, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 326, "owner": {"id": 54}, "assignee": {"id": 541}, "organization": {"id": 651}, "project": {"owner": {"id": 702}, "assignee": {"id": 811}, "organization": {"id": 995}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 196, "owner": {"id": 288}, "user": {"role": "supervisor"}}}, "resource": {"id": 398, "owner": {"id": 17}, "assignee": {"id": 536}, "organization": {"id": 613}, "project": {"owner": {"id": 745}, "assignee": {"id": 878}, "organization": {"id": 931}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 132, "owner": {"id": 249}, "user": {"role": "worker"}}}, "resource": {"id": 325, "owner": {"id": 14}, "assignee": {"id": 509}, "organization": {"id": 132}, "project": {"owner": {"id": 789}, "assignee": {"id": 821}, "organization": {"id": 920}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 93, "privilege": "none"}, "organization": {"id": 128, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"id": 343, "owner": {"id": 93}, "assignee": {"id": 543}, "organization": {"id": 128}, "project": {"owner": {"id": 725}, "assignee": {"id": 897}, "organization": {"id": 932}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"id": 306, "owner": {"id": 67}, "assignee": {"id": 563}, "organization": {"id": 608}, "project": {"owner": {"id": 779}, "assignee": {"id": 895}, "organization": {"id": 978}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"id": 358, "owner": {"id": 9}, "assignee": {"id": 558}, "organization": {"id": 631}, "project": {"owner": {"id": 729}, "assignee": {"id": 839}, "organization": {"id": 998}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 14, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 273}, "user": {"role": null}}}, "resource": {"id": 383, "owner": {"id": 14}, "assignee": {"id": 583}, "organization": {"id": 155}, "project": {"owner": {"id": 749}, "assignee": {"id": 849}, "organization": {"id": 930}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 5, "privilege": "none"}, "organization": {"id": 110, "owner": {"id": 234}, "user": {"role": null}}}, "resource": {"id": 372, "owner": {"id": 5}, "assignee": {"id": 580}, "organization": {"id": 110}, "project": {"owner": {"id": 795}, "assignee": {"id": 879}, "organization": {"id": 989}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 52, "privilege": "none"}, "organization": {"id": 105, "owner": {"id": 288}, "user": {"role": null}}}, "resource": {"id": 301, "owner": {"id": 52}, "assignee": {"id": 516}, "organization": {"id": 606}, "project": {"owner": {"id": 729}, "assignee": {"id": 830}, "organization": {"id": 994}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_OWNER_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 158, "owner": {"id": 281}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 17}, "assignee": {"id": 520}, "organization": {"id": 685}, "project": {"owner": {"id": 731}, "assignee": {"id": 834}, "organization": {"id": 965}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 24, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 24}, "user": {"role": "owner"}}}, "resource": {"id": 360, "owner": {"id": 468}, "assignee": {"id": 24}, "organization": {"id": 134}, "project": {"owner": {"id": 705}, "assignee": {"id": 893}, "organization": {"id": 940}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 94, "privilege": "admin"}, "organization": {"id": 177, "owner": {"id": 94}, "user": {"role": "owner"}}}, "resource": {"id": 370, "owner": {"id": 412}, "assignee": {"id": 94}, "organization": {"id": 177}, "project": {"owner": {"id": 775}, "assignee": {"id": 834}, "organization": {"id": 983}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": {"id": 180, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 333, "owner": {"id": 445}, "assignee": {"id": 62}, "organization": {"id": 649}, "project": {"owner": {"id": 777}, "assignee": {"id": 830}, "organization": {"id": 927}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 67, "privilege": "admin"}, "organization": {"id": 148, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 379, "owner": {"id": 495}, "assignee": {"id": 67}, "organization": {"id": 676}, "project": {"owner": {"id": 742}, "assignee": {"id": 805}, "organization": {"id": 964}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 95, "privilege": "admin"}, "organization": {"id": 134, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"id": 339, "owner": {"id": 404}, "assignee": {"id": 95}, "organization": {"id": 134}, "project": {"owner": {"id": 704}, "assignee": {"id": 858}, "organization": {"id": 947}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 178, "owner": {"id": 295}, "user": {"role": "maintainer"}}}, "resource": {"id": 382, "owner": {"id": 464}, "assignee": {"id": 58}, "organization": {"id": 178}, "project": {"owner": {"id": 769}, "assignee": {"id": 888}, "organization": {"id": 980}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 58, "privilege": "admin"}, "organization": {"id": 133, "owner": {"id": 285}, "user": {"role": "maintainer"}}}, "resource": {"id": 336, "owner": {"id": 439}, "assignee": {"id": 58}, "organization": {"id": 617}, "project": {"owner": {"id": 767}, "assignee": {"id": 804}, "organization": {"id": 936}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 39, "privilege": "admin"}, "organization": {"id": 155, "owner": {"id": 271}, "user": {"role": "maintainer"}}}, "resource": {"id": 395, "owner": {"id": 480}, "assignee": {"id": 39}, "organization": {"id": 623}, "project": {"owner": {"id": 783}, "assignee": {"id": 872}, "organization": {"id": 992}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 25, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 219}, "user": {"role": "supervisor"}}}, "resource": {"id": 379, "owner": {"id": 420}, "assignee": {"id": 25}, "organization": {"id": 167}, "project": {"owner": {"id": 790}, "assignee": {"id": 847}, "organization": {"id": 931}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 193, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 352, "owner": {"id": 466}, "assignee": {"id": 59}, "organization": {"id": 193}, "project": {"owner": {"id": 711}, "assignee": {"id": 842}, "organization": {"id": 953}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 32, "privilege": "admin"}, "organization": {"id": 199, "owner": {"id": 264}, "user": {"role": "supervisor"}}}, "resource": {"id": 369, "owner": {"id": 433}, "assignee": {"id": 32}, "organization": {"id": 679}, "project": {"owner": {"id": 757}, "assignee": {"id": 822}, "organization": {"id": 921}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 27, "privilege": "admin"}, "organization": {"id": 183, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"id": 361, "owner": {"id": 462}, "assignee": {"id": 27}, "organization": {"id": 647}, "project": {"owner": {"id": 799}, "assignee": {"id": 846}, "organization": {"id": 954}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"id": 351, "owner": {"id": 418}, "assignee": {"id": 47}, "organization": {"id": 152}, "project": {"owner": {"id": 722}, "assignee": {"id": 800}, "organization": {"id": 976}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 47, "privilege": "admin"}, "organization": {"id": 164, "owner": {"id": 247}, "user": {"role": "worker"}}}, "resource": {"id": 310, "owner": {"id": 434}, "assignee": {"id": 47}, "organization": {"id": 164}, "project": {"owner": {"id": 764}, "assignee": {"id": 806}, "organization": {"id": 918}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 16, "privilege": "admin"}, "organization": {"id": 179, "owner": {"id": 246}, "user": {"role": "worker"}}}, "resource": {"id": 386, "owner": {"id": 487}, "assignee": {"id": 16}, "organization": {"id": 660}, "project": {"owner": {"id": 700}, "assignee": {"id": 899}, "organization": {"id": 961}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 49, "privilege": "admin"}, "organization": {"id": 181, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 358, "owner": {"id": 417}, "assignee": {"id": 49}, "organization": {"id": 620}, "project": {"owner": {"id": 737}, "assignee": {"id": 838}, "organization": {"id": 950}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 235}, "user": {"role": null}}}, "resource": {"id": 327, "owner": {"id": 464}, "assignee": {"id": 48}, "organization": {"id": 124}, "project": {"owner": {"id": 794}, "assignee": {"id": 863}, "organization": {"id": 936}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 18, "privilege": "admin"}, "organization": {"id": 167, "owner": {"id": 207}, "user": {"role": null}}}, "resource": {"id": 355, "owner": {"id": 429}, "assignee": {"id": 18}, "organization": {"id": 167}, "project": {"owner": {"id": 798}, "assignee": {"id": 869}, "organization": {"id": 946}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 59, "privilege": "admin"}, "organization": {"id": 157, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 363, "owner": {"id": 456}, "assignee": {"id": 59}, "organization": {"id": 671}, "project": {"owner": {"id": 762}, "assignee": {"id": 866}, "organization": {"id": 935}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 12, "privilege": "admin"}, "organization": {"id": 189, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"id": 343, "owner": {"id": 442}, "assignee": {"id": 12}, "organization": {"id": 658}, "project": {"owner": {"id": 706}, "assignee": {"id": 894}, "organization": {"id": 973}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 6, "privilege": "business"}, "organization": {"id": 125, "owner": {"id": 6}, "user": {"role": "owner"}}}, "resource": {"id": 359, "owner": {"id": 433}, "assignee": {"id": 6}, "organization": {"id": 125}, "project": {"owner": {"id": 788}, "assignee": {"id": 863}, "organization": {"id": 920}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 55, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 55}, "user": {"role": "owner"}}}, "resource": {"id": 348, "owner": {"id": 495}, "assignee": {"id": 55}, "organization": {"id": 185}, "project": {"owner": {"id": 702}, "assignee": {"id": 856}, "organization": {"id": 926}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 127, "owner": {"id": 62}, "user": {"role": "owner"}}}, "resource": {"id": 327, "owner": {"id": 491}, "assignee": {"id": 62}, "organization": {"id": 635}, "project": {"owner": {"id": 730}, "assignee": {"id": 833}, "organization": {"id": 965}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 80, "privilege": "business"}, "organization": {"id": 142, "owner": {"id": 80}, "user": {"role": "owner"}}}, "resource": {"id": 310, "owner": {"id": 464}, "assignee": {"id": 80}, "organization": {"id": 653}, "project": {"owner": {"id": 753}, "assignee": {"id": 836}, "organization": {"id": 983}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 53, "privilege": "business"}, "organization": {"id": 184, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 350, "owner": {"id": 487}, "assignee": {"id": 53}, "organization": {"id": 184}, "project": {"owner": {"id": 735}, "assignee": {"id": 809}, "organization": {"id": 912}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 29, "privilege": "business"}, "organization": {"id": 115, "owner": {"id": 261}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 468}, "assignee": {"id": 29}, "organization": {"id": 115}, "project": {"owner": {"id": 758}, "assignee": {"id": 803}, "organization": {"id": 931}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 121, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"id": 332, "owner": {"id": 454}, "assignee": {"id": 41}, "organization": {"id": 622}, "project": {"owner": {"id": 730}, "assignee": {"id": 832}, "organization": {"id": 950}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 266}, "user": {"role": "maintainer"}}}, "resource": {"id": 352, "owner": {"id": 490}, "assignee": {"id": 57}, "organization": {"id": 641}, "project": {"owner": {"id": 740}, "assignee": {"id": 893}, "organization": {"id": 974}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 47, "privilege": "business"}, "organization": {"id": 109, "owner": {"id": 243}, "user": {"role": "supervisor"}}}, "resource": {"id": 365, "owner": {"id": 459}, "assignee": {"id": 47}, "organization": {"id": 109}, "project": {"owner": {"id": 774}, "assignee": {"id": 875}, "organization": {"id": 977}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 48, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 296}, "user": {"role": "supervisor"}}}, "resource": {"id": 320, "owner": {"id": 400}, "assignee": {"id": 48}, "organization": {"id": 162}, "project": {"owner": {"id": 767}, "assignee": {"id": 814}, "organization": {"id": 953}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 41, "privilege": "business"}, "organization": {"id": 185, "owner": {"id": 280}, "user": {"role": "supervisor"}}}, "resource": {"id": 341, "owner": {"id": 472}, "assignee": {"id": 41}, "organization": {"id": 625}, "project": {"owner": {"id": 729}, "assignee": {"id": 828}, "organization": {"id": 927}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 32, "privilege": "business"}, "organization": {"id": 101, "owner": {"id": 217}, "user": {"role": "supervisor"}}}, "resource": {"id": 386, "owner": {"id": 469}, "assignee": {"id": 32}, "organization": {"id": 621}, "project": {"owner": {"id": 743}, "assignee": {"id": 839}, "organization": {"id": 922}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 253}, "user": {"role": "worker"}}}, "resource": {"id": 301, "owner": {"id": 412}, "assignee": {"id": 39}, "organization": {"id": 132}, "project": {"owner": {"id": 724}, "assignee": {"id": 896}, "organization": {"id": 974}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 39, "privilege": "business"}, "organization": {"id": 162, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 433}, "assignee": {"id": 39}, "organization": {"id": 162}, "project": {"owner": {"id": 753}, "assignee": {"id": 858}, "organization": {"id": 956}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 69, "privilege": "business"}, "organization": {"id": 189, "owner": {"id": 230}, "user": {"role": "worker"}}}, "resource": {"id": 336, "owner": {"id": 415}, "assignee": {"id": 69}, "organization": {"id": 605}, "project": {"owner": {"id": 759}, "assignee": {"id": 824}, "organization": {"id": 964}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 44, "privilege": "business"}, "organization": {"id": 132, "owner": {"id": 295}, "user": {"role": "worker"}}}, "resource": {"id": 369, "owner": {"id": 433}, "assignee": {"id": 44}, "organization": {"id": 600}, "project": {"owner": {"id": 777}, "assignee": {"id": 830}, "organization": {"id": 954}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 178, "owner": {"id": 289}, "user": {"role": null}}}, "resource": {"id": 371, "owner": {"id": 475}, "assignee": {"id": 62}, "organization": {"id": 178}, "project": {"owner": {"id": 741}, "assignee": {"id": 853}, "organization": {"id": 969}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 94, "privilege": "business"}, "organization": {"id": 150, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 310, "owner": {"id": 424}, "assignee": {"id": 94}, "organization": {"id": 150}, "project": {"owner": {"id": 739}, "assignee": {"id": 858}, "organization": {"id": 933}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 171, "owner": {"id": 270}, "user": {"role": null}}}, "resource": {"id": 373, "owner": {"id": 464}, "assignee": {"id": 90}, "organization": {"id": 618}, "project": {"owner": {"id": 773}, "assignee": {"id": 823}, "organization": {"id": 986}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 19, "privilege": "business"}, "organization": {"id": 108, "owner": {"id": 215}, "user": {"role": null}}}, "resource": {"id": 365, "owner": {"id": 457}, "assignee": {"id": 19}, "organization": {"id": 674}, "project": {"owner": {"id": 709}, "assignee": {"id": 884}, "organization": {"id": 915}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"id": 382, "owner": {"id": 481}, "assignee": {"id": 31}, "organization": {"id": 183}, "project": {"owner": {"id": 700}, "assignee": {"id": 853}, "organization": {"id": 993}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 156, "owner": {"id": 23}, "user": {"role": "owner"}}}, "resource": {"id": 358, "owner": {"id": 421}, "assignee": {"id": 23}, "organization": {"id": 156}, "project": {"owner": {"id": 731}, "assignee": {"id": 883}, "organization": {"id": 998}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 32, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 327, "owner": {"id": 443}, "assignee": {"id": 32}, "organization": {"id": 622}, "project": {"owner": {"id": 718}, "assignee": {"id": 893}, "organization": {"id": 928}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 96, "privilege": "user"}, "organization": {"id": 194, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 351, "owner": {"id": 422}, "assignee": {"id": 96}, "organization": {"id": 613}, "project": {"owner": {"id": 734}, "assignee": {"id": 815}, "organization": {"id": 973}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 263}, "user": {"role": "maintainer"}}}, "resource": {"id": 317, "owner": {"id": 483}, "assignee": {"id": 87}, "organization": {"id": 147}, "project": {"owner": {"id": 718}, "assignee": {"id": 853}, "organization": {"id": 929}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 27, "privilege": "user"}, "organization": {"id": 179, "owner": {"id": 223}, "user": {"role": "maintainer"}}}, "resource": {"id": 399, "owner": {"id": 411}, "assignee": {"id": 27}, "organization": {"id": 179}, "project": {"owner": {"id": 786}, "assignee": {"id": 868}, "organization": {"id": 954}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 78, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 228}, "user": {"role": "maintainer"}}}, "resource": {"id": 336, "owner": {"id": 474}, "assignee": {"id": 78}, "organization": {"id": 638}, "project": {"owner": {"id": 727}, "assignee": {"id": 880}, "organization": {"id": 992}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 142, "owner": {"id": 215}, "user": {"role": "maintainer"}}}, "resource": {"id": 334, "owner": {"id": 423}, "assignee": {"id": 28}, "organization": {"id": 605}, "project": {"owner": {"id": 705}, "assignee": {"id": 847}, "organization": {"id": 923}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 147, "owner": {"id": 218}, "user": {"role": "supervisor"}}}, "resource": {"id": 339, "owner": {"id": 457}, "assignee": {"id": 70}, "organization": {"id": 147}, "project": {"owner": {"id": 738}, "assignee": {"id": 805}, "organization": {"id": 937}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 45, "privilege": "user"}, "organization": {"id": 154, "owner": {"id": 228}, "user": {"role": "supervisor"}}}, "resource": {"id": 311, "owner": {"id": 421}, "assignee": {"id": 45}, "organization": {"id": 154}, "project": {"owner": {"id": 715}, "assignee": {"id": 856}, "organization": {"id": 964}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 26, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 277}, "user": {"role": "supervisor"}}}, "resource": {"id": 370, "owner": {"id": 481}, "assignee": {"id": 26}, "organization": {"id": 619}, "project": {"owner": {"id": 709}, "assignee": {"id": 847}, "organization": {"id": 978}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 45, "privilege": "user"}, "organization": {"id": 162, "owner": {"id": 244}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 411}, "assignee": {"id": 45}, "organization": {"id": 652}, "project": {"owner": {"id": 708}, "assignee": {"id": 852}, "organization": {"id": 944}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 132, "owner": {"id": 271}, "user": {"role": "worker"}}}, "resource": {"id": 303, "owner": {"id": 465}, "assignee": {"id": 74}, "organization": {"id": 132}, "project": {"owner": {"id": 767}, "assignee": {"id": 819}, "organization": {"id": 974}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 57, "privilege": "user"}, "organization": {"id": 107, "owner": {"id": 221}, "user": {"role": "worker"}}}, "resource": {"id": 357, "owner": {"id": 471}, "assignee": {"id": 57}, "organization": {"id": 107}, "project": {"owner": {"id": 729}, "assignee": {"id": 874}, "organization": {"id": 958}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 89, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 374, "owner": {"id": 432}, "assignee": {"id": 89}, "organization": {"id": 639}, "project": {"owner": {"id": 797}, "assignee": {"id": 828}, "organization": {"id": 947}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 14, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 276}, "user": {"role": "worker"}}}, "resource": {"id": 399, "owner": {"id": 438}, "assignee": {"id": 14}, "organization": {"id": 616}, "project": {"owner": {"id": 723}, "assignee": {"id": 840}, "organization": {"id": 939}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 0, "privilege": "user"}, "organization": {"id": 180, "owner": {"id": 223}, "user": {"role": null}}}, "resource": {"id": 319, "owner": {"id": 456}, "assignee": {"id": 0}, "organization": {"id": 180}, "project": {"owner": {"id": 796}, "assignee": {"id": 872}, "organization": {"id": 912}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 185, "owner": {"id": 245}, "user": {"role": null}}}, "resource": {"id": 355, "owner": {"id": 490}, "assignee": {"id": 65}, "organization": {"id": 185}, "project": {"owner": {"id": 751}, "assignee": {"id": 858}, "organization": {"id": 907}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 16, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 285}, "user": {"role": null}}}, "resource": {"id": 349, "owner": {"id": 494}, "assignee": {"id": 16}, "organization": {"id": 665}, "project": {"owner": {"id": 797}, "assignee": {"id": 838}, "organization": {"id": 990}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 77, "privilege": "user"}, "organization": {"id": 101, "owner": {"id": 213}, "user": {"role": null}}}, "resource": {"id": 393, "owner": {"id": 400}, "assignee": {"id": 77}, "organization": {"id": 696}, "project": {"owner": {"id": 720}, "assignee": {"id": 871}, "organization": {"id": 942}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": {"id": 105, "owner": {"id": 75}, "user": {"role": "owner"}}}, "resource": {"id": 330, "owner": {"id": 416}, "assignee": {"id": 75}, "organization": {"id": 105}, "project": {"owner": {"id": 793}, "assignee": {"id": 850}, "organization": {"id": 963}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 3, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 3}, "user": {"role": "owner"}}}, "resource": {"id": 387, "owner": {"id": 489}, "assignee": {"id": 3}, "organization": {"id": 178}, "project": {"owner": {"id": 709}, "assignee": {"id": 837}, "organization": {"id": 927}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 40}, "user": {"role": "owner"}}}, "resource": {"id": 371, "owner": {"id": 457}, "assignee": {"id": 40}, "organization": {"id": 623}, "project": {"owner": {"id": 770}, "assignee": {"id": 825}, "organization": {"id": 923}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 193, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 371, "owner": {"id": 440}, "assignee": {"id": 84}, "organization": {"id": 619}, "project": {"owner": {"id": 797}, "assignee": {"id": 802}, "organization": {"id": 940}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 191, "owner": {"id": 222}, "user": {"role": "maintainer"}}}, "resource": {"id": 324, "owner": {"id": 478}, "assignee": {"id": 56}, "organization": {"id": 191}, "project": {"owner": {"id": 726}, "assignee": {"id": 872}, "organization": {"id": 960}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 75, "privilege": "worker"}, "organization": {"id": 133, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 346, "owner": {"id": 499}, "assignee": {"id": 75}, "organization": {"id": 133}, "project": {"owner": {"id": 747}, "assignee": {"id": 885}, "organization": {"id": 960}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 129, "owner": {"id": 258}, "user": {"role": "maintainer"}}}, "resource": {"id": 326, "owner": {"id": 410}, "assignee": {"id": 65}, "organization": {"id": 609}, "project": {"owner": {"id": 770}, "assignee": {"id": 887}, "organization": {"id": 945}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 91, "privilege": "worker"}, "organization": {"id": 182, "owner": {"id": 281}, "user": {"role": "maintainer"}}}, "resource": {"id": 383, "owner": {"id": 404}, "assignee": {"id": 91}, "organization": {"id": 607}, "project": {"owner": {"id": 737}, "assignee": {"id": 854}, "organization": {"id": 981}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 181, "owner": {"id": 254}, "user": {"role": "supervisor"}}}, "resource": {"id": 391, "owner": {"id": 409}, "assignee": {"id": 38}, "organization": {"id": 181}, "project": {"owner": {"id": 769}, "assignee": {"id": 890}, "organization": {"id": 994}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 20, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 206}, "user": {"role": "supervisor"}}}, "resource": {"id": 320, "owner": {"id": 425}, "assignee": {"id": 20}, "organization": {"id": 160}, "project": {"owner": {"id": 748}, "assignee": {"id": 846}, "organization": {"id": 907}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 92, "privilege": "worker"}, "organization": {"id": 187, "owner": {"id": 233}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 408}, "assignee": {"id": 92}, "organization": {"id": 684}, "project": {"owner": {"id": 743}, "assignee": {"id": 801}, "organization": {"id": 941}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 11, "privilege": "worker"}, "organization": {"id": 129, "owner": {"id": 246}, "user": {"role": "supervisor"}}}, "resource": {"id": 376, "owner": {"id": 450}, "assignee": {"id": 11}, "organization": {"id": 653}, "project": {"owner": {"id": 770}, "assignee": {"id": 860}, "organization": {"id": 960}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 67, "privilege": "worker"}, "organization": {"id": 149, "owner": {"id": 286}, "user": {"role": "worker"}}}, "resource": {"id": 300, "owner": {"id": 491}, "assignee": {"id": 67}, "organization": {"id": 149}, "project": {"owner": {"id": 753}, "assignee": {"id": 887}, "organization": {"id": 971}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 38, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 285}, "user": {"role": "worker"}}}, "resource": {"id": 352, "owner": {"id": 435}, "assignee": {"id": 38}, "organization": {"id": 154}, "project": {"owner": {"id": 758}, "assignee": {"id": 892}, "organization": {"id": 933}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 83, "privilege": "worker"}, "organization": {"id": 131, "owner": {"id": 264}, "user": {"role": "worker"}}}, "resource": {"id": 330, "owner": {"id": 486}, "assignee": {"id": 83}, "organization": {"id": 640}, "project": {"owner": {"id": 791}, "assignee": {"id": 876}, "organization": {"id": 906}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 44, "privilege": "worker"}, "organization": {"id": 167, "owner": {"id": 273}, "user": {"role": "worker"}}}, "resource": {"id": 394, "owner": {"id": 411}, "assignee": {"id": 44}, "organization": {"id": 616}, "project": {"owner": {"id": 708}, "assignee": {"id": 809}, "organization": {"id": 919}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 13, "privilege": "worker"}, "organization": {"id": 112, "owner": {"id": 271}, "user": {"role": null}}}, "resource": {"id": 333, "owner": {"id": 498}, "assignee": {"id": 13}, "organization": {"id": 112}, "project": {"owner": {"id": 749}, "assignee": {"id": 877}, "organization": {"id": 969}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 65, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 388, "owner": {"id": 423}, "assignee": {"id": 65}, "organization": {"id": 123}, "project": {"owner": {"id": 783}, "assignee": {"id": 805}, "organization": {"id": 993}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 138, "owner": {"id": 231}, "user": {"role": null}}}, "resource": {"id": 324, "owner": {"id": 485}, "assignee": {"id": 93}, "organization": {"id": 658}, "project": {"owner": {"id": 702}, "assignee": {"id": 828}, "organization": {"id": 906}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 95, "privilege": "worker"}, "organization": {"id": 169, "owner": {"id": 283}, "user": {"role": null}}}, "resource": {"id": 362, "owner": {"id": 404}, "assignee": {"id": 95}, "organization": {"id": 677}, "project": {"owner": {"id": 706}, "assignee": {"id": 819}, "organization": {"id": 938}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 97, "privilege": "none"}, "organization": {"id": 130, "owner": {"id": 97}, "user": {"role": "owner"}}}, "resource": {"id": 341, "owner": {"id": 426}, "assignee": {"id": 97}, "organization": {"id": 130}, "project": {"owner": {"id": 736}, "assignee": {"id": 856}, "organization": {"id": 954}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 4, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 4}, "user": {"role": "owner"}}}, "resource": {"id": 381, "owner": {"id": 472}, "assignee": {"id": 4}, "organization": {"id": 146}, "project": {"owner": {"id": 757}, "assignee": {"id": 881}, "organization": {"id": 945}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 73, "privilege": "none"}, "organization": {"id": 187, "owner": {"id": 73}, "user": {"role": "owner"}}}, "resource": {"id": 357, "owner": {"id": 493}, "assignee": {"id": 73}, "organization": {"id": 674}, "project": {"owner": {"id": 759}, "assignee": {"id": 870}, "organization": {"id": 990}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 8, "privilege": "none"}, "organization": {"id": 112, "owner": {"id": 8}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 477}, "assignee": {"id": 8}, "organization": {"id": 690}, "project": {"owner": {"id": 795}, "assignee": {"id": 899}, "organization": {"id": 919}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 1, "privilege": "none"}, "organization": {"id": 190, "owner": {"id": 265}, "user": {"role": "maintainer"}}}, "resource": {"id": 304, "owner": {"id": 441}, "assignee": {"id": 1}, "organization": {"id": 190}, "project": {"owner": {"id": 723}, "assignee": {"id": 862}, "organization": {"id": 900}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 24, "privilege": "none"}, "organization": {"id": 177, "owner": {"id": 272}, "user": {"role": "maintainer"}}}, "resource": {"id": 373, "owner": {"id": 478}, "assignee": {"id": 24}, "organization": {"id": 177}, "project": {"owner": {"id": 738}, "assignee": {"id": 868}, "organization": {"id": 905}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 36, "privilege": "none"}, "organization": {"id": 186, "owner": {"id": 287}, "user": {"role": "maintainer"}}}, "resource": {"id": 390, "owner": {"id": 410}, "assignee": {"id": 36}, "organization": {"id": 619}, "project": {"owner": {"id": 779}, "assignee": {"id": 818}, "organization": {"id": 913}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 35, "privilege": "none"}, "organization": {"id": 168, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"id": 301, "owner": {"id": 481}, "assignee": {"id": 35}, "organization": {"id": 640}, "project": {"owner": {"id": 715}, "assignee": {"id": 849}, "organization": {"id": 952}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 6, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 236}, "user": {"role": "supervisor"}}}, "resource": {"id": 355, "owner": {"id": 406}, "assignee": {"id": 6}, "organization": {"id": 148}, "project": {"owner": {"id": 768}, "assignee": {"id": 808}, "organization": {"id": 948}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 51, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 293}, "user": {"role": "supervisor"}}}, "resource": {"id": 336, "owner": {"id": 473}, "assignee": {"id": 51}, "organization": {"id": 192}, "project": {"owner": {"id": 774}, "assignee": {"id": 850}, "organization": {"id": 977}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 184, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 371, "owner": {"id": 460}, "assignee": {"id": 58}, "organization": {"id": 609}, "project": {"owner": {"id": 726}, "assignee": {"id": 880}, "organization": {"id": 986}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 95, "privilege": "none"}, "organization": {"id": 163, "owner": {"id": 276}, "user": {"role": "supervisor"}}}, "resource": {"id": 342, "owner": {"id": 406}, "assignee": {"id": 95}, "organization": {"id": 695}, "project": {"owner": {"id": 716}, "assignee": {"id": 880}, "organization": {"id": 964}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 58, "privilege": "none"}, "organization": {"id": 171, "owner": {"id": 279}, "user": {"role": "worker"}}}, "resource": {"id": 374, "owner": {"id": 435}, "assignee": {"id": 58}, "organization": {"id": 171}, "project": {"owner": {"id": 786}, "assignee": {"id": 829}, "organization": {"id": 940}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 71, "privilege": "none"}, "organization": {"id": 126, "owner": {"id": 252}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 474}, "assignee": {"id": 71}, "organization": {"id": 126}, "project": {"owner": {"id": 745}, "assignee": {"id": 865}, "organization": {"id": 930}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 140, "owner": {"id": 238}, "user": {"role": "worker"}}}, "resource": {"id": 387, "owner": {"id": 498}, "assignee": {"id": 78}, "organization": {"id": 659}, "project": {"owner": {"id": 737}, "assignee": {"id": 842}, "organization": {"id": 977}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 64, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 226}, "user": {"role": "worker"}}}, "resource": {"id": 348, "owner": {"id": 480}, "assignee": {"id": 64}, "organization": {"id": 616}, "project": {"owner": {"id": 726}, "assignee": {"id": 828}, "organization": {"id": 941}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 9, "privilege": "none"}, "organization": {"id": 164, "owner": {"id": 296}, "user": {"role": null}}}, "resource": {"id": 304, "owner": {"id": 491}, "assignee": {"id": 9}, "organization": {"id": 164}, "project": {"owner": {"id": 704}, "assignee": {"id": 835}, "organization": {"id": 992}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 3, "privilege": "none"}, "organization": {"id": 131, "owner": {"id": 275}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 410}, "assignee": {"id": 3}, "organization": {"id": 131}, "project": {"owner": {"id": 792}, "assignee": {"id": 864}, "organization": {"id": 981}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"id": 334, "owner": {"id": 420}, "assignee": {"id": 43}, "organization": {"id": 641}, "project": {"owner": {"id": 700}, "assignee": {"id": 843}, "organization": {"id": 978}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_ASSIGNEE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 198, "owner": {"id": 279}, "user": {"role": null}}}, "resource": {"id": 395, "owner": {"id": 440}, "assignee": {"id": 89}, "organization": {"id": 667}, "project": {"owner": {"id": 767}, "assignee": {"id": 803}, "organization": {"id": 980}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 152, "owner": {"id": 45}, "user": {"role": "owner"}}}, "resource": {"id": 368, "owner": {"id": 499}, "assignee": {"id": 590}, "organization": {"id": 152}, "project": {"owner": {"id": 756}, "assignee": {"id": 875}, "organization": {"id": 957}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 14, "privilege": "admin"}, "organization": {"id": 109, "owner": {"id": 14}, "user": {"role": "owner"}}}, "resource": {"id": 321, "owner": {"id": 457}, "assignee": {"id": 553}, "organization": {"id": 109}, "project": {"owner": {"id": 772}, "assignee": {"id": 813}, "organization": {"id": 917}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 17, "privilege": "admin"}, "organization": {"id": 102, "owner": {"id": 17}, "user": {"role": "owner"}}}, "resource": {"id": 363, "owner": {"id": 483}, "assignee": {"id": 524}, "organization": {"id": 694}, "project": {"owner": {"id": 717}, "assignee": {"id": 887}, "organization": {"id": 933}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_OWNER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 81, "privilege": "admin"}, "organization": {"id": 143, "owner": {"id": 81}, "user": {"role": "owner"}}}, "resource": {"id": 389, "owner": {"id": 413}, "assignee": {"id": 524}, "organization": {"id": 663}, "project": {"owner": {"id": 738}, "assignee": {"id": 852}, "organization": {"id": 953}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 86, "privilege": "admin"}, "organization": {"id": 124, "owner": {"id": 233}, "user": {"role": "maintainer"}}}, "resource": {"id": 323, "owner": {"id": 462}, "assignee": {"id": 582}, "organization": {"id": 124}, "project": {"owner": {"id": 764}, "assignee": {"id": 884}, "organization": {"id": 945}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 42, "privilege": "admin"}, "organization": {"id": 191, "owner": {"id": 238}, "user": {"role": "maintainer"}}}, "resource": {"id": 376, "owner": {"id": 477}, "assignee": {"id": 573}, "organization": {"id": 191}, "project": {"owner": {"id": 784}, "assignee": {"id": 811}, "organization": {"id": 965}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 62, "privilege": "admin"}, "organization": {"id": 196, "owner": {"id": 219}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 473}, "assignee": {"id": 516}, "organization": {"id": 678}, "project": {"owner": {"id": 701}, "assignee": {"id": 845}, "organization": {"id": 956}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_MAINTAINER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 48, "privilege": "admin"}, "organization": {"id": 127, "owner": {"id": 275}, "user": {"role": "maintainer"}}}, "resource": {"id": 327, "owner": {"id": 424}, "assignee": {"id": 501}, "organization": {"id": 655}, "project": {"owner": {"id": 748}, "assignee": {"id": 818}, "organization": {"id": 920}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 73, "privilege": "admin"}, "organization": {"id": 127, "owner": {"id": 261}, "user": {"role": "supervisor"}}}, "resource": {"id": 387, "owner": {"id": 434}, "assignee": {"id": 581}, "organization": {"id": 127}, "project": {"owner": {"id": 728}, "assignee": {"id": 827}, "organization": {"id": 924}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 3, "privilege": "admin"}, "organization": {"id": 147, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 360, "owner": {"id": 438}, "assignee": {"id": 599}, "organization": {"id": 147}, "project": {"owner": {"id": 794}, "assignee": {"id": 832}, "organization": {"id": 922}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 99, "privilege": "admin"}, "organization": {"id": 169, "owner": {"id": 274}, "user": {"role": "supervisor"}}}, "resource": {"id": 397, "owner": {"id": 456}, "assignee": {"id": 527}, "organization": {"id": 640}, "project": {"owner": {"id": 732}, "assignee": {"id": 857}, "organization": {"id": 954}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_SUPERVISOR_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 22, "privilege": "admin"}, "organization": {"id": 172, "owner": {"id": 271}, "user": {"role": "supervisor"}}}, "resource": {"id": 302, "owner": {"id": 404}, "assignee": {"id": 522}, "organization": {"id": 616}, "project": {"owner": {"id": 710}, "assignee": {"id": 883}, "organization": {"id": 948}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 35, "privilege": "admin"}, "organization": {"id": 146, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 355, "owner": {"id": 406}, "assignee": {"id": 550}, "organization": {"id": 146}, "project": {"owner": {"id": 780}, "assignee": {"id": 898}, "organization": {"id": 973}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 93, "privilege": "admin"}, "organization": {"id": 104, "owner": {"id": 209}, "user": {"role": "worker"}}}, "resource": {"id": 304, "owner": {"id": 465}, "assignee": {"id": 514}, "organization": {"id": 104}, "project": {"owner": {"id": 706}, "assignee": {"id": 825}, "organization": {"id": 908}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 45, "privilege": "admin"}, "organization": {"id": 185, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 445}, "assignee": {"id": 591}, "organization": {"id": 624}, "project": {"owner": {"id": 759}, "assignee": {"id": 811}, "organization": {"id": 900}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_WORKER_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 19, "privilege": "admin"}, "organization": {"id": 115, "owner": {"id": 236}, "user": {"role": "worker"}}}, "resource": {"id": 308, "owner": {"id": 448}, "assignee": {"id": 559}, "organization": {"id": 640}, "project": {"owner": {"id": 771}, "assignee": {"id": 859}, "organization": {"id": 935}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 9, "privilege": "admin"}, "organization": {"id": 122, "owner": {"id": 242}, "user": {"role": null}}}, "resource": {"id": 399, "owner": {"id": 443}, "assignee": {"id": 507}, "organization": {"id": 122}, "project": {"owner": {"id": 721}, "assignee": {"id": 886}, "organization": {"id": 980}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 79, "privilege": "admin"}, "organization": {"id": 184, "owner": {"id": 238}, "user": {"role": null}}}, "resource": {"id": 325, "owner": {"id": 436}, "assignee": {"id": 593}, "organization": {"id": 184}, "project": {"owner": {"id": 771}, "assignee": {"id": 870}, "organization": {"id": 974}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { - allow with input as {"scope": "view", "auth": {"user": {"id": 71, "privilege": "admin"}, "organization": {"id": 136, "owner": {"id": 241}, "user": {"role": null}}}, "resource": {"id": 390, "owner": {"id": 473}, "assignee": {"id": 504}, "organization": {"id": 692}, "project": {"owner": {"id": 734}, "assignee": {"id": 805}, "organization": {"id": 913}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_ADMIN_membership_NONE_resource_project_same_org_FALSE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 29, "privilege": "admin"}, "organization": {"id": 158, "owner": {"id": 260}, "user": {"role": null}}}, "resource": {"id": 323, "owner": {"id": 482}, "assignee": {"id": 526}, "organization": {"id": 652}, "project": {"owner": {"id": 730}, "assignee": {"id": 857}, "organization": {"id": 925}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 83, "privilege": "business"}, "organization": {"id": 165, "owner": {"id": 83}, "user": {"role": "owner"}}}, "resource": {"id": 399, "owner": {"id": 461}, "assignee": {"id": 579}, "organization": {"id": 165}, "project": {"owner": {"id": 716}, "assignee": {"id": 838}, "organization": {"id": 970}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 74, "privilege": "business"}, "organization": {"id": 188, "owner": {"id": 74}, "user": {"role": "owner"}}}, "resource": {"id": 318, "owner": {"id": 459}, "assignee": {"id": 545}, "organization": {"id": 188}, "project": {"owner": {"id": 740}, "assignee": {"id": 809}, "organization": {"id": 984}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 8, "privilege": "business"}, "organization": {"id": 122, "owner": {"id": 8}, "user": {"role": "owner"}}}, "resource": {"id": 327, "owner": {"id": 419}, "assignee": {"id": 548}, "organization": {"id": 642}, "project": {"owner": {"id": 722}, "assignee": {"id": 874}, "organization": {"id": 966}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 1, "privilege": "business"}, "organization": {"id": 116, "owner": {"id": 1}, "user": {"role": "owner"}}}, "resource": {"id": 331, "owner": {"id": 448}, "assignee": {"id": 531}, "organization": {"id": 604}, "project": {"owner": {"id": 792}, "assignee": {"id": 841}, "organization": {"id": 914}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 56, "privilege": "business"}, "organization": {"id": 191, "owner": {"id": 239}, "user": {"role": "maintainer"}}}, "resource": {"id": 313, "owner": {"id": 497}, "assignee": {"id": 567}, "organization": {"id": 191}, "project": {"owner": {"id": 786}, "assignee": {"id": 846}, "organization": {"id": 973}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 37, "privilege": "business"}, "organization": {"id": 144, "owner": {"id": 242}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 460}, "assignee": {"id": 570}, "organization": {"id": 144}, "project": {"owner": {"id": 774}, "assignee": {"id": 840}, "organization": {"id": 923}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 92, "privilege": "business"}, "organization": {"id": 198, "owner": {"id": 208}, "user": {"role": "maintainer"}}}, "resource": {"id": 316, "owner": {"id": 437}, "assignee": {"id": 513}, "organization": {"id": 634}, "project": {"owner": {"id": 701}, "assignee": {"id": 878}, "organization": {"id": 995}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 0, "privilege": "business"}, "organization": {"id": 107, "owner": {"id": 206}, "user": {"role": "maintainer"}}}, "resource": {"id": 362, "owner": {"id": 462}, "assignee": {"id": 500}, "organization": {"id": 641}, "project": {"owner": {"id": 783}, "assignee": {"id": 870}, "organization": {"id": 951}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 9, "privilege": "business"}, "organization": {"id": 130, "owner": {"id": 277}, "user": {"role": "supervisor"}}}, "resource": {"id": 340, "owner": {"id": 453}, "assignee": {"id": 500}, "organization": {"id": 130}, "project": {"owner": {"id": 775}, "assignee": {"id": 820}, "organization": {"id": 914}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 62, "privilege": "business"}, "organization": {"id": 187, "owner": {"id": 287}, "user": {"role": "supervisor"}}}, "resource": {"id": 373, "owner": {"id": 478}, "assignee": {"id": 574}, "organization": {"id": 187}, "project": {"owner": {"id": 760}, "assignee": {"id": 807}, "organization": {"id": 940}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 60, "privilege": "business"}, "organization": {"id": 147, "owner": {"id": 224}, "user": {"role": "supervisor"}}}, "resource": {"id": 321, "owner": {"id": 436}, "assignee": {"id": 584}, "organization": {"id": 620}, "project": {"owner": {"id": 794}, "assignee": {"id": 893}, "organization": {"id": 984}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 90, "privilege": "business"}, "organization": {"id": 117, "owner": {"id": 232}, "user": {"role": "supervisor"}}}, "resource": {"id": 362, "owner": {"id": 454}, "assignee": {"id": 538}, "organization": {"id": 646}, "project": {"owner": {"id": 755}, "assignee": {"id": 832}, "organization": {"id": 967}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": {"id": 129, "owner": {"id": 289}, "user": {"role": "worker"}}}, "resource": {"id": 323, "owner": {"id": 405}, "assignee": {"id": 502}, "organization": {"id": 129}, "project": {"owner": {"id": 714}, "assignee": {"id": 807}, "organization": {"id": 924}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 72, "privilege": "business"}, "organization": {"id": 126, "owner": {"id": 228}, "user": {"role": "worker"}}}, "resource": {"id": 325, "owner": {"id": 417}, "assignee": {"id": 544}, "organization": {"id": 126}, "project": {"owner": {"id": 766}, "assignee": {"id": 856}, "organization": {"id": 974}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 82, "privilege": "business"}, "organization": {"id": 145, "owner": {"id": 203}, "user": {"role": "worker"}}}, "resource": {"id": 374, "owner": {"id": 431}, "assignee": {"id": 516}, "organization": {"id": 612}, "project": {"owner": {"id": 771}, "assignee": {"id": 844}, "organization": {"id": 963}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 98, "privilege": "business"}, "organization": {"id": 180, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 346, "owner": {"id": 436}, "assignee": {"id": 539}, "organization": {"id": 621}, "project": {"owner": {"id": 748}, "assignee": {"id": 868}, "organization": {"id": 904}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 57, "privilege": "business"}, "organization": {"id": 134, "owner": {"id": 268}, "user": {"role": null}}}, "resource": {"id": 343, "owner": {"id": 499}, "assignee": {"id": 522}, "organization": {"id": 134}, "project": {"owner": {"id": 761}, "assignee": {"id": 838}, "organization": {"id": 946}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 78, "privilege": "business"}, "organization": {"id": 112, "owner": {"id": 250}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 469}, "assignee": {"id": 500}, "organization": {"id": 112}, "project": {"owner": {"id": 718}, "assignee": {"id": 807}, "organization": {"id": 951}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 14, "privilege": "business"}, "organization": {"id": 131, "owner": {"id": 219}, "user": {"role": null}}}, "resource": {"id": 367, "owner": {"id": 416}, "assignee": {"id": 583}, "organization": {"id": 655}, "project": {"owner": {"id": 731}, "assignee": {"id": 803}, "organization": {"id": 921}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 10, "privilege": "business"}, "organization": {"id": 199, "owner": {"id": 248}, "user": {"role": null}}}, "resource": {"id": 348, "owner": {"id": 498}, "assignee": {"id": 572}, "organization": {"id": 661}, "project": {"owner": {"id": 755}, "assignee": {"id": 868}, "organization": {"id": 910}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 31, "privilege": "user"}, "organization": {"id": 120, "owner": {"id": 31}, "user": {"role": "owner"}}}, "resource": {"id": 349, "owner": {"id": 420}, "assignee": {"id": 597}, "organization": {"id": 120}, "project": {"owner": {"id": 799}, "assignee": {"id": 838}, "organization": {"id": 982}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 111, "owner": {"id": 5}, "user": {"role": "owner"}}}, "resource": {"id": 315, "owner": {"id": 453}, "assignee": {"id": 576}, "organization": {"id": 111}, "project": {"owner": {"id": 741}, "assignee": {"id": 809}, "organization": {"id": 962}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 72, "privilege": "user"}, "organization": {"id": 104, "owner": {"id": 72}, "user": {"role": "owner"}}}, "resource": {"id": 334, "owner": {"id": 455}, "assignee": {"id": 571}, "organization": {"id": 600}, "project": {"owner": {"id": 748}, "assignee": {"id": 805}, "organization": {"id": 937}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 20, "privilege": "user"}, "organization": {"id": 141, "owner": {"id": 20}, "user": {"role": "owner"}}}, "resource": {"id": 306, "owner": {"id": 411}, "assignee": {"id": 584}, "organization": {"id": 666}, "project": {"owner": {"id": 726}, "assignee": {"id": 838}, "organization": {"id": 937}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { - allow with input as {"scope": "view", "auth": {"user": {"id": 56, "privilege": "user"}, "organization": {"id": 195, "owner": {"id": 254}, "user": {"role": "maintainer"}}}, "resource": {"id": 331, "owner": {"id": 441}, "assignee": {"id": 594}, "organization": {"id": 195}, "project": {"owner": {"id": 797}, "assignee": {"id": 876}, "organization": {"id": 979}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_TRUE { + allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 65, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 247}, "user": {"role": "maintainer"}}}, "resource": {"id": 370, "owner": {"id": 481}, "assignee": {"id": 535}, "organization": {"id": 196}, "project": {"owner": {"id": 788}, "assignee": {"id": 864}, "organization": {"id": 956}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 35, "privilege": "user"}, "organization": {"id": 157, "owner": {"id": 229}, "user": {"role": "maintainer"}}}, "resource": {"id": 333, "owner": {"id": 455}, "assignee": {"id": 553}, "organization": {"id": 622}, "project": {"owner": {"id": 790}, "assignee": {"id": 839}, "organization": {"id": 955}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 23, "privilege": "user"}, "organization": {"id": 196, "owner": {"id": 299}, "user": {"role": "maintainer"}}}, "resource": {"id": 376, "owner": {"id": 496}, "assignee": {"id": 538}, "organization": {"id": 639}, "project": {"owner": {"id": 710}, "assignee": {"id": 864}, "organization": {"id": 999}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 74, "privilege": "user"}, "organization": {"id": 109, "owner": {"id": 277}, "user": {"role": "supervisor"}}}, "resource": {"id": 352, "owner": {"id": 492}, "assignee": {"id": 522}, "organization": {"id": 109}, "project": {"owner": {"id": 714}, "assignee": {"id": 892}, "organization": {"id": 977}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 46, "privilege": "user"}, "organization": {"id": 197, "owner": {"id": 201}, "user": {"role": "supervisor"}}}, "resource": {"id": 366, "owner": {"id": 462}, "assignee": {"id": 540}, "organization": {"id": 197}, "project": {"owner": {"id": 758}, "assignee": {"id": 892}, "organization": {"id": 964}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 45, "privilege": "user"}, "organization": {"id": 168, "owner": {"id": 218}, "user": {"role": "supervisor"}}}, "resource": {"id": 329, "owner": {"id": 450}, "assignee": {"id": 587}, "organization": {"id": 656}, "project": {"owner": {"id": 716}, "assignee": {"id": 818}, "organization": {"id": 937}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 70, "privilege": "user"}, "organization": {"id": 137, "owner": {"id": 203}, "user": {"role": "supervisor"}}}, "resource": {"id": 359, "owner": {"id": 464}, "assignee": {"id": 535}, "organization": {"id": 695}, "project": {"owner": {"id": 736}, "assignee": {"id": 804}, "organization": {"id": 989}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 67, "privilege": "user"}, "organization": {"id": 130, "owner": {"id": 291}, "user": {"role": "worker"}}}, "resource": {"id": 362, "owner": {"id": 438}, "assignee": {"id": 527}, "organization": {"id": 130}, "project": {"owner": {"id": 748}, "assignee": {"id": 870}, "organization": {"id": 998}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 42, "privilege": "user"}, "organization": {"id": 178, "owner": {"id": 272}, "user": {"role": "worker"}}}, "resource": {"id": 353, "owner": {"id": 498}, "assignee": {"id": 580}, "organization": {"id": 178}, "project": {"owner": {"id": 731}, "assignee": {"id": 884}, "organization": {"id": 961}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 9, "privilege": "user"}, "organization": {"id": 183, "owner": {"id": 212}, "user": {"role": "worker"}}}, "resource": {"id": 391, "owner": {"id": 408}, "assignee": {"id": 583}, "organization": {"id": 634}, "project": {"owner": {"id": 784}, "assignee": {"id": 842}, "organization": {"id": 905}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 5, "privilege": "user"}, "organization": {"id": 169, "owner": {"id": 211}, "user": {"role": "worker"}}}, "resource": {"id": 342, "owner": {"id": 432}, "assignee": {"id": 551}, "organization": {"id": 689}, "project": {"owner": {"id": 702}, "assignee": {"id": 879}, "organization": {"id": 964}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 28, "privilege": "user"}, "organization": {"id": 164, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 340, "owner": {"id": 446}, "assignee": {"id": 550}, "organization": {"id": 164}, "project": {"owner": {"id": 798}, "assignee": {"id": 818}, "organization": {"id": 921}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 18, "privilege": "user"}, "organization": {"id": 173, "owner": {"id": 243}, "user": {"role": null}}}, "resource": {"id": 353, "owner": {"id": 482}, "assignee": {"id": 517}, "organization": {"id": 173}, "project": {"owner": {"id": 749}, "assignee": {"id": 800}, "organization": {"id": 928}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 87, "privilege": "user"}, "organization": {"id": 155, "owner": {"id": 232}, "user": {"role": null}}}, "resource": {"id": 317, "owner": {"id": 492}, "assignee": {"id": 538}, "organization": {"id": 606}, "project": {"owner": {"id": 714}, "assignee": {"id": 816}, "organization": {"id": 923}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 73, "privilege": "user"}, "organization": {"id": 106, "owner": {"id": 280}, "user": {"role": null}}}, "resource": {"id": 320, "owner": {"id": 470}, "assignee": {"id": 530}, "organization": {"id": 696}, "project": {"owner": {"id": 718}, "assignee": {"id": 867}, "organization": {"id": 948}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 52, "privilege": "worker"}, "organization": {"id": 100, "owner": {"id": 52}, "user": {"role": "owner"}}}, "resource": {"id": 307, "owner": {"id": 463}, "assignee": {"id": 551}, "organization": {"id": 100}, "project": {"owner": {"id": 761}, "assignee": {"id": 849}, "organization": {"id": 980}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 84, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 84}, "user": {"role": "owner"}}}, "resource": {"id": 386, "owner": {"id": 430}, "assignee": {"id": 506}, "organization": {"id": 179}, "project": {"owner": {"id": 769}, "assignee": {"id": 863}, "organization": {"id": 992}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 16, "privilege": "worker"}, "organization": {"id": 183, "owner": {"id": 16}, "user": {"role": "owner"}}}, "resource": {"id": 307, "owner": {"id": 493}, "assignee": {"id": 542}, "organization": {"id": 668}, "project": {"owner": {"id": 751}, "assignee": {"id": 893}, "organization": {"id": 960}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 37, "privilege": "worker"}, "organization": {"id": 117, "owner": {"id": 37}, "user": {"role": "owner"}}}, "resource": {"id": 311, "owner": {"id": 448}, "assignee": {"id": 572}, "organization": {"id": 608}, "project": {"owner": {"id": 786}, "assignee": {"id": 861}, "organization": {"id": 988}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 31, "privilege": "worker"}, "organization": {"id": 195, "owner": {"id": 211}, "user": {"role": "maintainer"}}}, "resource": {"id": 383, "owner": {"id": 405}, "assignee": {"id": 528}, "organization": {"id": 195}, "project": {"owner": {"id": 715}, "assignee": {"id": 891}, "organization": {"id": 946}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 1, "privilege": "worker"}, "organization": {"id": 122, "owner": {"id": 292}, "user": {"role": "maintainer"}}}, "resource": {"id": 385, "owner": {"id": 404}, "assignee": {"id": 512}, "organization": {"id": 122}, "project": {"owner": {"id": 714}, "assignee": {"id": 877}, "organization": {"id": 908}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 56, "privilege": "worker"}, "organization": {"id": 137, "owner": {"id": 290}, "user": {"role": "maintainer"}}}, "resource": {"id": 324, "owner": {"id": 457}, "assignee": {"id": 546}, "organization": {"id": 690}, "project": {"owner": {"id": 718}, "assignee": {"id": 817}, "organization": {"id": 969}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 197, "owner": {"id": 207}, "user": {"role": "maintainer"}}}, "resource": {"id": 391, "owner": {"id": 446}, "assignee": {"id": 592}, "organization": {"id": 621}, "project": {"owner": {"id": 714}, "assignee": {"id": 831}, "organization": {"id": 945}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 34, "privilege": "worker"}, "organization": {"id": 166, "owner": {"id": 268}, "user": {"role": "supervisor"}}}, "resource": {"id": 340, "owner": {"id": 473}, "assignee": {"id": 565}, "organization": {"id": 166}, "project": {"owner": {"id": 795}, "assignee": {"id": 879}, "organization": {"id": 916}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 112, "owner": {"id": 263}, "user": {"role": "supervisor"}}}, "resource": {"id": 372, "owner": {"id": 493}, "assignee": {"id": 508}, "organization": {"id": 112}, "project": {"owner": {"id": 721}, "assignee": {"id": 816}, "organization": {"id": 996}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 40, "privilege": "worker"}, "organization": {"id": 160, "owner": {"id": 222}, "user": {"role": "supervisor"}}}, "resource": {"id": 361, "owner": {"id": 435}, "assignee": {"id": 515}, "organization": {"id": 652}, "project": {"owner": {"id": 738}, "assignee": {"id": 820}, "organization": {"id": 996}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 63, "privilege": "worker"}, "organization": {"id": 179, "owner": {"id": 289}, "user": {"role": "supervisor"}}}, "resource": {"id": 332, "owner": {"id": 448}, "assignee": {"id": 522}, "organization": {"id": 616}, "project": {"owner": {"id": 778}, "assignee": {"id": 825}, "organization": {"id": 919}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 93, "privilege": "worker"}, "organization": {"id": 173, "owner": {"id": 296}, "user": {"role": "worker"}}}, "resource": {"id": 318, "owner": {"id": 441}, "assignee": {"id": 541}, "organization": {"id": 173}, "project": {"owner": {"id": 742}, "assignee": {"id": 854}, "organization": {"id": 946}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 53, "privilege": "worker"}, "organization": {"id": 154, "owner": {"id": 299}, "user": {"role": "worker"}}}, "resource": {"id": 313, "owner": {"id": 421}, "assignee": {"id": 558}, "organization": {"id": 154}, "project": {"owner": {"id": 732}, "assignee": {"id": 857}, "organization": {"id": 964}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 22, "privilege": "worker"}, "organization": {"id": 178, "owner": {"id": 241}, "user": {"role": "worker"}}}, "resource": {"id": 355, "owner": {"id": 427}, "assignee": {"id": 568}, "organization": {"id": 622}, "project": {"owner": {"id": 729}, "assignee": {"id": 844}, "organization": {"id": 963}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 50, "privilege": "worker"}, "organization": {"id": 184, "owner": {"id": 270}, "user": {"role": "worker"}}}, "resource": {"id": 364, "owner": {"id": 475}, "assignee": {"id": 542}, "organization": {"id": 626}, "project": {"owner": {"id": 717}, "assignee": {"id": 823}, "organization": {"id": 996}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 69, "privilege": "worker"}, "organization": {"id": 127, "owner": {"id": 276}, "user": {"role": null}}}, "resource": {"id": 335, "owner": {"id": 427}, "assignee": {"id": 571}, "organization": {"id": 127}, "project": {"owner": {"id": 743}, "assignee": {"id": 829}, "organization": {"id": 968}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 24, "privilege": "worker"}, "organization": {"id": 114, "owner": {"id": 277}, "user": {"role": null}}}, "resource": {"id": 357, "owner": {"id": 482}, "assignee": {"id": 557}, "organization": {"id": 114}, "project": {"owner": {"id": 700}, "assignee": {"id": 846}, "organization": {"id": 969}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 98, "privilege": "worker"}, "organization": {"id": 123, "owner": {"id": 216}, "user": {"role": null}}}, "resource": {"id": 342, "owner": {"id": 454}, "assignee": {"id": 575}, "organization": {"id": 665}, "project": {"owner": {"id": 739}, "assignee": {"id": 875}, "organization": {"id": 979}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_WORKER_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 27, "privilege": "worker"}, "organization": {"id": 162, "owner": {"id": 284}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 492}, "assignee": {"id": 529}, "organization": {"id": 621}, "project": {"owner": {"id": 700}, "assignee": {"id": 876}, "organization": {"id": 925}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 0, "privilege": "none"}, "organization": {"id": 192, "owner": {"id": 0}, "user": {"role": "owner"}}}, "resource": {"id": 372, "owner": {"id": 465}, "assignee": {"id": 546}, "organization": {"id": 192}, "project": {"owner": {"id": 759}, "assignee": {"id": 864}, "organization": {"id": 966}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 96, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 96}, "user": {"role": "owner"}}}, "resource": {"id": 392, "owner": {"id": 471}, "assignee": {"id": 557}, "organization": {"id": 101}, "project": {"owner": {"id": 788}, "assignee": {"id": 883}, "organization": {"id": 968}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 67, "privilege": "none"}, "organization": {"id": 182, "owner": {"id": 67}, "user": {"role": "owner"}}}, "resource": {"id": 342, "owner": {"id": 445}, "assignee": {"id": 508}, "organization": {"id": 611}, "project": {"owner": {"id": 750}, "assignee": {"id": 883}, "organization": {"id": 979}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_OWNER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 32, "privilege": "none"}, "organization": {"id": 123, "owner": {"id": 32}, "user": {"role": "owner"}}}, "resource": {"id": 338, "owner": {"id": 400}, "assignee": {"id": 579}, "organization": {"id": 657}, "project": {"owner": {"id": 795}, "assignee": {"id": 806}, "organization": {"id": 946}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 69, "privilege": "none"}, "organization": {"id": 118, "owner": {"id": 282}, "user": {"role": "maintainer"}}}, "resource": {"id": 305, "owner": {"id": 495}, "assignee": {"id": 537}, "organization": {"id": 118}, "project": {"owner": {"id": 761}, "assignee": {"id": 825}, "organization": {"id": 952}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 59, "privilege": "none"}, "organization": {"id": 175, "owner": {"id": 223}, "user": {"role": "maintainer"}}}, "resource": {"id": 377, "owner": {"id": 457}, "assignee": {"id": 555}, "organization": {"id": 175}, "project": {"owner": {"id": 717}, "assignee": {"id": 864}, "organization": {"id": 934}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 148, "owner": {"id": 213}, "user": {"role": "maintainer"}}}, "resource": {"id": 367, "owner": {"id": 478}, "assignee": {"id": 575}, "organization": {"id": 603}, "project": {"owner": {"id": 759}, "assignee": {"id": 855}, "organization": {"id": 958}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_MAINTAINER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 83, "privilege": "none"}, "organization": {"id": 119, "owner": {"id": 246}, "user": {"role": "maintainer"}}}, "resource": {"id": 312, "owner": {"id": 458}, "assignee": {"id": 573}, "organization": {"id": 630}, "project": {"owner": {"id": 705}, "assignee": {"id": 880}, "organization": {"id": 929}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 42, "privilege": "none"}, "organization": {"id": 129, "owner": {"id": 285}, "user": {"role": "supervisor"}}}, "resource": {"id": 336, "owner": {"id": 414}, "assignee": {"id": 531}, "organization": {"id": 129}, "project": {"owner": {"id": 773}, "assignee": {"id": 888}, "organization": {"id": 999}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 77, "privilege": "none"}, "organization": {"id": 137, "owner": {"id": 215}, "user": {"role": "supervisor"}}}, "resource": {"id": 349, "owner": {"id": 455}, "assignee": {"id": 575}, "organization": {"id": 137}, "project": {"owner": {"id": 766}, "assignee": {"id": 876}, "organization": {"id": 910}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 89, "privilege": "none"}, "organization": {"id": 134, "owner": {"id": 235}, "user": {"role": "supervisor"}}}, "resource": {"id": 331, "owner": {"id": 404}, "assignee": {"id": 566}, "organization": {"id": 652}, "project": {"owner": {"id": 742}, "assignee": {"id": 882}, "organization": {"id": 969}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_SUPERVISOR_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 78, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 251}, "user": {"role": "supervisor"}}}, "resource": {"id": 350, "owner": {"id": 411}, "assignee": {"id": 556}, "organization": {"id": 611}, "project": {"owner": {"id": 749}, "assignee": {"id": 895}, "organization": {"id": 946}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 10, "privilege": "none"}, "organization": {"id": 132, "owner": {"id": 227}, "user": {"role": "worker"}}}, "resource": {"id": 384, "owner": {"id": 495}, "assignee": {"id": 536}, "organization": {"id": 132}, "project": {"owner": {"id": 725}, "assignee": {"id": 862}, "organization": {"id": 912}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 34, "privilege": "none"}, "organization": {"id": 191, "owner": {"id": 248}, "user": {"role": "worker"}}}, "resource": {"id": 394, "owner": {"id": 423}, "assignee": {"id": 562}, "organization": {"id": 191}, "project": {"owner": {"id": 755}, "assignee": {"id": 859}, "organization": {"id": 931}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 194, "owner": {"id": 207}, "user": {"role": "worker"}}}, "resource": {"id": 363, "owner": {"id": 476}, "assignee": {"id": 503}, "organization": {"id": 658}, "project": {"owner": {"id": 743}, "assignee": {"id": 856}, "organization": {"id": 967}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_WORKER_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 43, "privilege": "none"}, "organization": {"id": 155, "owner": {"id": 240}, "user": {"role": "worker"}}}, "resource": {"id": 356, "owner": {"id": 446}, "assignee": {"id": 540}, "organization": {"id": 655}, "project": {"owner": {"id": 721}, "assignee": {"id": 893}, "organization": {"id": 975}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 17, "privilege": "none"}, "organization": {"id": 167, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 306, "owner": {"id": 404}, "assignee": {"id": 563}, "organization": {"id": 167}, "project": {"owner": {"id": 739}, "assignee": {"id": 833}, "organization": {"id": 964}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_TRUE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 46, "privilege": "none"}, "organization": {"id": 146, "owner": {"id": 202}, "user": {"role": null}}}, "resource": {"id": 344, "owner": {"id": 473}, "assignee": {"id": 573}, "organization": {"id": 146}, "project": {"owner": {"id": 767}, "assignee": {"id": 851}, "organization": {"id": 954}}}} } -test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { - not allow with input as {"scope": "view", "auth": {"user": {"id": 26, "privilege": "none"}, "organization": {"id": 101, "owner": {"id": 262}, "user": {"role": null}}}, "resource": {"id": 380, "owner": {"id": 434}, "assignee": {"id": 529}, "organization": {"id": 635}, "project": {"owner": {"id": 746}, "assignee": {"id": 840}, "organization": {"id": 928}}}} +test_scope_UPDATE_ASSIGNEE_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NONE_resource_project_same_org_FALSE { + not allow with input as {"scope": "update:assignee", "auth": {"user": {"id": 86, "privilege": "none"}, "organization": {"id": 169, "owner": {"id": 212}, "user": {"role": null}}}, "resource": {"id": 376, "owner": {"id": 412}, "assignee": {"id": 583}, "organization": {"id": 629}, "project": {"owner": {"id": 734}, "assignee": {"id": 824}, "organization": {"id": 951}}}} } @@ -18782,4 +19882,8 @@ test_scope_VIEW_context_ORGANIZATION_ownership_NONE_privilege_NONE_membership_NO # export:backup,Task,Sandbox,None,,GET,/tasks/{id}/backup,Admin,N/A # export:backup,Task,Sandbox,"Owner, Project:owner, Assignee, Project:assignee",,GET,/tasks/{id}/backup,None,N/A # export:backup,Task,Organization,None,,GET,/tasks/{id}/backup,User,Maintainer -# export:backup,Task,Organization,"Owner, Project:owner, Assignee, Project:assignee",,GET,/tasks/{id}/backup,None,Worker \ No newline at end of file +# export:backup,Task,Organization,"Owner, Project:owner, Assignee, Project:assignee",,GET,/tasks/{id}/backup,None,Worker +# update:organization,"Task, Organization",Sandbox,"None, Assignee",,PATCH,/tasks/{id},Admin,N/A +# update:organization,"Task, Organization",Sandbox,"Owner, Project:owner, Project:assignee",,PATCH,/tasks/{id},Worker,N/A +# update:organization,"Task, Organization",Organization,"None, Assignee",,PATCH,/tasks/{id},User,Maintainer +# update:organization,"Task, Organization",Organization,"Owner, Project:owner, Project:assignee",,PATCH,/tasks/{id},Worker,Worker diff --git a/cvat/apps/iam/rules/utils.rego b/cvat/apps/iam/rules/utils.rego index 0e3d05c5bb26..234bad39817f 100644 --- a/cvat/apps/iam/rules/utils.rego +++ b/cvat/apps/iam/rules/utils.rego @@ -49,6 +49,7 @@ CREATE_IN_ISSUE := "create@issue" IMPORT_DATASET := "import:dataset" IMPORT_BACKUP := "import:backup" EXPORT_BACKUP := "export:backup" +UPDATE_ORG := "update:organization" get_priority(privilege) = priority { diff --git a/site/content/en/docs/contributing/iam-new-permissions.md b/site/content/en/docs/contributing/iam-new-permissions.md new file mode 100644 index 000000000000..71db4df31d8a --- /dev/null +++ b/site/content/en/docs/contributing/iam-new-permissions.md @@ -0,0 +1,71 @@ + + +--- +title: 'Adding new permissions to IAM' +linkTitle: 'Adding new permissions to IAM' +weight: 100 +description: 'Extending Identity and Access Management with new rules' +--- + +Let us look at an example scenario: + +1. Go to Django IAM app and open projects.csv. It contains different rules for + projects. CSV file is used to generate OPA tests and provide a human + readable descriptions of permissions on the server. +1. Add corresponding lines with new permissions or change existing one. For + example, you can have new scopes, change existing permissions. + + ```text + update:organization,"Project, Organization",Sandbox,"None, Assignee",,PATCH,/projects/{id},Admin,N/A + update:organization,"Project, Organization",Sandbox,Owner,,PATCH,/projects/{id},Worker,N/A + update:organization,"Project, Organization",Organization,"None, Assignee",,PATCH,/projects/{id},User,Maintainer + update:organization,"Project, Organization",Organization,Owner,,PATCH,/projects/{id},Worker,Worker + ``` + +1. Generate OPA tests for new rules. At the end of each *.gen.rego file you + can find a script which was used to generate the file. Copy it in a + separate python file and run in iam/rules directory. If you run `opa test .` + command it should show you a set of failed tests. + + ```bash + opa test -r projects . + ``` + +
+ + ```text + data.projects.test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE: FAIL (124.672µs) + data.projects.test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE: FAIL (120.834µs) + data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE: FAIL (137.214µs) + data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE: FAIL (121.276µs) + data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE: FAIL (120.866µs) + data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE: FAIL (121.319µs) + data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_TRUE: FAIL (121.206µs) + data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE: FAIL (121.113µs) + data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE: FAIL (121.275µs) + data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_TRUE: FAIL (144.481µs) + data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE: FAIL (120.804µs) + data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE: FAIL (118.605µs) + data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_TRUE: FAIL (132.176µs) + data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE: FAIL (118.882µs) + data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE: FAIL (126.174µs) + data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE: FAIL (119.258µs) + data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_TRUE: FAIL (124.428µs) + data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE: FAIL (127.936µs) + -------------------------------------------------------------------------------- + PASS: 2952/2970 + FAIL: 18/2970 + ``` + +
+ +1. Update corresponding rego rules to fix these issues. Look at other rules in + in the rego file to think how the new rule corresponds to existing rules. +1. Now it is time to update `iam/permissions.py`. + + + From 84a2663310005c7bae082a84029061916cc6dbf6 Mon Sep 17 00:00:00 2001 From: Nikita Manovich Date: Fri, 28 Jan 2022 17:58:01 +0300 Subject: [PATCH 2/6] Refactoring is in progress --- cvat/apps/engine/views.py | 14 +++--- cvat/apps/iam/permissions.py | 76 ++++++++++++++------------------ cvat/apps/organizations/views.py | 6 +-- 3 files changed, 42 insertions(+), 54 deletions(-) diff --git a/cvat/apps/engine/views.py b/cvat/apps/engine/views.py index 50cf67cb4b0b..cc19cc9a682a 100644 --- a/cvat/apps/engine/views.py +++ b/cvat/apps/engine/views.py @@ -259,7 +259,7 @@ def get_serializer_class(self): def get_queryset(self): queryset = super().get_queryset() if self.action == 'list': - perm = ProjectPermission('list', self.request, self) + perm = ProjectPermission.create_scope_list(self.request) queryset = perm.filter(queryset) return queryset @@ -564,7 +564,7 @@ class TaskViewSet(UploadMixin, viewsets.ModelViewSet): def get_queryset(self): queryset = super().get_queryset() if self.action == 'list': - perm = TaskPermission('list', self.request, self) + perm = TaskPermission.create_scope_list(self.request) queryset = perm.filter(queryset) return queryset @@ -891,7 +891,7 @@ class JobViewSet(viewsets.GenericViewSet, mixins.ListModelMixin, def get_queryset(self): queryset = super().get_queryset() if self.action == 'list': - perm = JobPermission.create_list(self.request) + perm = JobPermission.create_scope_list(self.request) queryset = perm.filter(queryset) return queryset @@ -996,7 +996,7 @@ class IssueViewSet(viewsets.ModelViewSet): def get_queryset(self): queryset = super().get_queryset() if self.action == 'list': - perm = IssuePermission.create_list(self.request) + perm = IssuePermission.create_scope_list(self.request) queryset = perm.filter(queryset) return queryset @@ -1031,7 +1031,7 @@ class CommentViewSet(viewsets.ModelViewSet): def get_queryset(self): queryset = super().get_queryset() if self.action == 'list': - perm = CommentPermission.create_list(self.request) + perm = CommentPermission.create_scope_list(self.request) queryset = perm.filter(queryset) return queryset @@ -1073,7 +1073,7 @@ class UserViewSet(viewsets.GenericViewSet, mixins.ListModelMixin, def get_queryset(self): queryset = super().get_queryset() if self.action == 'list': - perm = UserPermission(self.request, self) + perm = UserPermission.create_scope_list(self.request) queryset = perm.filter(queryset) return queryset @@ -1173,7 +1173,7 @@ def get_serializer_class(self): def get_queryset(self): queryset = super().get_queryset() if self.action == 'list': - perm = CloudStoragePermission(self.request, self) + perm = CloudStoragePermission.create_scope_list(self.request) queryset = perm.filter(queryset) provider_type = self.request.query_params.get('provider_type', None) diff --git a/cvat/apps/iam/permissions.py b/cvat/apps/iam/permissions.py index fcd7d24e184f..b4755cbaf810 100644 --- a/cvat/apps/iam/permissions.py +++ b/cvat/apps/iam/permissions.py @@ -23,6 +23,10 @@ def create_base_perm(cls, request, view, scope, obj=None, **kwargs): obj=obj, **cls.unpack_context(request), **kwargs) + @classmethod + def create_scope_list(cls, request): + return cls(**cls.unpack_context(request), scope='list') + @staticmethod def unpack_context(request): privilege = request.iam_context['privilege'] @@ -561,8 +565,11 @@ class TaskPermission(OpenPolicyAgentPermission): def create(cls, request, view, obj): permissions = [] if view.basename == 'task': + project_id = request.data.get('project_id') or request.data.get('project') + assignee_id = request.data.get('assignee_id') or request.data.get('assignee') for scope in cls.get_scopes(request, view, obj): - self = cls.create_base_perm(request, view, scope, obj) + self = cls.create_base_perm(request, view, scope, obj, + project_id=project_id, assignee_id=assignee_id) permissions.append(self) if view.action == 'jobs': @@ -574,12 +581,10 @@ def create(cls, request, view, obj): perm = UserPermission.create_scope_view(request, owner) permissions.append(perm) - assignee = request.data.get('assignee_id') or request.data.get('assignee') - if assignee: - perm = UserPermission.create_scope_view(request, assignee) + if assignee_id: + perm = UserPermission.create_scope_view(request, assignee_id) permissions.append(perm) - project_id = request.data.get('project_id') or request.data.get('project') if project_id: perm = ProjectPermission.create_scope_view(request, project_id) permissions.append(perm) @@ -589,17 +594,23 @@ def create(cls, request, view, obj): perm = TaskPermission.create_scope_create(request, org_id) # We don't create a project, just move it. Thus need to decrease # the number of resources. - perm.payload['input']['resource']['user']['num_resources'] -= 1 + if obj != None: + perm.payload['input']['resource']['user']['num_resources'] -= 1 + if obj.project != None: + ValidationError('Cannot change the organization for ' + 'a task inside a project') permissions.append(perm) return permissions def __init__(self, **kwargs): super().__init__(**kwargs) + self.project_id = kwargs.get('project_id') + self.assignee_id = kwargs.get('assignee_id') self.url = settings.IAM_OPA_DATA_URL + '/tasks/allow' - @classmethod - def get_scopes(cls, request, view, obj): + @staticmethod + def get_scopes(request, view, obj): scope = { ('list', 'GET'): 'list', ('create', 'POST'): 'create', @@ -663,22 +674,15 @@ def get_scopes(cls, request, view, obj): return scopes - - @classmethod - def create_scope_list(cls, request): - view = namedtuple('View', ['action'])(action='list') - return cls('list', request, view) - @classmethod def create_scope_view_data(cls, request, task_id): try: obj = Task.objects.get(id=task_id) except Task.DoesNotExist as ex: raise ValidationError(str(ex)) - view = namedtuple('View', ['action'])(action='data') - return cls('view:data', request, view, obj) + return cls(**cls.unpack_context(request), obj=obj, scope='view:data') - def get_resource(self): # FIXME: self.requesT + def get_resource(self): data = None if self.obj: data = { @@ -696,25 +700,22 @@ def get_resource(self): # FIXME: self.requesT }, } if self.obj.project else None } - elif self.view.action in ['create', 'import_backup']: - organization = self.request.iam_context['organization'] - project_id = self.request.data.get('project_id') or self.request.data.get('project') + elif self.scope in ['create', 'create@project', 'import:backup']: project = None - if project_id: + if self.project_id: try: - project = Project.objects.get(id=project_id) + project = Project.objects.get(id=self.project_id) except Project.DoesNotExist as ex: raise ValidationError(str(ex)) data = { "id": None, - "owner": { "id": self.request.user.id }, + "owner": { "id": self.user_id }, "assignee": { - "id": self.request.data.get('assignee_id') or - self.request.data.get('assignee') + "id": self.assignee_id }, 'organization': { - "id": organization.id if organization else None + "id": self.org_id }, "project": { "owner": { "id": getattr(project.owner, 'id', None) }, @@ -725,7 +726,7 @@ def get_resource(self): # FIXME: self.requesT } if project else None, "user": { "num_resources": Project.objects.filter( - owner_id=self.request.user.id).count() + owner_id=self.user_id).count() } } @@ -744,9 +745,9 @@ def create(cls, request, view, obj): perm = IssuePermission.create_scope_list(request) permissions.append(perm) - assignee = request.data.get('assignee') - if assignee: - perm = UserPermission.create_scope_view(request, assignee) + assignee_id = request.data.get('assignee') + if assignee_id: + perm = UserPermission.create_scope_view(request, assignee_id) permissions.append(perm) return permissions @@ -755,7 +756,7 @@ def __init__(self, **kwargs): super().__init__(**kwargs) self.url = settings.IAM_OPA_DATA_URL + '/jobs/allow' - @classmethod + @staticmethod def get_scopes(cls, request, view, obj): scope = { ('list', 'GET'): 'list', # TODO: need to add the method @@ -803,11 +804,6 @@ def get_scopes(cls, request, view, obj): return scopes - @classmethod - def create_scope_list(cls, request): - view = namedtuple('View', ['action'])(action='list') - return cls('list', request, view) - def get_resource(self): data = None if self.obj: @@ -851,10 +847,6 @@ def __init__(self, **kwargs): self.issue_id = kwargs.get('issue_id') self.url = settings.IAM_OPA_DATA_URL + '/comments/allow' - @classmethod - def create_scope_list(cls, request): - return cls(**cls.unpack_context(request), scope='list') - @staticmethod def get_scopes(request, view, obj): return [{ @@ -933,10 +925,6 @@ def create(cls, request, view, obj): return permissions - @classmethod - def create_scope_list(cls, request): - return cls(**cls.unpack_context(request), scope='list') - def __init__(self, **kwargs): super().__init__(**kwargs) self.job_id = kwargs.get('job_id') diff --git a/cvat/apps/organizations/views.py b/cvat/apps/organizations/views.py index ebd12053dced..2e7c96f7c3e8 100644 --- a/cvat/apps/organizations/views.py +++ b/cvat/apps/organizations/views.py @@ -25,7 +25,7 @@ class OrganizationViewSet(viewsets.ModelViewSet): def get_queryset(self): queryset = super().get_queryset() - permission = OrganizationPermission(self.request, self) + permission = OrganizationPermission.create_scope_list(self.request) return permission.filter(queryset) def get_serializer_class(self): @@ -63,7 +63,7 @@ def get_serializer_class(self): def get_queryset(self): queryset = super().get_queryset() - permission = MembershipPermission(self.request, self) + permission = MembershipPermission.create_scope_list(self.request) return permission.filter(queryset) class InvitationViewSet(viewsets.ModelViewSet): @@ -80,7 +80,7 @@ def get_serializer_class(self): def get_queryset(self): queryset = super().get_queryset() - permission = InvitationPermission(self.request, self) + permission = InvitationPermission.create_scope_list(self.request) return permission.filter(queryset) def perform_create(self, serializer): From c9fd519b659c7f5bb1a83156118488094b359c84 Mon Sep 17 00:00:00 2001 From: Nikita Manovich Date: Fri, 28 Jan 2022 19:26:46 +0300 Subject: [PATCH 3/6] Fix typos --- cvat/apps/iam/permissions.py | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/cvat/apps/iam/permissions.py b/cvat/apps/iam/permissions.py index b4755cbaf810..7e696f102e66 100644 --- a/cvat/apps/iam/permissions.py +++ b/cvat/apps/iam/permissions.py @@ -54,7 +54,6 @@ def __init__(self, **kwargs): self.payload = { 'input': { 'scope': self.scope, - 'resource': self.get_resource(), 'auth': { 'user': { 'id': self.user_id, @@ -73,6 +72,8 @@ def __init__(self, **kwargs): } } + self.payload['input']['resource'] = self.get_resource() + @abstractmethod def get_resource(self): return None @@ -84,7 +85,7 @@ def __bool__(self): def filter(self, queryset): url = self.url.replace('/allow', '/filter') r = requests.post(url, json=self.payload) - qobjects = [] + q_objects = [] ops_dict = { '|': operator.or_, '&': operator.and_, @@ -92,25 +93,25 @@ def filter(self, queryset): } for item in r.json()['result']: if isinstance(item, str): - val1 = qobjects.pop() + val1 = q_objects.pop() if item == '~': - qobjects.append(ops_dict[item](val1)) + q_objects.append(ops_dict[item](val1)) else: - val2 = qobjects.pop() - qobjects.append(ops_dict[item](val1, val2)) + val2 = q_objects.pop() + q_objects.append(ops_dict[item](val1, val2)) else: - qobjects.append(Q(**item)) + q_objects.append(Q(**item)) - if qobjects: - assert len(qobjects) == 1 + if q_objects: + assert len(q_objects) == 1 else: - qobjects.append(Q()) + q_objects.append(Q()) # By default, a QuerySet will not eliminate duplicate rows. If your # query spans multiple tables (e.g. members__user_id, owner_id), it’s # possible to get duplicate results when a QuerySet is evaluated. # That’s when you’d use distinct(). - return queryset.filter(qobjects[0]).distinct() + return queryset.filter(q_objects[0]).distinct() class OrganizationPermission(OpenPolicyAgentPermission): @classmethod @@ -364,7 +365,7 @@ def get_scopes(request, view, obj): ('request', 'list'): 'call:offline', ('request', 'retrieve'): 'call:offline', ('request', 'destroy'): 'call:offline', - }.get((view.name, view.action), None)] + }.get((view.basename, view.action), None)] def get_resource(self): return None @@ -757,7 +758,7 @@ def __init__(self, **kwargs): self.url = settings.IAM_OPA_DATA_URL + '/jobs/allow' @staticmethod - def get_scopes(cls, request, view, obj): + def get_scopes(request, view, obj): scope = { ('list', 'GET'): 'list', # TODO: need to add the method ('retrieve', 'GET'): 'view', From 866af1ed2759bbceb1744bdb000d999fae2b91e6 Mon Sep 17 00:00:00 2001 From: Nikita Manovich Date: Fri, 11 Feb 2022 15:43:38 +0300 Subject: [PATCH 4/6] Refactored LogViewerPermision --- cvat/apps/iam/permissions.py | 22 ++++++++++------------ cvat/settings/base.py | 6 ------ 2 files changed, 10 insertions(+), 18 deletions(-) diff --git a/cvat/apps/iam/permissions.py b/cvat/apps/iam/permissions.py index b05d58f34d3c..217a64845bda 100644 --- a/cvat/apps/iam/permissions.py +++ b/cvat/apps/iam/permissions.py @@ -288,25 +288,23 @@ class LogViewerPermission(OpenPolicyAgentPermission): def create(cls, request, view, obj): permissions = [] if view.basename == 'analytics': - self = cls(request, view, obj) - permissions.append(self) + for scope in cls.get_scopes(request, view, obj): + self = cls.create_base_perm(request, view, scope, obj) + permissions.append(self) return permissions - def __init__(self, request, view, obj): - super().__init__(request, view, obj) + def __init__(self, **kwargs): + super().__init__(**kwargs) self.url = settings.IAM_OPA_DATA_URL + '/analytics/allow' - self.payload['input']['scope'] = self.scope - self.payload['input']['resource'] = self.resource - @property - def scope(self): - return { + @staticmethod + def get_scopes(request, view, obj): + return [{ 'list': 'view', - }.get(self.view.action, None) + }.get(view.action, None)] - @property - def resource(self): + def get_resource(self): return { 'visibility': 'public' if settings.RESTRICTIONS['analytics_visibility'] else 'private', } diff --git a/cvat/settings/base.py b/cvat/settings/base.py index c8e7500c527a..ddea8321d03f 100644 --- a/cvat/settings/base.py +++ b/cvat/settings/base.py @@ -442,12 +442,6 @@ def add_ssh_keys(): RESTRICTIONS = { 'user_agreements': [], - # this setting limits the number of tasks for the user - 'task_limit': None, - - # this setting limits the number of projects for the user - 'project_limit': None, - # this setting reduces task visibility to owner and assignee only 'reduce_task_visibility': False, From 2df8a0378094a0e34f096f848b3f9799c590e9d0 Mon Sep 17 00:00:00 2001 From: Nikita Manovich Date: Fri, 11 Feb 2022 16:19:20 +0300 Subject: [PATCH 5/6] Fix problems with permissions initialization --- cvat/apps/iam/permissions.py | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/cvat/apps/iam/permissions.py b/cvat/apps/iam/permissions.py index 217a64845bda..64ada1a2098d 100644 --- a/cvat/apps/iam/permissions.py +++ b/cvat/apps/iam/permissions.py @@ -43,13 +43,9 @@ def unpack_context(request): } def __init__(self, **kwargs): - self.scope = kwargs['scope'] - self.user_id = kwargs['user_id'] - self.group_name = kwargs['group_name'] - self.org_id = kwargs['org_id'] - self.org_owner_id = kwargs['org_owner_id'] - self.org_role = kwargs['org_role'] - self.obj = kwargs.get('obj') + self.obj = None + for name, val in kwargs.items(): + setattr(self, name, val) self.payload = { 'input': { @@ -484,7 +480,6 @@ def create(cls, request, view, obj): def __init__(self, **kwargs): super().__init__(**kwargs) - self.assignee_id = kwargs.get('assignee_id') self.url = settings.IAM_OPA_DATA_URL + '/projects/allow' @staticmethod @@ -632,8 +627,6 @@ def create(cls, request, view, obj): def __init__(self, **kwargs): super().__init__(**kwargs) - self.project_id = kwargs.get('project_id') - self.assignee_id = kwargs.get('assignee_id') self.url = settings.IAM_OPA_DATA_URL + '/tasks/allow' @staticmethod @@ -871,7 +864,6 @@ def create(cls, request, view, obj): def __init__(self, **kwargs): super().__init__(**kwargs) - self.issue_id = kwargs.get('issue_id') self.url = settings.IAM_OPA_DATA_URL + '/comments/allow' @staticmethod @@ -954,8 +946,6 @@ def create(cls, request, view, obj): def __init__(self, **kwargs): super().__init__(**kwargs) - self.job_id = kwargs.get('job_id') - self.assignee_id = kwargs.get('assignee_id') self.url = settings.IAM_OPA_DATA_URL + '/issues/allow' @staticmethod From bbd6fff1ce3eea88278a8b941d2e64350f4a9a72 Mon Sep 17 00:00:00 2001 From: Nikita Manovich Date: Fri, 25 Feb 2022 23:02:31 +0300 Subject: [PATCH 6/6] Removed documentation for now. --- .../docs/contributing/iam-new-permissions.md | 71 ------------------- 1 file changed, 71 deletions(-) delete mode 100644 site/content/en/docs/contributing/iam-new-permissions.md diff --git a/site/content/en/docs/contributing/iam-new-permissions.md b/site/content/en/docs/contributing/iam-new-permissions.md deleted file mode 100644 index 71db4df31d8a..000000000000 --- a/site/content/en/docs/contributing/iam-new-permissions.md +++ /dev/null @@ -1,71 +0,0 @@ - - ---- -title: 'Adding new permissions to IAM' -linkTitle: 'Adding new permissions to IAM' -weight: 100 -description: 'Extending Identity and Access Management with new rules' ---- - -Let us look at an example scenario: - -1. Go to Django IAM app and open projects.csv. It contains different rules for - projects. CSV file is used to generate OPA tests and provide a human - readable descriptions of permissions on the server. -1. Add corresponding lines with new permissions or change existing one. For - example, you can have new scopes, change existing permissions. - - ```text - update:organization,"Project, Organization",Sandbox,"None, Assignee",,PATCH,/projects/{id},Admin,N/A - update:organization,"Project, Organization",Sandbox,Owner,,PATCH,/projects/{id},Worker,N/A - update:organization,"Project, Organization",Organization,"None, Assignee",,PATCH,/projects/{id},User,Maintainer - update:organization,"Project, Organization",Organization,Owner,,PATCH,/projects/{id},Worker,Worker - ``` - -1. Generate OPA tests for new rules. At the end of each *.gen.rego file you - can find a script which was used to generate the file. Copy it in a - separate python file and run in iam/rules directory. If you run `opa test .` - command it should show you a set of failed tests. - - ```bash - opa test -r projects . - ``` - -
- - ```text - data.projects.test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_OWNER_privilege_BUSINESS_membership_NONE_resource_same_org_TRUE: FAIL (124.672µs) - data.projects.test_scope_UPDATE_ORGANIZATION_context_SANDBOX_ownership_OWNER_privilege_USER_membership_NONE_resource_same_org_TRUE: FAIL (120.834µs) - data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE: FAIL (137.214µs) - data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE: FAIL (121.276µs) - data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_SUPERVISOR_resource_same_org_TRUE: FAIL (120.866µs) - data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_BUSINESS_membership_WORKER_resource_same_org_TRUE: FAIL (121.319µs) - data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_OWNER_resource_same_org_TRUE: FAIL (121.206µs) - data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE: FAIL (121.113µs) - data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_SUPERVISOR_resource_same_org_TRUE: FAIL (121.275µs) - data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_OWNER_privilege_USER_membership_WORKER_resource_same_org_TRUE: FAIL (144.481µs) - data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE: FAIL (120.804µs) - data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE: FAIL (118.605µs) - data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_OWNER_resource_same_org_TRUE: FAIL (132.176µs) - data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_ASSIGNEE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE: FAIL (118.882µs) - data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_OWNER_resource_same_org_TRUE: FAIL (126.174µs) - data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_BUSINESS_membership_MAINTAINER_resource_same_org_TRUE: FAIL (119.258µs) - data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_OWNER_resource_same_org_TRUE: FAIL (124.428µs) - data.projects.test_scope_UPDATE_ORGANIZATION_context_ORGANIZATION_ownership_NONE_privilege_USER_membership_MAINTAINER_resource_same_org_TRUE: FAIL (127.936µs) - -------------------------------------------------------------------------------- - PASS: 2952/2970 - FAIL: 18/2970 - ``` - -
- -1. Update corresponding rego rules to fix these issues. Look at other rules in - in the rego file to think how the new rule corresponds to existing rules. -1. Now it is time to update `iam/permissions.py`. - - -